Fix dependancies and precompile ruby module
This commit is contained in:
34
Makefile
34
Makefile
@@ -9,26 +9,29 @@ TARGET_RELEASE := $(BIN_DIR)/crib
|
|||||||
PCH_DEBUG := $(OBJ_DIR)/debug/pch.h.gch
|
PCH_DEBUG := $(OBJ_DIR)/debug/pch.h.gch
|
||||||
PCH_RELEASE := $(OBJ_DIR)/release/pch.h.gch
|
PCH_RELEASE := $(OBJ_DIR)/release/pch.h.gch
|
||||||
|
|
||||||
|
GENERATED_HEADER := $(INCLUDE_DIR)/scripting/ruby_compiled.h
|
||||||
|
|
||||||
CCACHE := ccache
|
CCACHE := ccache
|
||||||
CXX := $(CCACHE) clang++
|
CXX := $(CCACHE) clang++
|
||||||
|
CC := $(CCACHE) clang
|
||||||
|
|
||||||
CFLAGS_DEBUG :=\
|
CFLAGS_DEBUG :=\
|
||||||
-std=c++23 -Wall -Wextra -Wno-c23-extensions \
|
-std=c++20 -Wall -Wextra \
|
||||||
-O0 -fno-inline -gsplit-dwarf\
|
-O0 -fno-inline -gsplit-dwarf\
|
||||||
-g -fno-omit-frame-pointer\
|
-g -fno-omit-frame-pointer\
|
||||||
-Wno-unused-command-line-argument \
|
-Wno-unused-command-line-argument \
|
||||||
-I./include -I./libs
|
-I./include -I./libs
|
||||||
|
|
||||||
CFLAGS_RELEASE :=\
|
CFLAGS_RELEASE :=\
|
||||||
-std=c++23 -O3 -march=native \
|
-static \
|
||||||
|
-std=c++20 -O3 -march=native \
|
||||||
-fno-rtti -fstrict-aliasing \
|
-fno-rtti -fstrict-aliasing \
|
||||||
-ffast-math -flto=thin \
|
-ffast-math -flto=thin \
|
||||||
-fvisibility=hidden -fuse-ld=lld \
|
-fvisibility=hidden \
|
||||||
-fomit-frame-pointer -DNDEBUG -s \
|
-fomit-frame-pointer -DNDEBUG -s \
|
||||||
-mllvm -vectorize-loops \
|
-mllvm -vectorize-loops \
|
||||||
-fno-unwind-tables -fno-asynchronous-unwind-tables\
|
-fno-unwind-tables -fno-asynchronous-unwind-tables\
|
||||||
-Wno-unused-command-line-argument \
|
-Wno-unused-command-line-argument \
|
||||||
-Wno-c23-extensions \
|
|
||||||
-I./include -I./libs
|
-I./include -I./libs
|
||||||
|
|
||||||
PCH_CFLAGS_DEBUG := $(CFLAGS_DEBUG) -x c++-header
|
PCH_CFLAGS_DEBUG := $(CFLAGS_DEBUG) -x c++-header
|
||||||
@@ -39,9 +42,13 @@ UNICODE_SRC := $(wildcard libs/unicode_width/*.c)
|
|||||||
UNICODE_OBJ_DEBUG := $(patsubst libs/unicode_width/%.c,$(OBJ_DIR)/debug/unicode_width/%.o,$(UNICODE_SRC))
|
UNICODE_OBJ_DEBUG := $(patsubst libs/unicode_width/%.c,$(OBJ_DIR)/debug/unicode_width/%.o,$(UNICODE_SRC))
|
||||||
UNICODE_OBJ_RELEASE := $(patsubst libs/unicode_width/%.c,$(OBJ_DIR)/release/unicode_width/%.o,$(UNICODE_SRC))
|
UNICODE_OBJ_RELEASE := $(patsubst libs/unicode_width/%.c,$(OBJ_DIR)/release/unicode_width/%.o,$(UNICODE_SRC))
|
||||||
|
|
||||||
LIBS := \
|
LIBS_RELEASE := \
|
||||||
libs/libgrapheme/libgrapheme.a \
|
libs/libgrapheme/libgrapheme.a \
|
||||||
-Wl,-Bstatic -lpcre2-8 -lmruby -Wl,-Bdynamic -lmagic
|
-Wl,-Bstatic,--gc-sections -lpcre2-8 -lmruby
|
||||||
|
|
||||||
|
LIBS_DEBUG := \
|
||||||
|
libs/libgrapheme/libgrapheme.a \
|
||||||
|
-Wl,-Bdynamic -lpcre2-8 -lmruby
|
||||||
|
|
||||||
SRC := $(wildcard $(SRC_DIR)/**/*.cc) $(wildcard $(SRC_DIR)/*.cc)
|
SRC := $(wildcard $(SRC_DIR)/**/*.cc) $(wildcard $(SRC_DIR)/*.cc)
|
||||||
OBJ_DEBUG := $(patsubst $(SRC_DIR)/%.cc,$(OBJ_DIR)/debug/%.o,$(SRC))
|
OBJ_DEBUG := $(patsubst $(SRC_DIR)/%.cc,$(OBJ_DIR)/debug/%.o,$(SRC))
|
||||||
@@ -58,6 +65,9 @@ test: $(TARGET_DEBUG)
|
|||||||
|
|
||||||
release: $(TARGET_RELEASE)
|
release: $(TARGET_RELEASE)
|
||||||
|
|
||||||
|
$(GENERATED_HEADER): $(INCLUDE_DIR)/syntax/tokens.def $(INCLUDE_DIR)/scripting/libcrib.rb src/ruby_compile.sh
|
||||||
|
src/ruby_compile.sh
|
||||||
|
|
||||||
$(PCH_DEBUG): $(INCLUDE_DIR)/pch.h
|
$(PCH_DEBUG): $(INCLUDE_DIR)/pch.h
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(CXX) $(PCH_CFLAGS_DEBUG) -o $@ $<
|
$(CXX) $(PCH_CFLAGS_DEBUG) -o $@ $<
|
||||||
@@ -68,27 +78,27 @@ $(PCH_RELEASE): $(INCLUDE_DIR)/pch.h
|
|||||||
|
|
||||||
$(TARGET_DEBUG): $(PCH_DEBUG) $(OBJ_DEBUG) $(UNICODE_OBJ_DEBUG)
|
$(TARGET_DEBUG): $(PCH_DEBUG) $(OBJ_DEBUG) $(UNICODE_OBJ_DEBUG)
|
||||||
mkdir -p $(BIN_DIR)
|
mkdir -p $(BIN_DIR)
|
||||||
$(CXX) $(CFLAGS_DEBUG) -o $@ $(OBJ_DEBUG) $(UNICODE_OBJ_DEBUG) $(LIBS)
|
$(CXX) $(CFLAGS_DEBUG) -o $@ $(OBJ_DEBUG) $(UNICODE_OBJ_DEBUG) $(LIBS_DEBUG)
|
||||||
|
|
||||||
$(TARGET_RELEASE): $(PCH_RELEASE) $(OBJ_RELEASE) $(UNICODE_OBJ_RELEASE)
|
$(TARGET_RELEASE): $(PCH_RELEASE) $(OBJ_RELEASE) $(UNICODE_OBJ_RELEASE)
|
||||||
mkdir -p $(BIN_DIR)
|
mkdir -p $(BIN_DIR)
|
||||||
$(CXX) $(CFLAGS_RELEASE) -o $@ $(OBJ_RELEASE) $(UNICODE_OBJ_RELEASE) $(LIBS)
|
$(CXX) $(CFLAGS_RELEASE) -o $@ $(OBJ_RELEASE) $(UNICODE_OBJ_RELEASE) $(LIBS_RELEASE)
|
||||||
|
|
||||||
$(OBJ_DIR)/debug/%.o: $(SRC_DIR)/%.cc $(PCH_DEBUG)
|
$(OBJ_DIR)/debug/%.o: $(SRC_DIR)/%.cc $(PCH_DEBUG) $(GENERATED_HEADER)
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(CXX) $(CFLAGS_DEBUG) -include $(INCLUDE_DIR)/pch.h -MMD -MP -c $< -o $@
|
$(CXX) $(CFLAGS_DEBUG) -include $(INCLUDE_DIR)/pch.h -MMD -MP -c $< -o $@
|
||||||
|
|
||||||
$(OBJ_DIR)/release/%.o: $(SRC_DIR)/%.cc $(PCH_RELEASE)
|
$(OBJ_DIR)/release/%.o: $(SRC_DIR)/%.cc $(PCH_RELEASE) $(GENERATED_HEADER)
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(CXX) $(CFLAGS_RELEASE) -include $(INCLUDE_DIR)/pch.h -MMD -MP -c $< -o $@
|
$(CXX) $(CFLAGS_RELEASE) -include $(INCLUDE_DIR)/pch.h -MMD -MP -c $< -o $@
|
||||||
|
|
||||||
$(OBJ_DIR)/debug/unicode_width/%.o: libs/unicode_width/%.c
|
$(OBJ_DIR)/debug/unicode_width/%.o: libs/unicode_width/%.c
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(CXX) $(CFLAGS_DEBUG) -MMD -MP -c $< -o $@
|
$(CC) -MMD -MP -c $< -o $@
|
||||||
|
|
||||||
$(OBJ_DIR)/release/unicode_width/%.o: libs/unicode_width/%.c
|
$(OBJ_DIR)/release/unicode_width/%.o: libs/unicode_width/%.c
|
||||||
mkdir -p $(dir $@)
|
mkdir -p $(dir $@)
|
||||||
$(CXX) $(CFLAGS_RELEASE) -MMD -MP -c $< -o $@
|
$(CC) -MMD -MP -c $< -o $@
|
||||||
|
|
||||||
DEP_DEBUG += $(UNICODE_OBJ_DEBUG:.o=.d)
|
DEP_DEBUG += $(UNICODE_OBJ_DEBUG:.o=.d)
|
||||||
DEP_RELEASE += $(UNICODE_OBJ_RELEASE:.o=.d)
|
DEP_RELEASE += $(UNICODE_OBJ_RELEASE:.o=.d)
|
||||||
|
|||||||
@@ -52,10 +52,10 @@ Make sure you have the following dependencies installed (apart from the standard
|
|||||||
#include <pcre2.h>
|
#include <pcre2.h>
|
||||||
```
|
```
|
||||||
|
|
||||||
* **libmagic**
|
* **[mruby](https://github.com/mruby/mruby)**
|
||||||
Install it so that you can include it in your code (most *nix systems have it installed):
|
Install it via your package manager. Once installed, the header should be available as:
|
||||||
```cpp
|
```cpp
|
||||||
#include <magic.h>
|
#include <mruby.h>
|
||||||
```
|
```
|
||||||
|
|
||||||
It also uses `xclip` at runtime for copying/pasting *(TODO: make it os portable)*.
|
It also uses `xclip` at runtime for copying/pasting *(TODO: make it os portable)*.
|
||||||
@@ -145,7 +145,7 @@ TODO: add keybind information on how to set in `config/main.rb`
|
|||||||
- current line highlighting
|
- current line highlighting
|
||||||
- all instances of current word under cursor highlighting
|
- all instances of current word under cursor highlighting
|
||||||
|
|
||||||
#### syntax highlighting and filetype detection (using extention or libmagic) for:
|
#### syntax highlighting and filetype detection for:
|
||||||
- ruby
|
- ruby
|
||||||
<!-- TODO: -->
|
<!-- TODO: -->
|
||||||
<!-- - bash -->
|
<!-- - bash -->
|
||||||
|
|||||||
1
TODO.md
1
TODO.md
@@ -4,7 +4,6 @@ Copyright 2025 Syed Daanish
|
|||||||
|
|
||||||
##### BTW Check each lsp with each of the features implemented
|
##### BTW Check each lsp with each of the features implemented
|
||||||
|
|
||||||
* Static link pcre2-8 and libmagic and add precompiled libmagic magic database for better file detection
|
|
||||||
* [ ] **LSP Bug:** Check why `fish-lsp` is behaving so off with completions filtering.
|
* [ ] **LSP Bug:** Check why `fish-lsp` is behaving so off with completions filtering.
|
||||||
* [ ] **Critical Crash:** Fix bug where closing immediately while LSP is still loading hangs and then segfaults (especially on slow ones like fish-lsp where quick edits and exit can hang).
|
* [ ] **Critical Crash:** Fix bug where closing immediately while LSP is still loading hangs and then segfaults (especially on slow ones like fish-lsp where quick edits and exit can hang).
|
||||||
* [ ] **Line move:** fix the move line functions to work without the calculations from folds as folds are removed.
|
* [ ] **Line move:** fix the move line functions to work without the calculations from folds as folds are removed.
|
||||||
|
|||||||
@@ -2,6 +2,8 @@
|
|||||||
# This can also be used to do speacail configs for different projects.
|
# This can also be used to do speacail configs for different projects.
|
||||||
# its ruby guys script whatever you want.
|
# its ruby guys script whatever you want.
|
||||||
|
|
||||||
|
# puts "Loading main config..."
|
||||||
|
|
||||||
C.startup do
|
C.startup do
|
||||||
puts "Starting crib..."
|
puts "Starting crib..."
|
||||||
end
|
end
|
||||||
@@ -47,30 +49,30 @@ C.theme = {
|
|||||||
:brace5 => { fg: 0xFF0F0F }
|
:brace5 => { fg: 0xFF0F0F }
|
||||||
}
|
}
|
||||||
|
|
||||||
# # TODO: to be done once a proper api for binding and window drawing is made
|
# TODO: to be done once a proper api for binding and window drawing is made
|
||||||
# # The binds will be connected to either `editor` or windows where editor can
|
# The binds will be connected to either `editor` or windows where editor can
|
||||||
# # only use a preset set of stuff to bind while teh windows are purely custom
|
# only use a preset set of stuff to bind while teh windows are purely custom
|
||||||
# # # this part uses dsl bindings to define the bind function
|
# # this part uses dsl bindings to define the bind function
|
||||||
# # # Hopefully extend to give more context/power to bindings
|
# # Hopefully extend to give more context/power to bindings
|
||||||
# # # but try to keep simple for performance
|
# # but try to keep simple for performance
|
||||||
# # # for default keybindings
|
# # for default keybindings
|
||||||
# # C.bind [:normal, :select], :a => "insert_mode"
|
# C.bind [:normal, :select], :a => "insert_mode"
|
||||||
# # # for custom keybindings
|
# # for custom keybindings
|
||||||
# # C.bind :select, [:x, :c] do
|
# C.bind :select, [:x, :c] do
|
||||||
# # puts "cut"
|
# puts "cut"
|
||||||
# # end
|
# end
|
||||||
# # C.bind :jumper do
|
# C.bind :jumper do
|
||||||
# # set [:x, :c] do
|
# set [:x, :c] do
|
||||||
# # puts "jump to first bookmark"
|
# puts "jump to first bookmark"
|
||||||
# # end
|
# end
|
||||||
# # end
|
# end
|
||||||
# # # they can also be defined conditionally
|
# # they can also be defined conditionally
|
||||||
# # # This code is just an example and doesnt actually work
|
# # This code is just an example and doesnt actually work
|
||||||
# # if using_tmux?
|
# if using_tmux?
|
||||||
# # bind :C-p do
|
# bind :C-p do
|
||||||
# # system("tmux select-pane -U")
|
# system("tmux select-pane -U")
|
||||||
# # end
|
# end
|
||||||
# # end
|
# end
|
||||||
|
|
||||||
# This can, for example, be modified by user bindings during runtime
|
# This can, for example, be modified by user bindings during runtime
|
||||||
# TODO: dynamic registration to actually be implemented once keybinds and extentions are implemented
|
# TODO: dynamic registration to actually be implemented once keybinds and extentions are implemented
|
||||||
@@ -82,20 +84,19 @@ C.theme = {
|
|||||||
# symbol: " ",
|
# symbol: " ",
|
||||||
# extensions: ["rb"],
|
# extensions: ["rb"],
|
||||||
# filenames: ["Gemfile"],
|
# filenames: ["Gemfile"],
|
||||||
# mimetypes: ["text/x-ruby"],
|
|
||||||
# lsp: "solargraph"
|
# lsp: "solargraph"
|
||||||
# }
|
# }
|
||||||
|
|
||||||
C.line_endings = :auto_unix # or :unix or :windows or :auto_windows
|
C.line_endings = :auto_unix # or :unix or :windows or :auto_windows
|
||||||
|
|
||||||
# C.extra_highlights do |_line, _idx|
|
C.extra_highlights do |_line, _idx|
|
||||||
# # the return can be an array of
|
# the return can be an array of
|
||||||
# # [fg, bg. flags, start, end]
|
# [fg, bg. flags, start, end]
|
||||||
# # where fg and bg are integers (using 24 bit color)
|
# where fg and bg are integers (using 24 bit color)
|
||||||
# # and flags is a bitmask of bold/underline/italic etc
|
# and flags is a bitmask of bold/underline/italic etc
|
||||||
# # and start and end are integers strictly inside the line
|
# and start and end are integers strictly inside the line
|
||||||
# return []
|
return []
|
||||||
# end
|
end
|
||||||
|
|
||||||
# The highlighter will be aplied to the language as long as the langauge is defined in C.languages
|
# The highlighter will be aplied to the language as long as the langauge is defined in C.languages
|
||||||
C.highlighters[:ruby_n] = {
|
C.highlighters[:ruby_n] = {
|
||||||
|
|||||||
@@ -4,11 +4,11 @@
|
|||||||
#define PCRE2_CODE_UNIT_WIDTH 8
|
#define PCRE2_CODE_UNIT_WIDTH 8
|
||||||
#define PCRE_WORKSPACE_SIZE 512
|
#define PCRE_WORKSPACE_SIZE 512
|
||||||
|
|
||||||
#include <magic.h>
|
|
||||||
#include <mruby.h>
|
#include <mruby.h>
|
||||||
#include <mruby/array.h>
|
#include <mruby/array.h>
|
||||||
#include <mruby/compile.h>
|
#include <mruby/compile.h>
|
||||||
#include <mruby/hash.h>
|
#include <mruby/hash.h>
|
||||||
|
#include <mruby/irep.h>
|
||||||
#include <mruby/string.h>
|
#include <mruby/string.h>
|
||||||
#include <nlohmann/json.hpp>
|
#include <nlohmann/json.hpp>
|
||||||
#include <pcre2.h>
|
#include <pcre2.h>
|
||||||
|
|||||||
@@ -9,7 +9,6 @@ extern std::unordered_map<std::string, std::pair<mrb_value, mrb_value>>
|
|||||||
|
|
||||||
void ruby_start();
|
void ruby_start();
|
||||||
void ruby_shutdown();
|
void ruby_shutdown();
|
||||||
void ruby_log(std::string msg);
|
|
||||||
void load_theme();
|
void load_theme();
|
||||||
void load_languages_info();
|
void load_languages_info();
|
||||||
uint8_t read_line_endings();
|
uint8_t read_line_endings();
|
||||||
|
|||||||
@@ -36,256 +36,186 @@ module C
|
|||||||
color: 0x555555,
|
color: 0x555555,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["c"],
|
extensions: ["c"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-c"],
|
|
||||||
lsp: "clangd"
|
lsp: "clangd"
|
||||||
},
|
},
|
||||||
cpp: {
|
cpp: {
|
||||||
color: 0x00599C,
|
color: 0x00599C,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["cpp", "cc", "cxx"],
|
extensions: ["cpp", "cc", "cxx"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-cpp"],
|
|
||||||
lsp: "clangd"
|
lsp: "clangd"
|
||||||
},
|
},
|
||||||
h: {
|
h: {
|
||||||
color: 0xA8B9CC,
|
color: 0xA8B9CC,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["h", "hpp"],
|
extensions: ["h", "hpp"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-c-header"],
|
|
||||||
lsp: "clangd"
|
lsp: "clangd"
|
||||||
},
|
},
|
||||||
css: {
|
css: {
|
||||||
color: 0x36a3d9,
|
color: 0x36a3d9,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["css"],
|
extensions: ["css"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/css"],
|
|
||||||
lsp: "vscode-css-language-server"
|
lsp: "vscode-css-language-server"
|
||||||
},
|
},
|
||||||
fish: {
|
fish: {
|
||||||
color: 0x4d5a5e,
|
color: 0x4d5a5e,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["fish"],
|
extensions: ["fish"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/x-fish"],
|
|
||||||
lsp: "fish-lsp"
|
lsp: "fish-lsp"
|
||||||
},
|
},
|
||||||
go: {
|
go: {
|
||||||
color: 0x00add8,
|
color: 0x00add8,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["go"],
|
extensions: ["go"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-go"],
|
|
||||||
lsp: "gopls"
|
lsp: "gopls"
|
||||||
},
|
},
|
||||||
gomod: {
|
gomod: {
|
||||||
color: 0x00add8,
|
color: 0x00add8,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["mod"],
|
extensions: ["mod"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-go-mod"],
|
|
||||||
lsp: "gopls"
|
lsp: "gopls"
|
||||||
},
|
},
|
||||||
haskell: {
|
haskell: {
|
||||||
color: 0xa074c4,
|
color: 0xa074c4,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["hs", "lhs"],
|
extensions: ["hs", "lhs"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-haskell"],
|
|
||||||
lsp: "haskell-language-server"
|
lsp: "haskell-language-server"
|
||||||
},
|
},
|
||||||
html: {
|
html: {
|
||||||
color: 0xef8a91,
|
color: 0xef8a91,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["html", "htm"],
|
extensions: ["html", "htm"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/html"],
|
|
||||||
lsp: "emmet-language-server"
|
lsp: "emmet-language-server"
|
||||||
},
|
},
|
||||||
javascript: {
|
javascript: {
|
||||||
color: 0xf0df8a,
|
color: 0xf0df8a,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["js"],
|
extensions: ["js"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/javascript"],
|
|
||||||
lsp: "typescript-language-server"
|
lsp: "typescript-language-server"
|
||||||
},
|
},
|
||||||
typescript: {
|
typescript: {
|
||||||
color: 0x36a3d9,
|
color: 0x36a3d9,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["ts"],
|
extensions: ["ts"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/typescript"],
|
|
||||||
lsp: "typescript-language-server"
|
lsp: "typescript-language-server"
|
||||||
},
|
},
|
||||||
json: {
|
json: {
|
||||||
color: 0xcbcb41,
|
color: 0xcbcb41,
|
||||||
symbol: "{}",
|
symbol: "{}",
|
||||||
extensions: ["json"],
|
extensions: ["json"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/json"],
|
|
||||||
lsp: "vscode-json-language-server"
|
lsp: "vscode-json-language-server"
|
||||||
},
|
},
|
||||||
jsonc: {
|
jsonc: {
|
||||||
color: 0xcbcb41,
|
color: 0xcbcb41,
|
||||||
symbol: "{}",
|
symbol: "{}",
|
||||||
extensions: ["jsonc"],
|
extensions: ["jsonc"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/json"],
|
|
||||||
lsp: "vscode-json-language-server"
|
lsp: "vscode-json-language-server"
|
||||||
},
|
},
|
||||||
erb: {
|
erb: {
|
||||||
color: 0x6e1516,
|
color: 0x6e1516,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["erb"],
|
extensions: ["erb"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-erb"],
|
|
||||||
lsp: "ruby-lsp"
|
lsp: "ruby-lsp"
|
||||||
},
|
},
|
||||||
lua: {
|
lua: {
|
||||||
color: 0x36a3d9,
|
color: 0x36a3d9,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["lua"],
|
extensions: ["lua"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-lua"],
|
|
||||||
lsp: "lua-language-server"
|
lsp: "lua-language-server"
|
||||||
},
|
},
|
||||||
python: {
|
python: {
|
||||||
color: 0x95e6cb,
|
color: 0x95e6cb,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["py"],
|
extensions: ["py"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-python"],
|
|
||||||
lsp: "pyright"
|
lsp: "pyright"
|
||||||
},
|
},
|
||||||
rust: {
|
rust: {
|
||||||
color: 0xdea584,
|
color: 0xdea584,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["rs"],
|
extensions: ["rs"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-rust"],
|
|
||||||
lsp: "rust-analyzer"
|
lsp: "rust-analyzer"
|
||||||
},
|
},
|
||||||
php: {
|
php: {
|
||||||
color: 0xa074c4,
|
color: 0xa074c4,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["php"],
|
extensions: ["php"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/x-php"],
|
|
||||||
lsp: "intelephense"
|
lsp: "intelephense"
|
||||||
},
|
},
|
||||||
markdown: {
|
markdown: {
|
||||||
color: 0x36a3d9,
|
color: 0x36a3d9,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["md", "markdown"],
|
extensions: ["md", "markdown"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/markdown"],
|
|
||||||
lsp: "marksman"
|
lsp: "marksman"
|
||||||
},
|
},
|
||||||
nginx: {
|
nginx: {
|
||||||
color: 0x6d8086,
|
color: 0x6d8086,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["conf"],
|
extensions: ["conf"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/nginx"],
|
|
||||||
lsp: "nginx-language-server"
|
lsp: "nginx-language-server"
|
||||||
},
|
},
|
||||||
toml: {
|
toml: {
|
||||||
color: 0x36a3d9,
|
color: 0x36a3d9,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["toml"],
|
extensions: ["toml"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/toml"],
|
|
||||||
lsp: "taplo"
|
lsp: "taplo"
|
||||||
},
|
},
|
||||||
yaml: {
|
yaml: {
|
||||||
color: 0x6d8086,
|
color: 0x6d8086,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["yml", "yaml"],
|
extensions: ["yml", "yaml"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/yaml"],
|
|
||||||
lsp: "yaml-language-server"
|
lsp: "yaml-language-server"
|
||||||
},
|
},
|
||||||
sql: {
|
sql: {
|
||||||
color: 0xdad8d8,
|
color: 0xdad8d8,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["sql"],
|
extensions: ["sql"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-sql"],
|
|
||||||
lsp: "sqls"
|
lsp: "sqls"
|
||||||
},
|
},
|
||||||
make: {
|
make: {
|
||||||
color: 0x4e5c61,
|
color: 0x4e5c61,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["Makefile", "makefile"],
|
extensions: ["Makefile", "makefile"],
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-makefile"],
|
|
||||||
lsp: "make-language-server"
|
lsp: "make-language-server"
|
||||||
},
|
},
|
||||||
gdscript: {
|
gdscript: {
|
||||||
color: 0x6d8086,
|
color: 0x6d8086,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["gd"],
|
extensions: ["gd"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-gdscript"],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
man: {
|
man: {
|
||||||
color: 0xdad8d8,
|
color: 0xdad8d8,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["man"],
|
extensions: ["man"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["application/x-troff-man"],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
diff: {
|
diff: {
|
||||||
color: 0xDD4C35,
|
color: 0xDD4C35,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["diff", "patch"],
|
extensions: ["diff", "patch"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: ["text/x-diff"],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
gitattributes: {
|
gitattributes: {
|
||||||
color: 0xF05032,
|
color: 0xF05032,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["gitattributes"],
|
extensions: ["gitattributes"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: [],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
gitignore: {
|
gitignore: {
|
||||||
color: 0xF05032,
|
color: 0xF05032,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["gitignore"],
|
extensions: ["gitignore"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: [],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
regex: {
|
regex: {
|
||||||
color: 0x9E9E9E,
|
color: 0x9E9E9E,
|
||||||
symbol: ".*",
|
symbol: ".*",
|
||||||
extensions: ["regex"],
|
extensions: ["regex"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: [],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
ini: {
|
ini: {
|
||||||
color: 0x6d8086,
|
color: 0x6d8086,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["ini"],
|
extensions: ["ini"]
|
||||||
filenames: [],
|
|
||||||
mimetypes: [],
|
|
||||||
lsp: nil
|
|
||||||
},
|
},
|
||||||
ruby: {
|
ruby: {
|
||||||
color: 0xff8087,
|
color: 0xff8087,
|
||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["rb"],
|
extensions: ["rb"],
|
||||||
filenames: ["Gemfile"],
|
filenames: ["Gemfile"],
|
||||||
mimetypes: ["text/x-ruby"],
|
|
||||||
lsp: "solargraph"
|
lsp: "solargraph"
|
||||||
},
|
},
|
||||||
bash: {
|
bash: {
|
||||||
@@ -293,7 +223,6 @@ module C
|
|||||||
symbol: " ",
|
symbol: " ",
|
||||||
extensions: ["sh"],
|
extensions: ["sh"],
|
||||||
filenames: ["bash_profile", "bashrc"],
|
filenames: ["bash_profile", "bashrc"],
|
||||||
mimetypes: ["text/x-sh"],
|
|
||||||
lsp: "bash-language-server"
|
lsp: "bash-language-server"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -307,10 +236,8 @@ module C
|
|||||||
:interpolation => { fg: 0x7DCFFF },
|
:interpolation => { fg: 0x7DCFFF },
|
||||||
:regexp => { fg: 0xD2A6FF },
|
:regexp => { fg: 0xD2A6FF },
|
||||||
:number => { fg: 0xE6C08A },
|
:number => { fg: 0xE6C08A },
|
||||||
# rubocop:disable Lint/BooleanSymbol
|
|
||||||
:true => { fg: 0x7AE93C },
|
:true => { fg: 0x7AE93C },
|
||||||
:false => { fg: 0xEF5168 },
|
:false => { fg: 0xEF5168 },
|
||||||
# rubocop:enable Lint/BooleanSymbol
|
|
||||||
:char => { fg: 0xFFAF70 },
|
:char => { fg: 0xFFAF70 },
|
||||||
:keyword => { fg: 0xFF8F40 },
|
:keyword => { fg: 0xFF8F40 },
|
||||||
:keywordoperator => { fg: 0xF07178 },
|
:keywordoperator => { fg: 0xF07178 },
|
||||||
@@ -333,7 +260,6 @@ module C
|
|||||||
@key_handlers = {}
|
@key_handlers = {}
|
||||||
@key_binds = {}
|
@key_binds = {}
|
||||||
@highlighters = {}
|
@highlighters = {}
|
||||||
@log_queue = []
|
|
||||||
@b_startup = nil
|
@b_startup = nil
|
||||||
@b_shutdown = nil
|
@b_shutdown = nil
|
||||||
|
|
||||||
@@ -350,17 +276,6 @@ module C
|
|||||||
@b_shutdown = block
|
@b_shutdown = block
|
||||||
end
|
end
|
||||||
|
|
||||||
def queue_log(msg)
|
|
||||||
@log_queue << msg
|
|
||||||
end
|
|
||||||
|
|
||||||
def log_all
|
|
||||||
@log_queue.each do |msg|
|
|
||||||
puts msg
|
|
||||||
end
|
|
||||||
@log_queue = []
|
|
||||||
end
|
|
||||||
|
|
||||||
def extra_highlights(&block)
|
def extra_highlights(&block)
|
||||||
@b_extra_highlights = block
|
@b_extra_highlights = block
|
||||||
end
|
end
|
||||||
@@ -396,5 +311,3 @@ module C
|
|||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
at_exit { C.log_all }
|
|
||||||
530
include/scripting/ruby_compiled.h
Normal file
530
include/scripting/ruby_compiled.h
Normal file
@@ -0,0 +1,530 @@
|
|||||||
|
#pragma once
|
||||||
|
constexpr unsigned char _tmp___crib_precompiled_mrb[] = {
|
||||||
|
0x52, 0x49, 0x54, 0x45, 0x30, 0x33, 0x30, 0x30, 0x00, 0x00, 0x18, 0xa1,
|
||||||
|
0x4d, 0x41, 0x54, 0x5a, 0x30, 0x30, 0x30, 0x30, 0x49, 0x52, 0x45, 0x50,
|
||||||
|
0x00, 0x00, 0x18, 0x13, 0x30, 0x33, 0x30, 0x30, 0x00, 0x00, 0x00, 0x34,
|
||||||
|
0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13,
|
||||||
|
0x11, 0x01, 0x5d, 0x01, 0x00, 0x5e, 0x01, 0x00, 0x11, 0x01, 0x5d, 0x01,
|
||||||
|
0x01, 0x5e, 0x01, 0x01, 0x38, 0x01, 0x69, 0x00, 0x00, 0x00, 0x02, 0x00,
|
||||||
|
0x06, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x73, 0x00, 0x00, 0x01, 0x43, 0x00,
|
||||||
|
0x00, 0x00, 0x03, 0xfd, 0x00, 0x01, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x01, 0x3c, 0x06, 0x01, 0x1e, 0x01, 0x00, 0x07, 0x01, 0x1e,
|
||||||
|
0x01, 0x01, 0x08, 0x01, 0x1e, 0x01, 0x02, 0x09, 0x01, 0x1e, 0x01, 0x03,
|
||||||
|
0x0a, 0x01, 0x1e, 0x01, 0x04, 0x0b, 0x01, 0x1e, 0x01, 0x05, 0x0c, 0x01,
|
||||||
|
0x1e, 0x01, 0x06, 0x0d, 0x01, 0x1e, 0x01, 0x07, 0x03, 0x01, 0x08, 0x1e,
|
||||||
|
0x01, 0x08, 0x03, 0x01, 0x09, 0x1e, 0x01, 0x09, 0x03, 0x01, 0x0a, 0x1e,
|
||||||
|
0x01, 0x0a, 0x03, 0x01, 0x0b, 0x1e, 0x01, 0x0b, 0x03, 0x01, 0x0c, 0x1e,
|
||||||
|
0x01, 0x0c, 0x03, 0x01, 0x0d, 0x1e, 0x01, 0x0d, 0x03, 0x01, 0x0e, 0x1e,
|
||||||
|
0x01, 0x0e, 0x03, 0x01, 0x0f, 0x1e, 0x01, 0x0f, 0x03, 0x01, 0x10, 0x1e,
|
||||||
|
0x01, 0x10, 0x03, 0x01, 0x11, 0x1e, 0x01, 0x11, 0x03, 0x01, 0x12, 0x1e,
|
||||||
|
0x01, 0x12, 0x03, 0x01, 0x13, 0x1e, 0x01, 0x13, 0x03, 0x01, 0x14, 0x1e,
|
||||||
|
0x01, 0x14, 0x03, 0x01, 0x15, 0x1e, 0x01, 0x15, 0x03, 0x01, 0x16, 0x1e,
|
||||||
|
0x01, 0x16, 0x03, 0x01, 0x17, 0x1e, 0x01, 0x17, 0x03, 0x01, 0x18, 0x1e,
|
||||||
|
0x01, 0x18, 0x03, 0x01, 0x19, 0x1e, 0x01, 0x19, 0x03, 0x01, 0x1a, 0x1e,
|
||||||
|
0x01, 0x1a, 0x03, 0x01, 0x1b, 0x1e, 0x01, 0x1b, 0x03, 0x01, 0x1c, 0x1e,
|
||||||
|
0x01, 0x1c, 0x03, 0x01, 0x1d, 0x1e, 0x01, 0x1d, 0x03, 0x01, 0x1e, 0x1e,
|
||||||
|
0x01, 0x1e, 0x03, 0x01, 0x1f, 0x1e, 0x01, 0x1f, 0x03, 0x01, 0x20, 0x1e,
|
||||||
|
0x01, 0x20, 0x03, 0x01, 0x21, 0x1e, 0x01, 0x21, 0x03, 0x01, 0x22, 0x1e,
|
||||||
|
0x01, 0x22, 0x03, 0x01, 0x23, 0x1e, 0x01, 0x23, 0x03, 0x01, 0x24, 0x1e,
|
||||||
|
0x01, 0x24, 0x03, 0x01, 0x25, 0x1e, 0x01, 0x25, 0x03, 0x01, 0x26, 0x1e,
|
||||||
|
0x01, 0x26, 0x03, 0x01, 0x27, 0x1e, 0x01, 0x27, 0x03, 0x01, 0x28, 0x1e,
|
||||||
|
0x01, 0x28, 0x03, 0x01, 0x29, 0x1e, 0x01, 0x29, 0x03, 0x01, 0x2a, 0x1e,
|
||||||
|
0x01, 0x2a, 0x03, 0x01, 0x2b, 0x1e, 0x01, 0x2b, 0x03, 0x01, 0x2c, 0x1e,
|
||||||
|
0x01, 0x2c, 0x03, 0x01, 0x2d, 0x1e, 0x01, 0x2d, 0x03, 0x01, 0x2e, 0x1e,
|
||||||
|
0x01, 0x2e, 0x03, 0x01, 0x2f, 0x1e, 0x01, 0x2f, 0x03, 0x01, 0x30, 0x1e,
|
||||||
|
0x01, 0x30, 0x03, 0x01, 0x31, 0x1e, 0x01, 0x31, 0x03, 0x01, 0x32, 0x1e,
|
||||||
|
0x01, 0x32, 0x03, 0x01, 0x33, 0x1e, 0x01, 0x33, 0x03, 0x01, 0x34, 0x1e,
|
||||||
|
0x01, 0x34, 0x2d, 0x01, 0x35, 0x00, 0x38, 0x01, 0x00, 0x00, 0x00, 0x36,
|
||||||
|
0x00, 0x06, 0x4b, 0x5f, 0x44, 0x41, 0x54, 0x41, 0x00, 0x00, 0x09, 0x4b,
|
||||||
|
0x5f, 0x53, 0x48, 0x45, 0x42, 0x41, 0x4e, 0x47, 0x00, 0x00, 0x09, 0x4b,
|
||||||
|
0x5f, 0x43, 0x4f, 0x4d, 0x4d, 0x45, 0x4e, 0x54, 0x00, 0x00, 0x07, 0x4b,
|
||||||
|
0x5f, 0x45, 0x52, 0x52, 0x4f, 0x52, 0x00, 0x00, 0x08, 0x4b, 0x5f, 0x53,
|
||||||
|
0x54, 0x52, 0x49, 0x4e, 0x47, 0x00, 0x00, 0x08, 0x4b, 0x5f, 0x45, 0x53,
|
||||||
|
0x43, 0x41, 0x50, 0x45, 0x00, 0x00, 0x0f, 0x4b, 0x5f, 0x49, 0x4e, 0x54,
|
||||||
|
0x45, 0x52, 0x50, 0x4f, 0x4c, 0x41, 0x54, 0x49, 0x4f, 0x4e, 0x00, 0x00,
|
||||||
|
0x08, 0x4b, 0x5f, 0x52, 0x45, 0x47, 0x45, 0x58, 0x50, 0x00, 0x00, 0x08,
|
||||||
|
0x4b, 0x5f, 0x4e, 0x55, 0x4d, 0x42, 0x45, 0x52, 0x00, 0x00, 0x06, 0x4b,
|
||||||
|
0x5f, 0x54, 0x52, 0x55, 0x45, 0x00, 0x00, 0x07, 0x4b, 0x5f, 0x46, 0x41,
|
||||||
|
0x4c, 0x53, 0x45, 0x00, 0x00, 0x06, 0x4b, 0x5f, 0x43, 0x48, 0x41, 0x52,
|
||||||
|
0x00, 0x00, 0x09, 0x4b, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44,
|
||||||
|
0x00, 0x00, 0x11, 0x4b, 0x5f, 0x4b, 0x45, 0x59, 0x57, 0x4f, 0x52, 0x44,
|
||||||
|
0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x00, 0x00, 0x0a, 0x4b,
|
||||||
|
0x5f, 0x4f, 0x50, 0x45, 0x52, 0x41, 0x54, 0x4f, 0x52, 0x00, 0x00, 0x0a,
|
||||||
|
0x4b, 0x5f, 0x46, 0x55, 0x4e, 0x43, 0x54, 0x49, 0x4f, 0x4e, 0x00, 0x00,
|
||||||
|
0x06, 0x4b, 0x5f, 0x54, 0x59, 0x50, 0x45, 0x00, 0x00, 0x0a, 0x4b, 0x5f,
|
||||||
|
0x43, 0x4f, 0x4e, 0x53, 0x54, 0x41, 0x4e, 0x54, 0x00, 0x00, 0x12, 0x4b,
|
||||||
|
0x5f, 0x56, 0x41, 0x52, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x49, 0x4e, 0x53,
|
||||||
|
0x54, 0x41, 0x4e, 0x43, 0x45, 0x00, 0x00, 0x10, 0x4b, 0x5f, 0x56, 0x41,
|
||||||
|
0x52, 0x49, 0x41, 0x42, 0x4c, 0x45, 0x47, 0x4c, 0x4f, 0x42, 0x41, 0x4c,
|
||||||
|
0x00, 0x00, 0x0c, 0x4b, 0x5f, 0x41, 0x4e, 0x4e, 0x4f, 0x54, 0x41, 0x54,
|
||||||
|
0x49, 0x4f, 0x4e, 0x00, 0x00, 0x0b, 0x4b, 0x5f, 0x44, 0x49, 0x52, 0x45,
|
||||||
|
0x43, 0x54, 0x49, 0x56, 0x45, 0x00, 0x00, 0x07, 0x4b, 0x5f, 0x4c, 0x41,
|
||||||
|
0x42, 0x45, 0x4c, 0x00, 0x00, 0x08, 0x4b, 0x5f, 0x42, 0x52, 0x41, 0x43,
|
||||||
|
0x45, 0x31, 0x00, 0x00, 0x08, 0x4b, 0x5f, 0x42, 0x52, 0x41, 0x43, 0x45,
|
||||||
|
0x32, 0x00, 0x00, 0x08, 0x4b, 0x5f, 0x42, 0x52, 0x41, 0x43, 0x45, 0x33,
|
||||||
|
0x00, 0x00, 0x08, 0x4b, 0x5f, 0x42, 0x52, 0x41, 0x43, 0x45, 0x34, 0x00,
|
||||||
|
0x00, 0x08, 0x4b, 0x5f, 0x42, 0x52, 0x41, 0x43, 0x45, 0x35, 0x00, 0x00,
|
||||||
|
0x0a, 0x4b, 0x5f, 0x48, 0x45, 0x41, 0x44, 0x49, 0x4e, 0x47, 0x31, 0x00,
|
||||||
|
0x00, 0x0a, 0x4b, 0x5f, 0x48, 0x45, 0x41, 0x44, 0x49, 0x4e, 0x47, 0x32,
|
||||||
|
0x00, 0x00, 0x0a, 0x4b, 0x5f, 0x48, 0x45, 0x41, 0x44, 0x49, 0x4e, 0x47,
|
||||||
|
0x33, 0x00, 0x00, 0x0a, 0x4b, 0x5f, 0x48, 0x45, 0x41, 0x44, 0x49, 0x4e,
|
||||||
|
0x47, 0x34, 0x00, 0x00, 0x0a, 0x4b, 0x5f, 0x48, 0x45, 0x41, 0x44, 0x49,
|
||||||
|
0x4e, 0x47, 0x35, 0x00, 0x00, 0x0a, 0x4b, 0x5f, 0x48, 0x45, 0x41, 0x44,
|
||||||
|
0x49, 0x4e, 0x47, 0x36, 0x00, 0x00, 0x0c, 0x4b, 0x5f, 0x42, 0x4c, 0x4f,
|
||||||
|
0x43, 0x4b, 0x51, 0x55, 0x4f, 0x54, 0x45, 0x00, 0x00, 0x06, 0x4b, 0x5f,
|
||||||
|
0x4c, 0x49, 0x53, 0x54, 0x00, 0x00, 0x0a, 0x4b, 0x5f, 0x4c, 0x49, 0x53,
|
||||||
|
0x54, 0x49, 0x54, 0x45, 0x4d, 0x00, 0x00, 0x06, 0x4b, 0x5f, 0x43, 0x4f,
|
||||||
|
0x44, 0x45, 0x00, 0x00, 0x0e, 0x4b, 0x5f, 0x4c, 0x41, 0x4e, 0x47, 0x55,
|
||||||
|
0x41, 0x47, 0x45, 0x4e, 0x41, 0x4d, 0x45, 0x00, 0x00, 0x0b, 0x4b, 0x5f,
|
||||||
|
0x4c, 0x49, 0x4e, 0x4b, 0x4c, 0x41, 0x42, 0x45, 0x4c, 0x00, 0x00, 0x0c,
|
||||||
|
0x4b, 0x5f, 0x49, 0x4d, 0x41, 0x47, 0x45, 0x4c, 0x41, 0x42, 0x45, 0x4c,
|
||||||
|
0x00, 0x00, 0x06, 0x4b, 0x5f, 0x4c, 0x49, 0x4e, 0x4b, 0x00, 0x00, 0x07,
|
||||||
|
0x4b, 0x5f, 0x54, 0x41, 0x42, 0x4c, 0x45, 0x00, 0x00, 0x0d, 0x4b, 0x5f,
|
||||||
|
0x54, 0x41, 0x42, 0x4c, 0x45, 0x48, 0x45, 0x41, 0x44, 0x45, 0x52, 0x00,
|
||||||
|
0x00, 0x08, 0x4b, 0x5f, 0x49, 0x54, 0x41, 0x4c, 0x49, 0x43, 0x00, 0x00,
|
||||||
|
0x06, 0x4b, 0x5f, 0x42, 0x4f, 0x4c, 0x44, 0x00, 0x00, 0x0b, 0x4b, 0x5f,
|
||||||
|
0x55, 0x4e, 0x44, 0x45, 0x52, 0x4c, 0x49, 0x4e, 0x45, 0x00, 0x00, 0x0f,
|
||||||
|
0x4b, 0x5f, 0x53, 0x54, 0x52, 0x49, 0x4b, 0x45, 0x54, 0x48, 0x52, 0x4f,
|
||||||
|
0x55, 0x47, 0x48, 0x00, 0x00, 0x10, 0x4b, 0x5f, 0x48, 0x4f, 0x52, 0x49,
|
||||||
|
0x58, 0x4f, 0x4e, 0x54, 0x41, 0x4c, 0x52, 0x55, 0x4c, 0x45, 0x00, 0x00,
|
||||||
|
0x05, 0x4b, 0x5f, 0x54, 0x41, 0x47, 0x00, 0x00, 0x0b, 0x4b, 0x5f, 0x41,
|
||||||
|
0x54, 0x54, 0x52, 0x49, 0x42, 0x55, 0x54, 0x45, 0x00, 0x00, 0x0b, 0x4b,
|
||||||
|
0x5f, 0x43, 0x48, 0x45, 0x43, 0x4b, 0x44, 0x4f, 0x4e, 0x45, 0x00, 0x00,
|
||||||
|
0x0e, 0x4b, 0x5f, 0x43, 0x48, 0x45, 0x43, 0x4b, 0x4e, 0x4f, 0x54, 0x44,
|
||||||
|
0x4f, 0x4e, 0x45, 0x00, 0x00, 0x06, 0x66, 0x72, 0x65, 0x65, 0x7a, 0x65,
|
||||||
|
0x00, 0x00, 0x00, 0x0f, 0x45, 0x00, 0x01, 0x00, 0x4c, 0x00, 0x01, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x07, 0x65, 0x51, 0x01, 0x00, 0x51, 0x02, 0x01, 0x51,
|
||||||
|
0x03, 0x02, 0x51, 0x04, 0x03, 0x51, 0x05, 0x04, 0x51, 0x06, 0x05, 0x51,
|
||||||
|
0x07, 0x06, 0x51, 0x08, 0x07, 0x47, 0x02, 0x07, 0x51, 0x03, 0x08, 0x47,
|
||||||
|
0x04, 0x00, 0x51, 0x05, 0x09, 0x51, 0x06, 0x0a, 0x47, 0x06, 0x01, 0x51,
|
||||||
|
0x07, 0x0b, 0x51, 0x08, 0x0c, 0x47, 0x08, 0x01, 0x51, 0x09, 0x0d, 0x51,
|
||||||
|
0x0a, 0x0e, 0x47, 0x0a, 0x01, 0x51, 0x0b, 0x0f, 0x51, 0x0c, 0x0e, 0x47,
|
||||||
|
0x0c, 0x01, 0x51, 0x0d, 0x10, 0x51, 0x0e, 0x0c, 0x47, 0x0e, 0x01, 0x51,
|
||||||
|
0x0f, 0x11, 0x51, 0x10, 0x12, 0x47, 0x10, 0x01, 0x51, 0x11, 0x13, 0x51,
|
||||||
|
0x12, 0x14, 0x47, 0x12, 0x01, 0x51, 0x13, 0x15, 0x51, 0x14, 0x0e, 0x47,
|
||||||
|
0x14, 0x01, 0x51, 0x15, 0x16, 0x51, 0x16, 0x0e, 0x47, 0x16, 0x01, 0x51,
|
||||||
|
0x17, 0x17, 0x47, 0x18, 0x00, 0x51, 0x19, 0x18, 0x51, 0x1a, 0x0e, 0x47,
|
||||||
|
0x1a, 0x01, 0x51, 0x1b, 0x19, 0x47, 0x1c, 0x00, 0x51, 0x1d, 0x1a, 0x51,
|
||||||
|
0x1e, 0x0e, 0x47, 0x1e, 0x01, 0x51, 0x1f, 0x1b, 0x51, 0x20, 0x1c, 0x47,
|
||||||
|
0x20, 0x01, 0x51, 0x21, 0x1d, 0x47, 0x22, 0x00, 0x51, 0x23, 0x1e, 0x51,
|
||||||
|
0x24, 0x14, 0x51, 0x25, 0x0a, 0x47, 0x24, 0x02, 0x51, 0x25, 0x1f, 0x51,
|
||||||
|
0x26, 0x0e, 0x47, 0x26, 0x01, 0x51, 0x27, 0x20, 0x51, 0x28, 0x12, 0x47,
|
||||||
|
0x28, 0x01, 0x51, 0x29, 0x21, 0x47, 0x2a, 0x00, 0x51, 0x2b, 0x22, 0x51,
|
||||||
|
0x2c, 0x23, 0x51, 0x2d, 0x24, 0x51, 0x2e, 0x0a, 0x47, 0x2c, 0x03, 0x53,
|
||||||
|
0x01, 0x16, 0x1a, 0x01, 0x00, 0x10, 0x01, 0x01, 0x10, 0x02, 0x02, 0x0f,
|
||||||
|
0x03, 0x00, 0x55, 0x55, 0x55, 0x10, 0x04, 0x03, 0x51, 0x05, 0x25, 0x10,
|
||||||
|
0x06, 0x04, 0x51, 0x07, 0x26, 0x47, 0x07, 0x01, 0x10, 0x08, 0x05, 0x51,
|
||||||
|
0x09, 0x00, 0x53, 0x02, 0x04, 0x10, 0x03, 0x06, 0x10, 0x04, 0x02, 0x0e,
|
||||||
|
0x05, 0x59, 0x9c, 0x10, 0x06, 0x03, 0x51, 0x07, 0x27, 0x10, 0x08, 0x04,
|
||||||
|
0x51, 0x09, 0x28, 0x51, 0x0a, 0x29, 0x51, 0x0b, 0x2a, 0x47, 0x09, 0x03,
|
||||||
|
0x10, 0x0a, 0x05, 0x51, 0x0b, 0x00, 0x53, 0x04, 0x04, 0x10, 0x05, 0x07,
|
||||||
|
0x10, 0x06, 0x02, 0x0f, 0x07, 0x00, 0xa8, 0xb9, 0xcc, 0x10, 0x08, 0x03,
|
||||||
|
0x51, 0x09, 0x2b, 0x10, 0x0a, 0x04, 0x51, 0x0b, 0x2c, 0x51, 0x0c, 0x2d,
|
||||||
|
0x47, 0x0b, 0x02, 0x10, 0x0c, 0x05, 0x51, 0x0d, 0x00, 0x53, 0x06, 0x04,
|
||||||
|
0x10, 0x07, 0x08, 0x10, 0x08, 0x02, 0x0f, 0x09, 0x00, 0x36, 0xa3, 0xd9,
|
||||||
|
0x10, 0x0a, 0x03, 0x51, 0x0b, 0x2e, 0x10, 0x0c, 0x04, 0x51, 0x0d, 0x2f,
|
||||||
|
0x47, 0x0d, 0x01, 0x10, 0x0e, 0x05, 0x51, 0x0f, 0x0d, 0x53, 0x08, 0x04,
|
||||||
|
0x10, 0x09, 0x09, 0x10, 0x0a, 0x02, 0x0f, 0x0b, 0x00, 0x4d, 0x5a, 0x5e,
|
||||||
|
0x10, 0x0c, 0x03, 0x51, 0x0d, 0x30, 0x10, 0x0e, 0x04, 0x51, 0x0f, 0x31,
|
||||||
|
0x47, 0x0f, 0x01, 0x10, 0x10, 0x05, 0x51, 0x11, 0x10, 0x53, 0x0a, 0x04,
|
||||||
|
0x10, 0x0b, 0x0a, 0x10, 0x0c, 0x02, 0x0f, 0x0d, 0x00, 0x00, 0xad, 0xd8,
|
||||||
|
0x10, 0x0e, 0x03, 0x51, 0x0f, 0x32, 0x10, 0x10, 0x04, 0x51, 0x11, 0x33,
|
||||||
|
0x47, 0x11, 0x01, 0x10, 0x12, 0x05, 0x51, 0x13, 0x11, 0x53, 0x0c, 0x04,
|
||||||
|
0x10, 0x0d, 0x0b, 0x10, 0x0e, 0x02, 0x0f, 0x0f, 0x00, 0x00, 0xad, 0xd8,
|
||||||
|
0x10, 0x10, 0x03, 0x51, 0x11, 0x32, 0x10, 0x12, 0x04, 0x51, 0x13, 0x34,
|
||||||
|
0x47, 0x13, 0x01, 0x10, 0x14, 0x05, 0x51, 0x15, 0x11, 0x53, 0x0e, 0x04,
|
||||||
|
0x10, 0x0f, 0x0c, 0x10, 0x10, 0x02, 0x0f, 0x11, 0x00, 0xa0, 0x74, 0xc4,
|
||||||
|
0x10, 0x12, 0x03, 0x51, 0x13, 0x35, 0x10, 0x14, 0x04, 0x51, 0x15, 0x36,
|
||||||
|
0x51, 0x16, 0x37, 0x47, 0x15, 0x02, 0x10, 0x16, 0x05, 0x51, 0x17, 0x13,
|
||||||
|
0x53, 0x10, 0x04, 0x10, 0x11, 0x0d, 0x10, 0x12, 0x02, 0x0f, 0x13, 0x00,
|
||||||
|
0xef, 0x8a, 0x91, 0x10, 0x14, 0x03, 0x51, 0x15, 0x38, 0x10, 0x16, 0x04,
|
||||||
|
0x51, 0x17, 0x39, 0x51, 0x18, 0x3a, 0x47, 0x17, 0x02, 0x10, 0x18, 0x05,
|
||||||
|
0x51, 0x19, 0x15, 0x53, 0x12, 0x04, 0x10, 0x13, 0x0e, 0x10, 0x14, 0x02,
|
||||||
|
0x0f, 0x15, 0x00, 0xf0, 0xdf, 0x8a, 0x10, 0x16, 0x03, 0x51, 0x17, 0x3b,
|
||||||
|
0x10, 0x18, 0x04, 0x51, 0x19, 0x3c, 0x47, 0x19, 0x01, 0x10, 0x1a, 0x05,
|
||||||
|
0x51, 0x1b, 0x16, 0x53, 0x14, 0x04, 0x10, 0x15, 0x0f, 0x10, 0x16, 0x02,
|
||||||
|
0x0f, 0x17, 0x00, 0x36, 0xa3, 0xd9, 0x10, 0x18, 0x03, 0x51, 0x19, 0x3d,
|
||||||
|
0x10, 0x1a, 0x04, 0x51, 0x1b, 0x3e, 0x47, 0x1b, 0x01, 0x10, 0x1c, 0x05,
|
||||||
|
0x51, 0x1d, 0x16, 0x53, 0x16, 0x04, 0x10, 0x17, 0x10, 0x10, 0x18, 0x02,
|
||||||
|
0x0f, 0x19, 0x00, 0xcb, 0xcb, 0x41, 0x10, 0x1a, 0x03, 0x51, 0x1b, 0x3f,
|
||||||
|
0x10, 0x1c, 0x04, 0x51, 0x1d, 0x40, 0x47, 0x1d, 0x01, 0x10, 0x1e, 0x05,
|
||||||
|
0x51, 0x1f, 0x0f, 0x53, 0x18, 0x04, 0x10, 0x19, 0x11, 0x10, 0x1a, 0x02,
|
||||||
|
0x0f, 0x1b, 0x00, 0xcb, 0xcb, 0x41, 0x10, 0x1c, 0x03, 0x51, 0x1d, 0x3f,
|
||||||
|
0x10, 0x1e, 0x04, 0x51, 0x1f, 0x41, 0x47, 0x1f, 0x01, 0x10, 0x20, 0x05,
|
||||||
|
0x51, 0x21, 0x0f, 0x53, 0x1a, 0x04, 0x10, 0x1b, 0x12, 0x10, 0x1c, 0x02,
|
||||||
|
0x0f, 0x1d, 0x00, 0x6e, 0x15, 0x16, 0x10, 0x1e, 0x03, 0x51, 0x1f, 0x38,
|
||||||
|
0x10, 0x20, 0x04, 0x51, 0x21, 0x42, 0x47, 0x21, 0x01, 0x10, 0x22, 0x05,
|
||||||
|
0x51, 0x23, 0x08, 0x53, 0x1c, 0x04, 0x10, 0x1d, 0x13, 0x10, 0x1e, 0x02,
|
||||||
|
0x0f, 0x1f, 0x00, 0x36, 0xa3, 0xd9, 0x10, 0x20, 0x03, 0x51, 0x21, 0x43,
|
||||||
|
0x10, 0x22, 0x04, 0x51, 0x23, 0x44, 0x47, 0x23, 0x01, 0x10, 0x24, 0x05,
|
||||||
|
0x51, 0x25, 0x17, 0x53, 0x1e, 0x04, 0x10, 0x1f, 0x14, 0x10, 0x20, 0x02,
|
||||||
|
0x0f, 0x21, 0x00, 0x95, 0xe6, 0xcb, 0x10, 0x22, 0x03, 0x51, 0x23, 0x45,
|
||||||
|
0x10, 0x24, 0x04, 0x51, 0x25, 0x46, 0x47, 0x25, 0x01, 0x10, 0x26, 0x05,
|
||||||
|
0x51, 0x27, 0x47, 0x53, 0x20, 0x04, 0x10, 0x21, 0x15, 0x10, 0x22, 0x02,
|
||||||
|
0x0f, 0x23, 0x00, 0xde, 0xa5, 0x84, 0x10, 0x24, 0x03, 0x51, 0x25, 0x48,
|
||||||
|
0x10, 0x26, 0x04, 0x51, 0x27, 0x49, 0x47, 0x27, 0x01, 0x10, 0x28, 0x05,
|
||||||
|
0x51, 0x29, 0x19, 0x53, 0x22, 0x04, 0x10, 0x23, 0x16, 0x10, 0x24, 0x02,
|
||||||
|
0x0f, 0x25, 0x00, 0xa0, 0x74, 0xc4, 0x10, 0x26, 0x03, 0x51, 0x27, 0x4a,
|
||||||
|
0x10, 0x28, 0x04, 0x51, 0x29, 0x4b, 0x47, 0x29, 0x01, 0x10, 0x2a, 0x05,
|
||||||
|
0x51, 0x2b, 0x1a, 0x53, 0x24, 0x04, 0x10, 0x25, 0x17, 0x10, 0x26, 0x02,
|
||||||
|
0x0f, 0x27, 0x00, 0x36, 0xa3, 0xd9, 0x10, 0x28, 0x03, 0x51, 0x29, 0x4c,
|
||||||
|
0x10, 0x2a, 0x04, 0x51, 0x2b, 0x4d, 0x51, 0x2c, 0x4e, 0x47, 0x2b, 0x02,
|
||||||
|
0x10, 0x2c, 0x05, 0x51, 0x2d, 0x1b, 0x53, 0x26, 0x04, 0x10, 0x27, 0x18,
|
||||||
|
0x10, 0x28, 0x02, 0x0f, 0x29, 0x00, 0x6d, 0x80, 0x86, 0x10, 0x2a, 0x03,
|
||||||
|
0x51, 0x2b, 0x4f, 0x10, 0x2c, 0x04, 0x51, 0x2d, 0x50, 0x47, 0x2d, 0x01,
|
||||||
|
0x10, 0x2e, 0x05, 0x51, 0x2f, 0x1d, 0x53, 0x28, 0x04, 0x10, 0x29, 0x19,
|
||||||
|
0x10, 0x2a, 0x02, 0x0f, 0x2b, 0x00, 0x36, 0xa3, 0xd9, 0x10, 0x2c, 0x03,
|
||||||
|
0x51, 0x2d, 0x51, 0x10, 0x2e, 0x04, 0x51, 0x2f, 0x52, 0x47, 0x2f, 0x01,
|
||||||
|
0x10, 0x30, 0x05, 0x51, 0x31, 0x1e, 0x53, 0x2a, 0x04, 0x10, 0x2b, 0x1a,
|
||||||
|
0x10, 0x2c, 0x02, 0x0f, 0x2d, 0x00, 0x6d, 0x80, 0x86, 0x10, 0x2e, 0x03,
|
||||||
|
0x51, 0x2f, 0x4f, 0x10, 0x30, 0x04, 0x51, 0x31, 0x53, 0x51, 0x32, 0x54,
|
||||||
|
0x47, 0x31, 0x02, 0x10, 0x32, 0x05, 0x51, 0x33, 0x1f, 0x53, 0x2c, 0x04,
|
||||||
|
0x10, 0x2d, 0x1b, 0x10, 0x2e, 0x02, 0x0f, 0x2f, 0x00, 0xda, 0xd8, 0xd8,
|
||||||
|
0x10, 0x30, 0x03, 0x51, 0x31, 0x55, 0x10, 0x32, 0x04, 0x51, 0x33, 0x56,
|
||||||
|
0x47, 0x33, 0x01, 0x10, 0x34, 0x05, 0x51, 0x35, 0x20, 0x53, 0x2e, 0x04,
|
||||||
|
0x10, 0x2f, 0x1c, 0x10, 0x30, 0x02, 0x0f, 0x31, 0x00, 0x4e, 0x5c, 0x61,
|
||||||
|
0x10, 0x32, 0x03, 0x51, 0x33, 0x57, 0x10, 0x34, 0x04, 0x51, 0x35, 0x58,
|
||||||
|
0x51, 0x36, 0x59, 0x47, 0x35, 0x02, 0x10, 0x36, 0x05, 0x51, 0x37, 0x21,
|
||||||
|
0x53, 0x30, 0x04, 0x10, 0x31, 0x1d, 0x10, 0x32, 0x02, 0x0f, 0x33, 0x00,
|
||||||
|
0x6d, 0x80, 0x86, 0x10, 0x34, 0x03, 0x51, 0x35, 0x5a, 0x10, 0x36, 0x04,
|
||||||
|
0x51, 0x37, 0x5b, 0x47, 0x37, 0x01, 0x53, 0x32, 0x03, 0x10, 0x33, 0x1e,
|
||||||
|
0x10, 0x34, 0x02, 0x0f, 0x35, 0x00, 0xda, 0xd8, 0xd8, 0x10, 0x36, 0x03,
|
||||||
|
0x51, 0x37, 0x5c, 0x10, 0x38, 0x04, 0x51, 0x39, 0x5d, 0x47, 0x39, 0x01,
|
||||||
|
0x53, 0x34, 0x03, 0x10, 0x35, 0x1f, 0x10, 0x36, 0x02, 0x0f, 0x37, 0x00,
|
||||||
|
0xdd, 0x4c, 0x35, 0x10, 0x38, 0x03, 0x51, 0x39, 0x5e, 0x10, 0x3a, 0x04,
|
||||||
|
0x51, 0x3b, 0x5f, 0x51, 0x3c, 0x60, 0x47, 0x3b, 0x02, 0x53, 0x36, 0x03,
|
||||||
|
0x10, 0x37, 0x20, 0x10, 0x38, 0x02, 0x0f, 0x39, 0x00, 0xf0, 0x50, 0x32,
|
||||||
|
0x10, 0x3a, 0x03, 0x51, 0x3b, 0x61, 0x10, 0x3c, 0x04, 0x51, 0x3d, 0x62,
|
||||||
|
0x47, 0x3d, 0x01, 0x53, 0x38, 0x03, 0x10, 0x39, 0x21, 0x10, 0x3a, 0x02,
|
||||||
|
0x0f, 0x3b, 0x00, 0xf0, 0x50, 0x32, 0x10, 0x3c, 0x03, 0x51, 0x3d, 0x61,
|
||||||
|
0x10, 0x3e, 0x04, 0x51, 0x3f, 0x63, 0x47, 0x3f, 0x01, 0x53, 0x3a, 0x03,
|
||||||
|
0x10, 0x3b, 0x22, 0x10, 0x3c, 0x02, 0x0f, 0x3d, 0x00, 0x9e, 0x9e, 0x9e,
|
||||||
|
0x10, 0x3e, 0x03, 0x51, 0x3f, 0x64, 0x10, 0x40, 0x04, 0x51, 0x41, 0x65,
|
||||||
|
0x47, 0x41, 0x01, 0x53, 0x3c, 0x03, 0x10, 0x3d, 0x23, 0x10, 0x3e, 0x02,
|
||||||
|
0x0f, 0x3f, 0x00, 0x6d, 0x80, 0x86, 0x10, 0x40, 0x03, 0x51, 0x41, 0x4f,
|
||||||
|
0x10, 0x42, 0x04, 0x51, 0x43, 0x66, 0x47, 0x43, 0x01, 0x53, 0x3e, 0x03,
|
||||||
|
0x10, 0x3f, 0x24, 0x10, 0x40, 0x02, 0x0f, 0x41, 0x00, 0xff, 0x80, 0x87,
|
||||||
|
0x10, 0x42, 0x03, 0x51, 0x43, 0x67, 0x10, 0x44, 0x04, 0x51, 0x45, 0x68,
|
||||||
|
0x47, 0x45, 0x01, 0x10, 0x46, 0x25, 0x51, 0x47, 0x69, 0x47, 0x47, 0x01,
|
||||||
|
0x10, 0x48, 0x05, 0x51, 0x49, 0x09, 0x53, 0x40, 0x05, 0x10, 0x41, 0x26,
|
||||||
|
0x10, 0x42, 0x02, 0x0f, 0x43, 0x00, 0x4d, 0x5a, 0x5e, 0x10, 0x44, 0x03,
|
||||||
|
0x51, 0x45, 0x6a, 0x10, 0x46, 0x04, 0x51, 0x47, 0x6b, 0x47, 0x47, 0x01,
|
||||||
|
0x10, 0x48, 0x25, 0x51, 0x49, 0x6c, 0x51, 0x4a, 0x6d, 0x47, 0x49, 0x02,
|
||||||
|
0x10, 0x4a, 0x05, 0x51, 0x4b, 0x0b, 0x53, 0x42, 0x05, 0x53, 0x01, 0x21,
|
||||||
|
0x1a, 0x01, 0x27, 0x10, 0x01, 0x28, 0x10, 0x02, 0x29, 0x0f, 0x03, 0x00,
|
||||||
|
0xee, 0xee, 0xee, 0x53, 0x02, 0x01, 0x10, 0x03, 0x2a, 0x10, 0x04, 0x29,
|
||||||
|
0x0f, 0x05, 0x00, 0x7d, 0xcf, 0xff, 0x53, 0x04, 0x01, 0x10, 0x05, 0x2b,
|
||||||
|
0x10, 0x06, 0x29, 0x0f, 0x07, 0x00, 0xef, 0x51, 0x68, 0x53, 0x06, 0x01,
|
||||||
|
0x10, 0x07, 0x2c, 0x10, 0x08, 0x29, 0x0f, 0x09, 0x00, 0xaa, 0xaa, 0xaa,
|
||||||
|
0x10, 0x0a, 0x2d, 0x13, 0x0b, 0x53, 0x08, 0x02, 0x10, 0x09, 0x2e, 0x10,
|
||||||
|
0x0a, 0x29, 0x0f, 0x0b, 0x00, 0xaa, 0xd9, 0x4c, 0x53, 0x0a, 0x01, 0x10,
|
||||||
|
0x0b, 0x2f, 0x10, 0x0c, 0x29, 0x0f, 0x0d, 0x00, 0x7d, 0xcf, 0xff, 0x53,
|
||||||
|
0x0c, 0x01, 0x10, 0x0d, 0x30, 0x10, 0x0e, 0x29, 0x0f, 0x0f, 0x00, 0x7d,
|
||||||
|
0xcf, 0xff, 0x53, 0x0e, 0x01, 0x10, 0x0f, 0x31, 0x10, 0x10, 0x29, 0x0f,
|
||||||
|
0x11, 0x00, 0xd2, 0xa6, 0xff, 0x53, 0x10, 0x01, 0x10, 0x11, 0x32, 0x10,
|
||||||
|
0x12, 0x29, 0x0f, 0x13, 0x00, 0xe6, 0xc0, 0x8a, 0x53, 0x12, 0x01, 0x10,
|
||||||
|
0x13, 0x33, 0x10, 0x14, 0x29, 0x0f, 0x15, 0x00, 0x7a, 0xe9, 0x3c, 0x53,
|
||||||
|
0x14, 0x01, 0x10, 0x15, 0x34, 0x10, 0x16, 0x29, 0x0f, 0x17, 0x00, 0xef,
|
||||||
|
0x51, 0x68, 0x53, 0x16, 0x01, 0x10, 0x17, 0x35, 0x10, 0x18, 0x29, 0x0f,
|
||||||
|
0x19, 0x00, 0xff, 0xaf, 0x70, 0x53, 0x18, 0x01, 0x10, 0x19, 0x36, 0x10,
|
||||||
|
0x1a, 0x29, 0x0f, 0x1b, 0x00, 0xff, 0x8f, 0x40, 0x53, 0x1a, 0x01, 0x10,
|
||||||
|
0x1b, 0x37, 0x10, 0x1c, 0x29, 0x0f, 0x1d, 0x00, 0xf0, 0x71, 0x78, 0x53,
|
||||||
|
0x1c, 0x01, 0x10, 0x1d, 0x38, 0x10, 0x1e, 0x29, 0x0f, 0x1f, 0x00, 0xff,
|
||||||
|
0xff, 0xff, 0x10, 0x20, 0x2d, 0x13, 0x21, 0x53, 0x1e, 0x02, 0x10, 0x1f,
|
||||||
|
0x39, 0x10, 0x20, 0x29, 0x0f, 0x21, 0x00, 0xff, 0xaf, 0x70, 0x53, 0x20,
|
||||||
|
0x01, 0x10, 0x21, 0x3a, 0x10, 0x22, 0x29, 0x0f, 0x23, 0x00, 0xf0, 0x71,
|
||||||
|
0x78, 0x53, 0x22, 0x01, 0x10, 0x23, 0x3b, 0x10, 0x24, 0x29, 0x0f, 0x25,
|
||||||
|
0x00, 0x7d, 0xcf, 0xff, 0x53, 0x24, 0x01, 0x10, 0x25, 0x3c, 0x10, 0x26,
|
||||||
|
0x29, 0x0f, 0x27, 0x00, 0x95, 0xe6, 0xcb, 0x53, 0x26, 0x01, 0x10, 0x27,
|
||||||
|
0x3d, 0x10, 0x28, 0x29, 0x0f, 0x29, 0x00, 0xf0, 0x71, 0x78, 0x53, 0x28,
|
||||||
|
0x01, 0x10, 0x29, 0x3e, 0x10, 0x2a, 0x29, 0x0f, 0x2b, 0x00, 0x7d, 0xcf,
|
||||||
|
0xff, 0x53, 0x2a, 0x01, 0x10, 0x2b, 0x3f, 0x10, 0x2c, 0x29, 0x0f, 0x2d,
|
||||||
|
0x00, 0xff, 0x8f, 0x40, 0x53, 0x2c, 0x01, 0x10, 0x2d, 0x40, 0x10, 0x2e,
|
||||||
|
0x29, 0x0f, 0x2f, 0x00, 0xd2, 0xa6, 0xff, 0x53, 0x2e, 0x01, 0x10, 0x2f,
|
||||||
|
0x41, 0x10, 0x30, 0x29, 0x0f, 0x31, 0x00, 0xd2, 0xa6, 0xff, 0x53, 0x30,
|
||||||
|
0x01, 0x10, 0x31, 0x42, 0x10, 0x32, 0x29, 0x0f, 0x33, 0x00, 0xff, 0xaf,
|
||||||
|
0xaf, 0x53, 0x32, 0x01, 0x10, 0x33, 0x43, 0x10, 0x34, 0x29, 0x0f, 0x35,
|
||||||
|
0x00, 0xff, 0xff, 0x00, 0x53, 0x34, 0x01, 0x10, 0x35, 0x44, 0x10, 0x36,
|
||||||
|
0x29, 0x0f, 0x37, 0x00, 0x0f, 0xff, 0x0f, 0x53, 0x36, 0x01, 0x10, 0x37,
|
||||||
|
0x45, 0x10, 0x38, 0x29, 0x0f, 0x39, 0x00, 0xff, 0x0f, 0x0f, 0x53, 0x38,
|
||||||
|
0x01, 0x53, 0x01, 0x1c, 0x1a, 0x01, 0x46, 0x10, 0x01, 0x47, 0x1a, 0x01,
|
||||||
|
0x48, 0x53, 0x01, 0x00, 0x1a, 0x01, 0x49, 0x53, 0x01, 0x00, 0x1a, 0x01,
|
||||||
|
0x4a, 0x53, 0x01, 0x00, 0x1a, 0x01, 0x4b, 0x11, 0x01, 0x1a, 0x01, 0x4c,
|
||||||
|
0x11, 0x01, 0x1a, 0x01, 0x4d, 0x12, 0x01, 0x62, 0x01, 0x5e, 0x01, 0x00,
|
||||||
|
0x38, 0x01, 0x00, 0x6e, 0x00, 0x00, 0x06, 0x63, 0x6c, 0x61, 0x6e, 0x67,
|
||||||
|
0x64, 0x00, 0x00, 0x00, 0x12, 0x2d, 0x2d, 0x62, 0x61, 0x63, 0x6b, 0x67,
|
||||||
|
0x72, 0x6f, 0x75, 0x6e, 0x64, 0x2d, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x00,
|
||||||
|
0x00, 0x00, 0x0c, 0x2d, 0x2d, 0x63, 0x6c, 0x61, 0x6e, 0x67, 0x2d, 0x74,
|
||||||
|
0x69, 0x64, 0x79, 0x00, 0x00, 0x00, 0x1b, 0x2d, 0x2d, 0x63, 0x6f, 0x6d,
|
||||||
|
0x70, 0x6c, 0x65, 0x74, 0x69, 0x6f, 0x6e, 0x2d, 0x73, 0x74, 0x79, 0x6c,
|
||||||
|
0x65, 0x3d, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x65, 0x64, 0x00, 0x00,
|
||||||
|
0x00, 0x18, 0x2d, 0x2d, 0x68, 0x65, 0x61, 0x64, 0x65, 0x72, 0x2d, 0x69,
|
||||||
|
0x6e, 0x73, 0x65, 0x72, 0x74, 0x69, 0x6f, 0x6e, 0x3d, 0x6e, 0x65, 0x76,
|
||||||
|
0x65, 0x72, 0x00, 0x00, 0x00, 0x14, 0x2d, 0x2d, 0x70, 0x63, 0x68, 0x2d,
|
||||||
|
0x73, 0x74, 0x6f, 0x72, 0x61, 0x67, 0x65, 0x3d, 0x6d, 0x65, 0x6d, 0x6f,
|
||||||
|
0x72, 0x79, 0x00, 0x00, 0x00, 0x12, 0x2d, 0x2d, 0x6c, 0x69, 0x6d, 0x69,
|
||||||
|
0x74, 0x2d, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x73, 0x3d, 0x35, 0x30,
|
||||||
|
0x00, 0x00, 0x00, 0x0b, 0x2d, 0x2d, 0x6c, 0x6f, 0x67, 0x3d, 0x65, 0x72,
|
||||||
|
0x72, 0x6f, 0x72, 0x00, 0x00, 0x00, 0x08, 0x72, 0x75, 0x62, 0x79, 0x2d,
|
||||||
|
0x6c, 0x73, 0x70, 0x00, 0x00, 0x00, 0x0a, 0x73, 0x6f, 0x6c, 0x61, 0x72,
|
||||||
|
0x67, 0x72, 0x61, 0x70, 0x68, 0x00, 0x00, 0x00, 0x05, 0x73, 0x74, 0x64,
|
||||||
|
0x69, 0x6f, 0x00, 0x00, 0x00, 0x14, 0x62, 0x61, 0x73, 0x68, 0x2d, 0x6c,
|
||||||
|
0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x2d, 0x73, 0x65, 0x72, 0x76,
|
||||||
|
0x65, 0x72, 0x00, 0x00, 0x00, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x00,
|
||||||
|
0x00, 0x00, 0x1a, 0x76, 0x73, 0x63, 0x6f, 0x64, 0x65, 0x2d, 0x63, 0x73,
|
||||||
|
0x73, 0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x2d, 0x73,
|
||||||
|
0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x07, 0x2d, 0x2d, 0x73,
|
||||||
|
0x74, 0x64, 0x69, 0x6f, 0x00, 0x00, 0x00, 0x1b, 0x76, 0x73, 0x63, 0x6f,
|
||||||
|
0x64, 0x65, 0x2d, 0x6a, 0x73, 0x6f, 0x6e, 0x2d, 0x6c, 0x61, 0x6e, 0x67,
|
||||||
|
0x75, 0x61, 0x67, 0x65, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00,
|
||||||
|
0x00, 0x00, 0x08, 0x66, 0x69, 0x73, 0x68, 0x2d, 0x6c, 0x73, 0x70, 0x00,
|
||||||
|
0x00, 0x00, 0x05, 0x67, 0x6f, 0x70, 0x6c, 0x73, 0x00, 0x00, 0x00, 0x05,
|
||||||
|
0x73, 0x65, 0x72, 0x76, 0x65, 0x00, 0x00, 0x00, 0x17, 0x68, 0x61, 0x73,
|
||||||
|
0x6b, 0x65, 0x6c, 0x6c, 0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67,
|
||||||
|
0x65, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x03,
|
||||||
|
0x6c, 0x73, 0x70, 0x00, 0x00, 0x00, 0x15, 0x65, 0x6d, 0x6d, 0x65, 0x74,
|
||||||
|
0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x2d, 0x73, 0x65,
|
||||||
|
0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x1a, 0x74, 0x79, 0x70, 0x65,
|
||||||
|
0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75,
|
||||||
|
0x61, 0x67, 0x65, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00,
|
||||||
|
0x00, 0x13, 0x6c, 0x75, 0x61, 0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61,
|
||||||
|
0x67, 0x65, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00,
|
||||||
|
0x12, 0x70, 0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x2d, 0x6c, 0x61, 0x6e,
|
||||||
|
0x67, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x0d, 0x72,
|
||||||
|
0x75, 0x73, 0x74, 0x2d, 0x61, 0x6e, 0x61, 0x6c, 0x79, 0x7a, 0x65, 0x72,
|
||||||
|
0x00, 0x00, 0x00, 0x0c, 0x69, 0x6e, 0x74, 0x65, 0x6c, 0x65, 0x70, 0x68,
|
||||||
|
0x65, 0x6e, 0x73, 0x65, 0x00, 0x00, 0x00, 0x08, 0x6d, 0x61, 0x72, 0x6b,
|
||||||
|
0x73, 0x6d, 0x61, 0x6e, 0x00, 0x00, 0x00, 0x06, 0x73, 0x65, 0x72, 0x76,
|
||||||
|
0x65, 0x72, 0x00, 0x00, 0x00, 0x15, 0x6e, 0x67, 0x69, 0x6e, 0x78, 0x2d,
|
||||||
|
0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x2d, 0x73, 0x65, 0x72,
|
||||||
|
0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x05, 0x74, 0x61, 0x70, 0x6c, 0x6f,
|
||||||
|
0x00, 0x00, 0x00, 0x14, 0x79, 0x61, 0x6d, 0x6c, 0x2d, 0x6c, 0x61, 0x6e,
|
||||||
|
0x67, 0x75, 0x61, 0x67, 0x65, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72,
|
||||||
|
0x00, 0x00, 0x00, 0x04, 0x73, 0x71, 0x6c, 0x73, 0x00, 0x00, 0x00, 0x14,
|
||||||
|
0x6d, 0x61, 0x6b, 0x65, 0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67,
|
||||||
|
0x65, 0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x13,
|
||||||
|
0x73, 0x71, 0x6c, 0x2d, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65,
|
||||||
|
0x2d, 0x73, 0x65, 0x72, 0x76, 0x65, 0x72, 0x00, 0x00, 0x00, 0x02, 0x75,
|
||||||
|
0x70, 0x00, 0x00, 0x00, 0x08, 0x2d, 0x2d, 0x6d, 0x65, 0x74, 0x68, 0x6f,
|
||||||
|
0x64, 0x00, 0x00, 0x00, 0x04, 0xee, 0x98, 0x9e, 0x20, 0x00, 0x00, 0x00,
|
||||||
|
0x01, 0x63, 0x00, 0x00, 0x00, 0x04, 0xee, 0x98, 0x9d, 0x20, 0x00, 0x00,
|
||||||
|
0x00, 0x03, 0x63, 0x70, 0x70, 0x00, 0x00, 0x00, 0x02, 0x63, 0x63, 0x00,
|
||||||
|
0x00, 0x00, 0x03, 0x63, 0x78, 0x78, 0x00, 0x00, 0x00, 0x04, 0xef, 0x83,
|
||||||
|
0xbd, 0x20, 0x00, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x00, 0x03, 0x68,
|
||||||
|
0x70, 0x70, 0x00, 0x00, 0x00, 0x04, 0xee, 0x9a, 0xb8, 0x20, 0x00, 0x00,
|
||||||
|
0x00, 0x03, 0x63, 0x73, 0x73, 0x00, 0x00, 0x00, 0x04, 0xee, 0xb9, 0x81,
|
||||||
|
0x20, 0x00, 0x00, 0x00, 0x04, 0x66, 0x69, 0x73, 0x68, 0x00, 0x00, 0x00,
|
||||||
|
0x04, 0xee, 0x98, 0xa7, 0x20, 0x00, 0x00, 0x00, 0x02, 0x67, 0x6f, 0x00,
|
||||||
|
0x00, 0x00, 0x03, 0x6d, 0x6f, 0x64, 0x00, 0x00, 0x00, 0x04, 0xee, 0x9d,
|
||||||
|
0xb7, 0x20, 0x00, 0x00, 0x00, 0x02, 0x68, 0x73, 0x00, 0x00, 0x00, 0x03,
|
||||||
|
0x6c, 0x68, 0x73, 0x00, 0x00, 0x00, 0x04, 0xef, 0x84, 0xa1, 0x20, 0x00,
|
||||||
|
0x00, 0x00, 0x04, 0x68, 0x74, 0x6d, 0x6c, 0x00, 0x00, 0x00, 0x03, 0x68,
|
||||||
|
0x74, 0x6d, 0x00, 0x00, 0x00, 0x04, 0xef, 0x8b, 0xaf, 0x20, 0x00, 0x00,
|
||||||
|
0x00, 0x02, 0x6a, 0x73, 0x00, 0x00, 0x00, 0x04, 0xee, 0x9a, 0x9d, 0x20,
|
||||||
|
0x00, 0x00, 0x00, 0x02, 0x74, 0x73, 0x00, 0x00, 0x00, 0x02, 0x7b, 0x7d,
|
||||||
|
0x00, 0x00, 0x00, 0x04, 0x6a, 0x73, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x05,
|
||||||
|
0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x00, 0x00, 0x00, 0x03, 0x65, 0x72, 0x62,
|
||||||
|
0x00, 0x00, 0x00, 0x05, 0xf3, 0xb0, 0xa2, 0xb1, 0x20, 0x00, 0x00, 0x00,
|
||||||
|
0x03, 0x6c, 0x75, 0x61, 0x00, 0x00, 0x00, 0x05, 0xf3, 0xb0, 0x8c, 0xa0,
|
||||||
|
0x20, 0x00, 0x00, 0x00, 0x02, 0x70, 0x79, 0x00, 0x00, 0x00, 0x07, 0x70,
|
||||||
|
0x79, 0x72, 0x69, 0x67, 0x68, 0x74, 0x00, 0x00, 0x00, 0x05, 0xf3, 0xb1,
|
||||||
|
0x98, 0x97, 0x20, 0x00, 0x00, 0x00, 0x02, 0x72, 0x73, 0x00, 0x00, 0x00,
|
||||||
|
0x05, 0xf3, 0xb0, 0x8c, 0x9f, 0x20, 0x00, 0x00, 0x00, 0x03, 0x70, 0x68,
|
||||||
|
0x70, 0x00, 0x00, 0x00, 0x04, 0xee, 0xba, 0xab, 0x20, 0x00, 0x00, 0x00,
|
||||||
|
0x02, 0x6d, 0x64, 0x00, 0x00, 0x00, 0x08, 0x6d, 0x61, 0x72, 0x6b, 0x64,
|
||||||
|
0x6f, 0x77, 0x6e, 0x00, 0x00, 0x00, 0x04, 0xee, 0x98, 0x95, 0x20, 0x00,
|
||||||
|
0x00, 0x00, 0x04, 0x63, 0x6f, 0x6e, 0x66, 0x00, 0x00, 0x00, 0x04, 0xee,
|
||||||
|
0x9a, 0xb2, 0x20, 0x00, 0x00, 0x00, 0x04, 0x74, 0x6f, 0x6d, 0x6c, 0x00,
|
||||||
|
0x00, 0x00, 0x03, 0x79, 0x6d, 0x6c, 0x00, 0x00, 0x00, 0x04, 0x79, 0x61,
|
||||||
|
0x6d, 0x6c, 0x00, 0x00, 0x00, 0x04, 0xee, 0x99, 0x8d, 0x20, 0x00, 0x00,
|
||||||
|
0x00, 0x03, 0x73, 0x71, 0x6c, 0x00, 0x00, 0x00, 0x04, 0xee, 0x99, 0xb3,
|
||||||
|
0x20, 0x00, 0x00, 0x00, 0x08, 0x4d, 0x61, 0x6b, 0x65, 0x66, 0x69, 0x6c,
|
||||||
|
0x65, 0x00, 0x00, 0x00, 0x08, 0x6d, 0x61, 0x6b, 0x65, 0x66, 0x69, 0x6c,
|
||||||
|
0x65, 0x00, 0x00, 0x00, 0x04, 0xee, 0x99, 0x9f, 0x20, 0x00, 0x00, 0x00,
|
||||||
|
0x02, 0x67, 0x64, 0x00, 0x00, 0x00, 0x04, 0xef, 0x80, 0xad, 0x20, 0x00,
|
||||||
|
0x00, 0x00, 0x03, 0x6d, 0x61, 0x6e, 0x00, 0x00, 0x00, 0x04, 0xee, 0x9c,
|
||||||
|
0xa8, 0x20, 0x00, 0x00, 0x00, 0x04, 0x64, 0x69, 0x66, 0x66, 0x00, 0x00,
|
||||||
|
0x00, 0x05, 0x70, 0x61, 0x74, 0x63, 0x68, 0x00, 0x00, 0x00, 0x04, 0xee,
|
||||||
|
0x99, 0x9d, 0x20, 0x00, 0x00, 0x00, 0x0d, 0x67, 0x69, 0x74, 0x61, 0x74,
|
||||||
|
0x74, 0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x00, 0x00, 0x00, 0x09,
|
||||||
|
0x67, 0x69, 0x74, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x00, 0x00, 0x00,
|
||||||
|
0x02, 0x2e, 0x2a, 0x00, 0x00, 0x00, 0x05, 0x72, 0x65, 0x67, 0x65, 0x78,
|
||||||
|
0x00, 0x00, 0x00, 0x03, 0x69, 0x6e, 0x69, 0x00, 0x00, 0x00, 0x05, 0xf3,
|
||||||
|
0xb0, 0xb4, 0xad, 0x20, 0x00, 0x00, 0x00, 0x02, 0x72, 0x62, 0x00, 0x00,
|
||||||
|
0x00, 0x07, 0x47, 0x65, 0x6d, 0x66, 0x69, 0x6c, 0x65, 0x00, 0x00, 0x00,
|
||||||
|
0x04, 0xee, 0xaf, 0x8a, 0x20, 0x00, 0x00, 0x00, 0x02, 0x73, 0x68, 0x00,
|
||||||
|
0x00, 0x00, 0x0c, 0x62, 0x61, 0x73, 0x68, 0x5f, 0x70, 0x72, 0x6f, 0x66,
|
||||||
|
0x69, 0x6c, 0x65, 0x00, 0x00, 0x00, 0x06, 0x62, 0x61, 0x73, 0x68, 0x72,
|
||||||
|
0x63, 0x00, 0x00, 0x4e, 0x00, 0x0b, 0x40, 0x6c, 0x73, 0x70, 0x5f, 0x63,
|
||||||
|
0x6f, 0x6e, 0x66, 0x69, 0x67, 0x00, 0x00, 0x01, 0x63, 0x00, 0x00, 0x05,
|
||||||
|
0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x06, 0x73, 0x79, 0x6d, 0x62,
|
||||||
|
0x6f, 0x6c, 0x00, 0x00, 0x0a, 0x65, 0x78, 0x74, 0x65, 0x6e, 0x73, 0x69,
|
||||||
|
0x6f, 0x6e, 0x73, 0x00, 0x00, 0x03, 0x6c, 0x73, 0x70, 0x00, 0x00, 0x03,
|
||||||
|
0x63, 0x70, 0x70, 0x00, 0x00, 0x01, 0x68, 0x00, 0x00, 0x03, 0x63, 0x73,
|
||||||
|
0x73, 0x00, 0x00, 0x04, 0x66, 0x69, 0x73, 0x68, 0x00, 0x00, 0x02, 0x67,
|
||||||
|
0x6f, 0x00, 0x00, 0x05, 0x67, 0x6f, 0x6d, 0x6f, 0x64, 0x00, 0x00, 0x07,
|
||||||
|
0x68, 0x61, 0x73, 0x6b, 0x65, 0x6c, 0x6c, 0x00, 0x00, 0x04, 0x68, 0x74,
|
||||||
|
0x6d, 0x6c, 0x00, 0x00, 0x0a, 0x6a, 0x61, 0x76, 0x61, 0x73, 0x63, 0x72,
|
||||||
|
0x69, 0x70, 0x74, 0x00, 0x00, 0x0a, 0x74, 0x79, 0x70, 0x65, 0x73, 0x63,
|
||||||
|
0x72, 0x69, 0x70, 0x74, 0x00, 0x00, 0x04, 0x6a, 0x73, 0x6f, 0x6e, 0x00,
|
||||||
|
0x00, 0x05, 0x6a, 0x73, 0x6f, 0x6e, 0x63, 0x00, 0x00, 0x03, 0x65, 0x72,
|
||||||
|
0x62, 0x00, 0x00, 0x03, 0x6c, 0x75, 0x61, 0x00, 0x00, 0x06, 0x70, 0x79,
|
||||||
|
0x74, 0x68, 0x6f, 0x6e, 0x00, 0x00, 0x04, 0x72, 0x75, 0x73, 0x74, 0x00,
|
||||||
|
0x00, 0x03, 0x70, 0x68, 0x70, 0x00, 0x00, 0x08, 0x6d, 0x61, 0x72, 0x6b,
|
||||||
|
0x64, 0x6f, 0x77, 0x6e, 0x00, 0x00, 0x05, 0x6e, 0x67, 0x69, 0x6e, 0x78,
|
||||||
|
0x00, 0x00, 0x04, 0x74, 0x6f, 0x6d, 0x6c, 0x00, 0x00, 0x04, 0x79, 0x61,
|
||||||
|
0x6d, 0x6c, 0x00, 0x00, 0x03, 0x73, 0x71, 0x6c, 0x00, 0x00, 0x04, 0x6d,
|
||||||
|
0x61, 0x6b, 0x65, 0x00, 0x00, 0x08, 0x67, 0x64, 0x73, 0x63, 0x72, 0x69,
|
||||||
|
0x70, 0x74, 0x00, 0x00, 0x03, 0x6d, 0x61, 0x6e, 0x00, 0x00, 0x04, 0x64,
|
||||||
|
0x69, 0x66, 0x66, 0x00, 0x00, 0x0d, 0x67, 0x69, 0x74, 0x61, 0x74, 0x74,
|
||||||
|
0x72, 0x69, 0x62, 0x75, 0x74, 0x65, 0x73, 0x00, 0x00, 0x09, 0x67, 0x69,
|
||||||
|
0x74, 0x69, 0x67, 0x6e, 0x6f, 0x72, 0x65, 0x00, 0x00, 0x05, 0x72, 0x65,
|
||||||
|
0x67, 0x65, 0x78, 0x00, 0x00, 0x03, 0x69, 0x6e, 0x69, 0x00, 0x00, 0x04,
|
||||||
|
0x72, 0x75, 0x62, 0x79, 0x00, 0x00, 0x09, 0x66, 0x69, 0x6c, 0x65, 0x6e,
|
||||||
|
0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, 0x04, 0x62, 0x61, 0x73, 0x68, 0x00,
|
||||||
|
0x00, 0x0a, 0x40, 0x6c, 0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x73,
|
||||||
|
0x00, 0x00, 0x07, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x00, 0x00,
|
||||||
|
0x02, 0x66, 0x67, 0x00, 0x00, 0x07, 0x73, 0x68, 0x65, 0x62, 0x61, 0x6e,
|
||||||
|
0x67, 0x00, 0x00, 0x05, 0x65, 0x72, 0x72, 0x6f, 0x72, 0x00, 0x00, 0x07,
|
||||||
|
0x63, 0x6f, 0x6d, 0x6d, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x06, 0x69, 0x74,
|
||||||
|
0x61, 0x6c, 0x69, 0x63, 0x00, 0x00, 0x06, 0x73, 0x74, 0x72, 0x69, 0x6e,
|
||||||
|
0x67, 0x00, 0x00, 0x06, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x00, 0x00,
|
||||||
|
0x0d, 0x69, 0x6e, 0x74, 0x65, 0x72, 0x70, 0x6f, 0x6c, 0x61, 0x74, 0x69,
|
||||||
|
0x6f, 0x6e, 0x00, 0x00, 0x06, 0x72, 0x65, 0x67, 0x65, 0x78, 0x70, 0x00,
|
||||||
|
0x00, 0x06, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x00, 0x04, 0x74,
|
||||||
|
0x72, 0x75, 0x65, 0x00, 0x00, 0x05, 0x66, 0x61, 0x6c, 0x73, 0x65, 0x00,
|
||||||
|
0x00, 0x04, 0x63, 0x68, 0x61, 0x72, 0x00, 0x00, 0x07, 0x6b, 0x65, 0x79,
|
||||||
|
0x77, 0x6f, 0x72, 0x64, 0x00, 0x00, 0x0f, 0x6b, 0x65, 0x79, 0x77, 0x6f,
|
||||||
|
0x72, 0x64, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x00, 0x00,
|
||||||
|
0x08, 0x6f, 0x70, 0x65, 0x72, 0x61, 0x74, 0x6f, 0x72, 0x00, 0x00, 0x08,
|
||||||
|
0x66, 0x75, 0x6e, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x04, 0x74,
|
||||||
|
0x79, 0x70, 0x65, 0x00, 0x00, 0x08, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x61,
|
||||||
|
0x6e, 0x74, 0x00, 0x00, 0x10, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c,
|
||||||
|
0x65, 0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x00, 0x00, 0x0e,
|
||||||
|
0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x67, 0x6c, 0x6f, 0x62,
|
||||||
|
0x61, 0x6c, 0x00, 0x00, 0x0a, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
|
||||||
|
0x69, 0x6f, 0x6e, 0x00, 0x00, 0x09, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74,
|
||||||
|
0x69, 0x76, 0x65, 0x00, 0x00, 0x05, 0x6c, 0x61, 0x62, 0x65, 0x6c, 0x00,
|
||||||
|
0x00, 0x06, 0x62, 0x72, 0x61, 0x63, 0x65, 0x31, 0x00, 0x00, 0x06, 0x62,
|
||||||
|
0x72, 0x61, 0x63, 0x65, 0x32, 0x00, 0x00, 0x06, 0x62, 0x72, 0x61, 0x63,
|
||||||
|
0x65, 0x33, 0x00, 0x00, 0x06, 0x62, 0x72, 0x61, 0x63, 0x65, 0x34, 0x00,
|
||||||
|
0x00, 0x06, 0x62, 0x72, 0x61, 0x63, 0x65, 0x35, 0x00, 0x00, 0x06, 0x40,
|
||||||
|
0x74, 0x68, 0x65, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x61, 0x75, 0x74, 0x6f,
|
||||||
|
0x5f, 0x75, 0x6e, 0x69, 0x78, 0x00, 0x00, 0x0d, 0x40, 0x6c, 0x69, 0x6e,
|
||||||
|
0x65, 0x5f, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x00, 0x00, 0x0d,
|
||||||
|
0x40, 0x6b, 0x65, 0x79, 0x5f, 0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72,
|
||||||
|
0x73, 0x00, 0x00, 0x0a, 0x40, 0x6b, 0x65, 0x79, 0x5f, 0x62, 0x69, 0x6e,
|
||||||
|
0x64, 0x73, 0x00, 0x00, 0x0d, 0x40, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69,
|
||||||
|
0x67, 0x68, 0x74, 0x65, 0x72, 0x73, 0x00, 0x00, 0x0a, 0x40, 0x62, 0x5f,
|
||||||
|
0x73, 0x74, 0x61, 0x72, 0x74, 0x75, 0x70, 0x00, 0x00, 0x0b, 0x40, 0x62,
|
||||||
|
0x5f, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x00, 0x00, 0x00,
|
||||||
|
0x01, 0x10, 0x00, 0x01, 0x00, 0x08, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x42, 0x10, 0x02, 0x00, 0x10, 0x03, 0x01, 0x10, 0x04, 0x02, 0x10,
|
||||||
|
0x05, 0x03, 0x10, 0x06, 0x04, 0x2d, 0x01, 0x05, 0x05, 0x10, 0x02, 0x06,
|
||||||
|
0x10, 0x03, 0x07, 0x10, 0x04, 0x08, 0x2d, 0x01, 0x09, 0x03, 0x63, 0x01,
|
||||||
|
0x58, 0x02, 0x00, 0x5f, 0x01, 0x0a, 0x63, 0x01, 0x58, 0x02, 0x01, 0x5f,
|
||||||
|
0x01, 0x0b, 0x63, 0x01, 0x58, 0x02, 0x02, 0x5f, 0x01, 0x0c, 0x63, 0x01,
|
||||||
|
0x58, 0x02, 0x03, 0x5f, 0x01, 0x0d, 0x38, 0x01, 0x00, 0x00, 0x00, 0x0e,
|
||||||
|
0x00, 0x05, 0x74, 0x68, 0x65, 0x6d, 0x65, 0x00, 0x00, 0x0a, 0x6c, 0x73,
|
||||||
|
0x70, 0x5f, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x00, 0x00, 0x09, 0x6c,
|
||||||
|
0x61, 0x6e, 0x67, 0x75, 0x61, 0x67, 0x65, 0x73, 0x00, 0x00, 0x0c, 0x6c,
|
||||||
|
0x69, 0x6e, 0x65, 0x5f, 0x65, 0x6e, 0x64, 0x69, 0x6e, 0x67, 0x73, 0x00,
|
||||||
|
0x00, 0x0c, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x65,
|
||||||
|
0x72, 0x73, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63,
|
||||||
|
0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x09, 0x62, 0x5f, 0x73,
|
||||||
|
0x74, 0x61, 0x72, 0x74, 0x75, 0x70, 0x00, 0x00, 0x0a, 0x62, 0x5f, 0x73,
|
||||||
|
0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e, 0x00, 0x00, 0x12, 0x62, 0x5f,
|
||||||
|
0x65, 0x78, 0x74, 0x72, 0x61, 0x5f, 0x68, 0x69, 0x67, 0x68, 0x6c, 0x69,
|
||||||
|
0x67, 0x68, 0x74, 0x73, 0x00, 0x00, 0x0b, 0x61, 0x74, 0x74, 0x72, 0x5f,
|
||||||
|
0x72, 0x65, 0x61, 0x64, 0x65, 0x72, 0x00, 0x00, 0x07, 0x73, 0x74, 0x61,
|
||||||
|
0x72, 0x74, 0x75, 0x70, 0x00, 0x00, 0x08, 0x73, 0x68, 0x75, 0x74, 0x64,
|
||||||
|
0x6f, 0x77, 0x6e, 0x00, 0x00, 0x10, 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f,
|
||||||
|
0x68, 0x69, 0x67, 0x68, 0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x00,
|
||||||
|
0x04, 0x62, 0x69, 0x6e, 0x64, 0x00, 0x00, 0x00, 0x00, 0x2d, 0x00, 0x02,
|
||||||
|
0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x34, 0x00,
|
||||||
|
0x00, 0x01, 0x01, 0x02, 0x01, 0x1a, 0x02, 0x00, 0x38, 0x02, 0x00, 0x00,
|
||||||
|
0x00, 0x01, 0x00, 0x0a, 0x40, 0x62, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74,
|
||||||
|
0x75, 0x70, 0x00, 0x00, 0x00, 0x00, 0x2e, 0x00, 0x02, 0x00, 0x03, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x34, 0x00, 0x00, 0x01, 0x01,
|
||||||
|
0x02, 0x01, 0x1a, 0x02, 0x00, 0x38, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00,
|
||||||
|
0x0b, 0x40, 0x62, 0x5f, 0x73, 0x68, 0x75, 0x74, 0x64, 0x6f, 0x77, 0x6e,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x36, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x0c, 0x34, 0x00, 0x00, 0x01, 0x01, 0x02, 0x01,
|
||||||
|
0x1a, 0x02, 0x00, 0x38, 0x02, 0x00, 0x00, 0x00, 0x01, 0x00, 0x13, 0x40,
|
||||||
|
0x62, 0x5f, 0x65, 0x78, 0x74, 0x72, 0x61, 0x5f, 0x68, 0x69, 0x67, 0x68,
|
||||||
|
0x6c, 0x69, 0x67, 0x68, 0x74, 0x73, 0x00, 0x00, 0x00, 0x01, 0x43, 0x00,
|
||||||
|
0x07, 0x00, 0x0a, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0xc1, 0x34,
|
||||||
|
0x04, 0x40, 0x01, 0x25, 0x00, 0x06, 0x25, 0x00, 0x05, 0x25, 0x00, 0x04,
|
||||||
|
0x11, 0x02, 0x11, 0x03, 0x01, 0x07, 0x01, 0x1d, 0x08, 0x00, 0x2f, 0x07,
|
||||||
|
0x01, 0x01, 0x26, 0x07, 0x00, 0x07, 0x01, 0x07, 0x01, 0x48, 0x01, 0x07,
|
||||||
|
0x01, 0x01, 0x07, 0x02, 0x28, 0x07, 0x00, 0x03, 0x25, 0x00, 0x33, 0x12,
|
||||||
|
0x05, 0x1d, 0x07, 0x02, 0x2f, 0x07, 0x03, 0x00, 0x01, 0x06, 0x07, 0x01,
|
||||||
|
0x07, 0x06, 0x10, 0x08, 0x04, 0x57, 0x09, 0x00, 0x30, 0x07, 0x05, 0x01,
|
||||||
|
0x2d, 0x07, 0x06, 0x00, 0x27, 0x07, 0x00, 0x0d, 0x01, 0x07, 0x06, 0x01,
|
||||||
|
0x08, 0x04, 0x30, 0x07, 0x07, 0x00, 0x25, 0x00, 0x02, 0x11, 0x07, 0x25,
|
||||||
|
0x00, 0x5c, 0x2d, 0x07, 0x06, 0x00, 0x27, 0x07, 0x00, 0x22, 0x01, 0x07,
|
||||||
|
0x02, 0x1d, 0x08, 0x00, 0x2f, 0x07, 0x01, 0x01, 0x26, 0x07, 0x00, 0x07,
|
||||||
|
0x01, 0x07, 0x02, 0x48, 0x02, 0x07, 0x01, 0x01, 0x07, 0x01, 0x57, 0x08,
|
||||||
|
0x01, 0x30, 0x07, 0x08, 0x00, 0x25, 0x00, 0x32, 0x01, 0x07, 0x03, 0x1d,
|
||||||
|
0x08, 0x09, 0x2f, 0x07, 0x01, 0x01, 0x27, 0x07, 0x00, 0x22, 0x01, 0x07,
|
||||||
|
0x02, 0x1d, 0x08, 0x00, 0x2f, 0x07, 0x01, 0x01, 0x26, 0x07, 0x00, 0x07,
|
||||||
|
0x01, 0x07, 0x02, 0x48, 0x02, 0x07, 0x01, 0x01, 0x07, 0x01, 0x57, 0x08,
|
||||||
|
0x02, 0x30, 0x07, 0x08, 0x00, 0x25, 0x00, 0x02, 0x11, 0x07, 0x38, 0x07,
|
||||||
|
0x00, 0x00, 0x00, 0x0a, 0x00, 0x05, 0x41, 0x72, 0x72, 0x61, 0x79, 0x00,
|
||||||
|
0x00, 0x05, 0x69, 0x73, 0x5f, 0x61, 0x3f, 0x00, 0x00, 0x06, 0x4f, 0x62,
|
||||||
|
0x6a, 0x65, 0x63, 0x74, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00,
|
||||||
|
0x03, 0x73, 0x65, 0x74, 0x00, 0x00, 0x17, 0x64, 0x65, 0x66, 0x69, 0x6e,
|
||||||
|
0x65, 0x5f, 0x73, 0x69, 0x6e, 0x67, 0x6c, 0x65, 0x74, 0x6f, 0x6e, 0x5f,
|
||||||
|
0x6d, 0x65, 0x74, 0x68, 0x6f, 0x64, 0x00, 0x00, 0x0c, 0x62, 0x6c, 0x6f,
|
||||||
|
0x63, 0x6b, 0x5f, 0x67, 0x69, 0x76, 0x65, 0x6e, 0x3f, 0x00, 0x00, 0x0d,
|
||||||
|
0x69, 0x6e, 0x73, 0x74, 0x61, 0x6e, 0x63, 0x65, 0x5f, 0x65, 0x78, 0x65,
|
||||||
|
0x63, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x06, 0x53,
|
||||||
|
0x74, 0x72, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x3e, 0x00, 0x04,
|
||||||
|
0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x34, 0x04,
|
||||||
|
0x20, 0x01, 0x25, 0x00, 0x03, 0x25, 0x00, 0x02, 0x11, 0x02, 0x21, 0x04,
|
||||||
|
0x05, 0x00, 0x21, 0x05, 0x01, 0x00, 0x01, 0x06, 0x01, 0x01, 0x07, 0x02,
|
||||||
|
0x01, 0x08, 0x03, 0x30, 0x04, 0x00, 0x03, 0x38, 0x04, 0x00, 0x00, 0x00,
|
||||||
|
0x01, 0x00, 0x04, 0x62, 0x69, 0x6e, 0x64, 0x00, 0x00, 0x00, 0x00, 0x2c,
|
||||||
|
0x00, 0x03, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11,
|
||||||
|
0x34, 0x04, 0x00, 0x00, 0x21, 0x03, 0x02, 0x00, 0x57, 0x04, 0x00, 0x30,
|
||||||
|
0x03, 0x00, 0x00, 0x38, 0x03, 0x00, 0x00, 0x00, 0x01, 0x00, 0x04, 0x65,
|
||||||
|
0x61, 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x03, 0x00, 0x08,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x59, 0x34, 0x04, 0x00, 0x00,
|
||||||
|
0x19, 0x03, 0x00, 0x21, 0x04, 0x01, 0x00, 0x01, 0x05, 0x03, 0x01, 0x06,
|
||||||
|
0x04, 0x2f, 0x05, 0x01, 0x01, 0x26, 0x05, 0x00, 0x07, 0x53, 0x05, 0x00,
|
||||||
|
0x2f, 0x03, 0x02, 0x02, 0x19, 0x03, 0x00, 0x21, 0x04, 0x01, 0x00, 0x23,
|
||||||
|
0x03, 0x01, 0x04, 0x01, 0x01, 0x05, 0x03, 0x01, 0x06, 0x04, 0x2f, 0x05,
|
||||||
|
0x01, 0x01, 0x26, 0x05, 0x00, 0x07, 0x47, 0x05, 0x00, 0x2f, 0x03, 0x02,
|
||||||
|
0x02, 0x19, 0x03, 0x00, 0x21, 0x04, 0x01, 0x00, 0x23, 0x03, 0x01, 0x04,
|
||||||
|
0x01, 0x23, 0x03, 0x21, 0x04, 0x04, 0x01, 0x2f, 0x03, 0x03, 0x01, 0x38,
|
||||||
|
0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0d, 0x40, 0x6b, 0x65, 0x79, 0x5f,
|
||||||
|
0x68, 0x61, 0x6e, 0x64, 0x6c, 0x65, 0x72, 0x73, 0x00, 0x00, 0x02, 0x5b,
|
||||||
|
0x5d, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, 0x00, 0x02, 0x3c, 0x3c,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x03, 0x00, 0x05, 0x00, 0x01, 0x00,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x11, 0x34, 0x04, 0x00, 0x00, 0x21, 0x03, 0x02,
|
||||||
|
0x00, 0x57, 0x04, 0x00, 0x30, 0x03, 0x00, 0x00, 0x38, 0x03, 0x00, 0x00,
|
||||||
|
0x00, 0x01, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x8a, 0x00, 0x03, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x59, 0x34, 0x04, 0x00, 0x00, 0x19, 0x03, 0x00, 0x21, 0x04, 0x01, 0x00,
|
||||||
|
0x01, 0x05, 0x03, 0x01, 0x06, 0x04, 0x2f, 0x05, 0x01, 0x01, 0x26, 0x05,
|
||||||
|
0x00, 0x07, 0x53, 0x05, 0x00, 0x2f, 0x03, 0x02, 0x02, 0x19, 0x03, 0x00,
|
||||||
|
0x21, 0x04, 0x01, 0x00, 0x23, 0x03, 0x01, 0x04, 0x01, 0x01, 0x05, 0x03,
|
||||||
|
0x01, 0x06, 0x04, 0x2f, 0x05, 0x01, 0x01, 0x26, 0x05, 0x00, 0x07, 0x47,
|
||||||
|
0x05, 0x00, 0x2f, 0x03, 0x02, 0x02, 0x19, 0x03, 0x00, 0x21, 0x04, 0x01,
|
||||||
|
0x00, 0x23, 0x03, 0x01, 0x04, 0x01, 0x23, 0x03, 0x21, 0x04, 0x03, 0x01,
|
||||||
|
0x2f, 0x03, 0x03, 0x01, 0x38, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a,
|
||||||
|
0x40, 0x6b, 0x65, 0x79, 0x5f, 0x62, 0x69, 0x6e, 0x64, 0x73, 0x00, 0x00,
|
||||||
|
0x02, 0x5b, 0x5d, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, 0x00, 0x02,
|
||||||
|
0x3c, 0x3c, 0x00, 0x4c, 0x56, 0x41, 0x52, 0x00, 0x00, 0x00, 0x72, 0x00,
|
||||||
|
0x00, 0x00, 0x0b, 0x00, 0x05, 0x62, 0x6c, 0x6f, 0x63, 0x6b, 0x00, 0x05,
|
||||||
|
0x6d, 0x6f, 0x64, 0x65, 0x73, 0x00, 0x04, 0x6b, 0x65, 0x79, 0x73, 0x00,
|
||||||
|
0x06, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x03, 0x61, 0x70, 0x70,
|
||||||
|
0x00, 0x03, 0x64, 0x73, 0x6c, 0x00, 0x01, 0x6b, 0x00, 0x03, 0x61, 0x63,
|
||||||
|
0x74, 0x00, 0x03, 0x62, 0x6c, 0x6b, 0x00, 0x04, 0x6d, 0x6f, 0x64, 0x65,
|
||||||
|
0x00, 0x03, 0x6b, 0x65, 0x79, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
|
||||||
|
0x01, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x00,
|
||||||
|
0x06, 0x00, 0x07, 0x00, 0x08, 0x00, 0x09, 0xff, 0xff, 0x00, 0x0a, 0xff,
|
||||||
|
0xff, 0x00, 0x09, 0xff, 0xff, 0x00, 0x0a, 0xff, 0xff, 0x45, 0x4e, 0x44,
|
||||||
|
0x00, 0x00, 0x00, 0x00, 0x08
|
||||||
|
};
|
||||||
|
constexpr unsigned int _tmp___crib_precompiled_mrb_len = 6305;
|
||||||
@@ -26,21 +26,6 @@ const std::unordered_map<std::string, TokenKind> kind_map = {
|
|||||||
#undef ADD
|
#undef ADD
|
||||||
};
|
};
|
||||||
|
|
||||||
constexpr const char tokens_def[] = "module Tokens\n"
|
|
||||||
#define STRINGIFY_HELPER(x) #x
|
|
||||||
#define STRINGIFY(x) STRINGIFY_HELPER(x)
|
|
||||||
#define ADD(name) " " #name " = " STRINGIFY(__COUNTER__) "\n"
|
|
||||||
#include "syntax/tokens.def"
|
|
||||||
#undef ADD
|
|
||||||
#undef STRINGIFY
|
|
||||||
#undef STRINGIFY_HELPER
|
|
||||||
" freeze\n"
|
|
||||||
"end";
|
|
||||||
|
|
||||||
constexpr const char crib_module[] = {
|
|
||||||
#embed "libcrib.rb"
|
|
||||||
, '\0'};
|
|
||||||
|
|
||||||
extern std::array<Highlight, TOKEN_KIND_COUNT> highlights;
|
extern std::array<Highlight, TOKEN_KIND_COUNT> highlights;
|
||||||
|
|
||||||
struct Token {
|
struct Token {
|
||||||
|
|||||||
@@ -102,7 +102,7 @@ struct Language {
|
|||||||
std::string name;
|
std::string name;
|
||||||
std::string lsp_name;
|
std::string lsp_name;
|
||||||
uint32_t color;
|
uint32_t color;
|
||||||
std::string symbol;
|
std::string symbol = " ";
|
||||||
};
|
};
|
||||||
|
|
||||||
struct LSP {
|
struct LSP {
|
||||||
@@ -112,7 +112,6 @@ struct LSP {
|
|||||||
|
|
||||||
extern std::unordered_map<std::string, Language> languages;
|
extern std::unordered_map<std::string, Language> languages;
|
||||||
extern std::unordered_map<std::string, std::string> language_extensions;
|
extern std::unordered_map<std::string, std::string> language_extensions;
|
||||||
extern std::unordered_map<std::string, std::string> language_mimetypes;
|
|
||||||
extern std::unordered_map<std::string, LSP> lsps;
|
extern std::unordered_map<std::string, LSP> lsps;
|
||||||
|
|
||||||
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
#define MAX(a, b) ((a) > (b) ? (a) : (b))
|
||||||
@@ -155,7 +154,6 @@ std::string path_to_file_uri(const std::string &path_str);
|
|||||||
std::string filename_from_path(const std::string &path);
|
std::string filename_from_path(const std::string &path);
|
||||||
std::string get_exe_dir();
|
std::string get_exe_dir();
|
||||||
char *load_file(const char *path, uint32_t *out_len, bool *out_eol);
|
char *load_file(const char *path, uint32_t *out_len, bool *out_eol);
|
||||||
char *detect_file_type(const char *filename);
|
|
||||||
Language language_for_file(const char *filename);
|
Language language_for_file(const char *filename);
|
||||||
|
|
||||||
void copy_to_clipboard(const char *text, size_t len);
|
void copy_to_clipboard(const char *text, size_t len);
|
||||||
|
|||||||
10
src/main.cc
10
src/main.cc
@@ -72,8 +72,6 @@ void input_listener(Bar bar) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
int main(int argc, char *argv[]) {
|
int main(int argc, char *argv[]) {
|
||||||
auto start = std::chrono::high_resolution_clock::now();
|
|
||||||
|
|
||||||
ruby_start();
|
ruby_start();
|
||||||
load_theme();
|
load_theme();
|
||||||
load_languages_info();
|
load_languages_info();
|
||||||
@@ -81,19 +79,11 @@ int main(int argc, char *argv[]) {
|
|||||||
|
|
||||||
Coord screen = start_screen();
|
Coord screen = start_screen();
|
||||||
const char *filename = (argc > 1) ? argv[1] : "";
|
const char *filename = (argc > 1) ? argv[1] : "";
|
||||||
|
|
||||||
uint8_t eol = read_line_endings();
|
uint8_t eol = read_line_endings();
|
||||||
|
|
||||||
Editor *editor =
|
Editor *editor =
|
||||||
new_editor(filename, {0, 0}, {screen.row - 2, screen.col}, eol);
|
new_editor(filename, {0, 0}, {screen.row - 2, screen.col}, eol);
|
||||||
Bar bar(screen);
|
Bar bar(screen);
|
||||||
|
|
||||||
auto end = std::chrono::high_resolution_clock::now();
|
|
||||||
auto ms = std::chrono::duration_cast<std::chrono::milliseconds>(end - start)
|
|
||||||
.count();
|
|
||||||
ruby_log("[LOG] STARTUP_TIME: " + std::to_string(static_cast<long long>(ms)) +
|
|
||||||
"ms");
|
|
||||||
|
|
||||||
if (!editor) {
|
if (!editor) {
|
||||||
end_screen();
|
end_screen();
|
||||||
fprintf(stderr, "Failed to load editor\n");
|
fprintf(stderr, "Failed to load editor\n");
|
||||||
|
|||||||
38
src/ruby_compile.sh
Executable file
38
src/ruby_compile.sh
Executable file
@@ -0,0 +1,38 @@
|
|||||||
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
SCRIPT_DIR="$(cd -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd)"
|
||||||
|
INPUT="$SCRIPT_DIR/../include/syntax/tokens.def"
|
||||||
|
TMP="/tmp/__crib_precompiled.rb"
|
||||||
|
OUTPUT="/tmp/__crib_precompiled.mrb"
|
||||||
|
|
||||||
|
echo "module Tokens" >"$TMP"
|
||||||
|
|
||||||
|
counter=0
|
||||||
|
|
||||||
|
while read -r line; do
|
||||||
|
if [[ $line =~ ADD\(([^\)]+)\) ]]; then
|
||||||
|
name="${BASH_REMATCH[1]}"
|
||||||
|
echo " $name = $counter" >>"$TMP"
|
||||||
|
counter=$((counter + 1))
|
||||||
|
fi
|
||||||
|
done <"$INPUT"
|
||||||
|
|
||||||
|
{
|
||||||
|
echo " freeze"
|
||||||
|
echo "end"
|
||||||
|
echo
|
||||||
|
cat "$SCRIPT_DIR/../include/scripting/libcrib.rb"
|
||||||
|
} >>"$TMP"
|
||||||
|
|
||||||
|
mrbc -o$OUTPUT $TMP
|
||||||
|
|
||||||
|
{
|
||||||
|
echo "#pragma once"
|
||||||
|
xxd -i $OUTPUT | sed 's/^unsigned char /constexpr unsigned char /' |
|
||||||
|
sed 's/^unsigned int /constexpr unsigned int /'
|
||||||
|
} >"$SCRIPT_DIR/../include/scripting/ruby_compiled.h"
|
||||||
|
|
||||||
|
rm $TMP
|
||||||
|
rm $OUTPUT
|
||||||
@@ -1,4 +1,5 @@
|
|||||||
#include "scripting/decl.h"
|
#include "scripting/decl.h"
|
||||||
|
#include "scripting/ruby_compiled.h"
|
||||||
#include "utils/utils.h"
|
#include "utils/utils.h"
|
||||||
|
|
||||||
std::unordered_map<std::string, std::pair<mrb_value, mrb_value>>
|
std::unordered_map<std::string, std::pair<mrb_value, mrb_value>>
|
||||||
@@ -20,7 +21,6 @@ struct R_Language {
|
|||||||
std::string symbol;
|
std::string symbol;
|
||||||
std::vector<std::string> extensions;
|
std::vector<std::string> extensions;
|
||||||
std::vector<std::string> filenames;
|
std::vector<std::string> filenames;
|
||||||
std::vector<std::string> mimetypes;
|
|
||||||
std::string lsp_command; // link to LSP by name
|
std::string lsp_command; // link to LSP by name
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -54,13 +54,14 @@ void ruby_start() {
|
|||||||
}
|
}
|
||||||
candidates.emplace_back(exe_dir / "../config/main.rb");
|
candidates.emplace_back(exe_dir / "../config/main.rb");
|
||||||
candidates.emplace_back(exe_dir / "../config/crib.rb");
|
candidates.emplace_back(exe_dir / "../config/crib.rb");
|
||||||
mrb_load_string(mrb, crib_module);
|
mrb_load_irep(mrb, _tmp___crib_precompiled_mrb);
|
||||||
mrb_load_string(mrb, tokens_def);
|
|
||||||
for (const auto &p : candidates) {
|
for (const auto &p : candidates) {
|
||||||
if (fs::exists(p)) {
|
if (fs::exists(p)) {
|
||||||
FILE *f = fopen(p.string().c_str(), "r");
|
FILE *f = fopen(p.string().c_str(), "r");
|
||||||
if (f) {
|
if (f) {
|
||||||
mrb_load_file(mrb, f);
|
mrb_load_file(mrb, f);
|
||||||
|
if (mrb->exc)
|
||||||
|
exit(1);
|
||||||
fclose(f);
|
fclose(f);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
@@ -76,7 +77,6 @@ void ruby_shutdown() {
|
|||||||
std::lock_guard lock(ruby_mutex);
|
std::lock_guard lock(ruby_mutex);
|
||||||
if (C_module == nullptr)
|
if (C_module == nullptr)
|
||||||
return;
|
return;
|
||||||
C_module = mrb_module_get(mrb, "C");
|
|
||||||
mrb_value mod_val = mrb_obj_value(C_module);
|
mrb_value mod_val = mrb_obj_value(C_module);
|
||||||
mrb_value block = mrb_funcall(mrb, mod_val, "b_shutdown", 0);
|
mrb_value block = mrb_funcall(mrb, mod_val, "b_shutdown", 0);
|
||||||
mrb_funcall(mrb, block, "call", 0);
|
mrb_funcall(mrb, block, "call", 0);
|
||||||
@@ -98,13 +98,6 @@ std::vector<std::string> array_to_vector(mrb_value ary) {
|
|||||||
return result;
|
return result;
|
||||||
}
|
}
|
||||||
|
|
||||||
void ruby_log(std::string msg) {
|
|
||||||
std::lock_guard lock(ruby_mutex);
|
|
||||||
mrb_value str = mrb_str_new(mrb, msg.c_str(), msg.size());
|
|
||||||
mrb_value mod_val = mrb_obj_value(C_module);
|
|
||||||
mrb_funcall(mrb, mod_val, "queue_log", 1, str);
|
|
||||||
}
|
|
||||||
|
|
||||||
void load_custom_highlighters() {
|
void load_custom_highlighters() {
|
||||||
std::lock_guard<std::mutex> lock(ruby_mutex);
|
std::lock_guard<std::mutex> lock(ruby_mutex);
|
||||||
if (!C_module)
|
if (!C_module)
|
||||||
@@ -320,8 +313,6 @@ std::vector<R_Language> read_languages() {
|
|||||||
mrb, val_hash, mrb_symbol_value(mrb_intern_lit(mrb, "extensions")));
|
mrb, val_hash, mrb_symbol_value(mrb_intern_lit(mrb, "extensions")));
|
||||||
mrb_value filenames = mrb_hash_get(
|
mrb_value filenames = mrb_hash_get(
|
||||||
mrb, val_hash, mrb_symbol_value(mrb_intern_lit(mrb, "filenames")));
|
mrb, val_hash, mrb_symbol_value(mrb_intern_lit(mrb, "filenames")));
|
||||||
mrb_value mimetypes = mrb_hash_get(
|
|
||||||
mrb, val_hash, mrb_symbol_value(mrb_intern_lit(mrb, "mimetypes")));
|
|
||||||
mrb_value lsp = mrb_hash_get(mrb, val_hash,
|
mrb_value lsp = mrb_hash_get(mrb, val_hash,
|
||||||
mrb_symbol_value(mrb_intern_lit(mrb, "lsp")));
|
mrb_symbol_value(mrb_intern_lit(mrb, "lsp")));
|
||||||
if (!mrb_nil_p(fg))
|
if (!mrb_nil_p(fg))
|
||||||
@@ -329,8 +320,8 @@ std::vector<R_Language> read_languages() {
|
|||||||
if (!mrb_nil_p(symbol))
|
if (!mrb_nil_p(symbol))
|
||||||
lang.symbol = std::string(RSTRING_PTR(symbol), RSTRING_LEN(symbol));
|
lang.symbol = std::string(RSTRING_PTR(symbol), RSTRING_LEN(symbol));
|
||||||
lang.extensions = array_to_vector(extensions);
|
lang.extensions = array_to_vector(extensions);
|
||||||
|
if (!mrb_nil_p(filenames))
|
||||||
lang.filenames = array_to_vector(filenames);
|
lang.filenames = array_to_vector(filenames);
|
||||||
lang.mimetypes = array_to_vector(mimetypes);
|
|
||||||
if (!mrb_nil_p(lsp))
|
if (!mrb_nil_p(lsp))
|
||||||
lang.lsp_command = std::string(RSTRING_PTR(lsp), RSTRING_LEN(lsp));
|
lang.lsp_command = std::string(RSTRING_PTR(lsp), RSTRING_LEN(lsp));
|
||||||
result.push_back(lang);
|
result.push_back(lang);
|
||||||
@@ -355,8 +346,6 @@ void load_languages_info() {
|
|||||||
// TODO: seperate extensions and filenames
|
// TODO: seperate extensions and filenames
|
||||||
for (auto &filename : lang.filenames)
|
for (auto &filename : lang.filenames)
|
||||||
language_extensions[filename] = lang.name;
|
language_extensions[filename] = lang.name;
|
||||||
for (auto &mimetype : lang.mimetypes)
|
|
||||||
language_mimetypes[mimetype] = lang.name;
|
|
||||||
}
|
}
|
||||||
for (auto &lsp : lsps_t)
|
for (auto &lsp : lsps_t)
|
||||||
lsps[lsp.command] = lsp;
|
lsps[lsp.command] = lsp;
|
||||||
|
|||||||
@@ -2,7 +2,6 @@
|
|||||||
|
|
||||||
std::unordered_map<std::string, Language> languages;
|
std::unordered_map<std::string, Language> languages;
|
||||||
std::unordered_map<std::string, std::string> language_extensions;
|
std::unordered_map<std::string, std::string> language_extensions;
|
||||||
std::unordered_map<std::string, std::string> language_mimetypes;
|
|
||||||
std::unordered_map<std::string, LSP> lsps;
|
std::unordered_map<std::string, LSP> lsps;
|
||||||
|
|
||||||
void log(const char *fmt, ...) {
|
void log(const char *fmt, ...) {
|
||||||
@@ -106,24 +105,6 @@ static std::string file_extension(const char *filename) {
|
|||||||
return ext;
|
return ext;
|
||||||
}
|
}
|
||||||
|
|
||||||
char *detect_file_type(const char *filename) {
|
|
||||||
magic_t magic = magic_open(MAGIC_MIME_TYPE);
|
|
||||||
if (!magic)
|
|
||||||
return nullptr;
|
|
||||||
if (magic_load(magic, nullptr) != 0) {
|
|
||||||
magic_close(magic);
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
const char *type = magic_file(magic, filename);
|
|
||||||
if (!type) {
|
|
||||||
magic_close(magic);
|
|
||||||
return nullptr;
|
|
||||||
}
|
|
||||||
char *result = strdup(type);
|
|
||||||
magic_close(magic);
|
|
||||||
return result;
|
|
||||||
}
|
|
||||||
|
|
||||||
Language language_for_file(const char *filename) {
|
Language language_for_file(const char *filename) {
|
||||||
std::string ext = file_extension(filename);
|
std::string ext = file_extension(filename);
|
||||||
std::string lang_name;
|
std::string lang_name;
|
||||||
@@ -132,14 +113,6 @@ Language language_for_file(const char *filename) {
|
|||||||
if (it != language_extensions.end())
|
if (it != language_extensions.end())
|
||||||
return languages.find(it->second)->second;
|
return languages.find(it->second)->second;
|
||||||
}
|
}
|
||||||
char *mime = detect_file_type(filename);
|
|
||||||
if (mime) {
|
|
||||||
std::string mime_type(mime);
|
|
||||||
free(mime);
|
|
||||||
auto it = language_mimetypes.find(mime_type);
|
|
||||||
if (it != language_mimetypes.end())
|
|
||||||
return languages.find(it->second)->second;
|
|
||||||
}
|
|
||||||
return Language{};
|
return Language{};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user