diff --git a/binding-mruby/audio-binding.cpp b/binding-mruby/audio-binding.cpp index 5e1acbf..60cff27 100644 --- a/binding-mruby/audio-binding.cpp +++ b/binding-mruby/audio-binding.cpp @@ -27,7 +27,7 @@ #define DEF_PLAY_STOP(entity) \ MRB_FUNCTION(audio_##entity##Play) \ { \ - char *filename; \ + return mrb_nil_value();char *filename; \ mrb_int volume = 100; \ mrb_int pitch = 100; \ mrb_get_args(mrb, "z|ii", &filename, &volume, &pitch); \ @@ -36,7 +36,7 @@ } \ MRB_FUNCTION(audio_##entity##Stop) \ { \ - MRB_FUN_UNUSED_PARAM; \ + return mrb_nil_value();MRB_FUN_UNUSED_PARAM; \ shState->audio().entity##Stop(); \ return mrb_nil_value(); \ } @@ -44,7 +44,7 @@ #define DEF_FADE(entity) \ MRB_FUNCTION(audio_##entity##Fade) \ { \ - mrb_int time; \ + return mrb_nil_value();mrb_int time; \ mrb_get_args(mrb, "i", &time); \ shState->audio().entity##Fade(time); \ return mrb_nil_value(); \ diff --git a/binding-mruby/binding-mruby.cpp b/binding-mruby/binding-mruby.cpp index a713d73..5b824df 100644 --- a/binding-mruby/binding-mruby.cpp +++ b/binding-mruby/binding-mruby.cpp @@ -48,6 +48,13 @@ #include "binding-util.h" #include "binding-types.h" #include "mrb-ext/marshal.h" +#include "mrb-ext/file-helper.h" + +#ifdef __EMSCRIPTEN__ +#include +#endif + +#include static void mrbBindingExecute(); static void mrbBindingTerminate(); @@ -65,7 +72,6 @@ ScriptBinding *scriptBinding = &scriptBindingImpl; void fileBindingInit(mrb_state *); void timeBindingInit(mrb_state *); -void marshalBindingInit(mrb_state *); void kernelBindingInit(mrb_state *); void tableBindingInit(mrb_state *); @@ -82,9 +88,6 @@ void inputBindingInit(mrb_state *); void audioBindingInit(mrb_state *); void graphicsBindingInit(mrb_state *); -/* From module_rpg.c */ -extern const uint8_t mrbModuleRPG[]; - static void mrbBindingInit(mrb_state *mrb) { int arena = mrb_gc_arena_save(mrb); @@ -92,7 +95,6 @@ static void mrbBindingInit(mrb_state *mrb) /* Init standard classes */ fileBindingInit(mrb); timeBindingInit(mrb); - marshalBindingInit(mrb); kernelBindingInit(mrb); /* Init RGSS classes */ @@ -111,13 +113,10 @@ static void mrbBindingInit(mrb_state *mrb) audioBindingInit(mrb); graphicsBindingInit(mrb); - /* Load RPG module */ - mrb_load_irep(mrb, mrbModuleRPG); - /* Load global constants */ mrb_define_global_const(mrb, "MKXP", mrb_true_value()); - mrb_value debug = rb_bool_new(shState->config().editor.debug); + mrb_value debug = mrb_bool_value(shState->config().editor.debug); if (rgssVer == 1) mrb_define_global_const(mrb, "DEBUG", debug); else if (rgssVer >= 2) @@ -254,6 +253,14 @@ runMrbFile(mrb_state *mrb, const char *filename) fclose(f); } +mrb_state * static_mrb; +mrb_state * static_scriptmrb; +mrbc_context * static_ctx; + +void main_update_loop() { + mrb_load_nstring_cxt(static_mrb, "main_update_loop", 16, NULL); +} + static void runRMXPScripts(mrb_state *mrb, mrbc_context *ctx) { @@ -273,24 +280,23 @@ runRMXPScripts(mrb_state *mrb, mrbc_context *ctx) /* We use a secondary util state to unmarshal the scripts */ mrb_state *scriptMrb = mrb_open(); - SDL_RWops ops; - - shState->fileSystem().openReadRaw(ops, scriptPack.c_str()); mrb_value scriptArray = mrb_nil_value(); std::string readError; try { - scriptArray = marshalLoadInt(scriptMrb, &ops); + SDL_rw_file_helper fileHelper; + fileHelper.filename = scriptPack.c_str(); + char * contents = fileHelper.read(); + mrb_value rawdata = mrb_str_new_static(mrb, contents, fileHelper.length); + scriptArray = mrb_marshal_load(mrb, rawdata); } catch (const Exception &e) { readError = std::string(": ") + e.msg; } - SDL_RWclose(&ops); - if (!mrb_array_p(scriptArray)) { showError(std::string("Failed to read script data") + readError); @@ -298,7 +304,7 @@ runRMXPScripts(mrb_state *mrb, mrbc_context *ctx) return; } - int scriptCount = mrb_ary_len(scriptMrb, scriptArray); + int scriptCount = RARRAY_LEN(scriptArray); std::string decodeBuffer; decodeBuffer.resize(0x1000); @@ -357,11 +363,28 @@ runRMXPScripts(mrb_state *mrb, mrbc_context *ctx) mrb_gc_arena_restore(mrb, ai); - if (mrb->exc) + if (mrb->exc) { + printf("%s - err\n", ctx->filename); + return; + } + } + static_mrb = mrb; + static_scriptmrb = scriptMrb; + +#ifdef __EMSCRIPTEN__ + /* Use loop for emscripten */ + main_update_loop(); + checkException(static_mrb); + emscripten_set_main_loop(main_update_loop, 0, 0); +#else + while (true) { + main_update_loop(); + SDL_Delay(3); + if (static_mrb->exc) break; } - mrb_close(scriptMrb); +#endif } static void mrbBindingExecute() @@ -370,29 +393,27 @@ static void mrbBindingExecute() shState->setBindingData(mrb); - MrbData mrbData(mrb); - mrb->ud = &mrbData; + MrbData * mrbData = new MrbData(mrb); + mrb->ud = mrbData; mrb_define_module_function(mrb, mrb->kernel_module, "time_op", mkxpTimeOp, MRB_ARGS_OPT(2) | MRB_ARGS_BLOCK()); mrbBindingInit(mrb); - mrbc_context *ctx = mrbc_context_new(mrb); - ctx->capture_errors = 1; + static_ctx = mrbc_context_new(mrb); + static_ctx->capture_errors = 1; const Config &conf = shState->rtData().config; const std::string &customScript = conf.customScript; -// const std::string &mrbFile = conf.mrbFile; (void) runMrbFile; // FIXME mrbFile support on ice for now if (!customScript.empty()) - runCustomScript(mrb, ctx, customScript.c_str()); -// else if (!mrbFile.empty()) -// runMrbFile(mrb, mrbFile.c_str()); + runCustomScript(mrb, static_ctx, customScript.c_str()); else - runRMXPScripts(mrb, ctx); + runRMXPScripts(mrb, static_ctx); +#ifndef __EMSCRIPTEN__ checkException(mrb); shState->rtData().rqTermAck.set(); @@ -400,6 +421,7 @@ static void mrbBindingExecute() mrbc_context_free(mrb, ctx); mrb_close(mrb); +#endif } static void mrbBindingTerminate() diff --git a/binding-mruby/binding-util.cpp b/binding-mruby/binding-util.cpp index c062eec..1663d22 100644 --- a/binding-mruby/binding-util.cpp +++ b/binding-mruby/binding-util.cpp @@ -71,8 +71,7 @@ static const MrbExcData excData[] = { Shutdown, "SystemExit" }, { PHYSFS, "PHYSFSError" }, { SDL, "SDLError" }, - { MKXP, "MKXPError" }, - { IO, "IOError" } + { MKXP, "MKXPError" } }; static elementsN(excData); @@ -118,6 +117,7 @@ MrbData::MrbData(mrb_state *mrb) exc[TypeError] = mrb_class_get(mrb, "TypeError"); exc[ArgumentError] = mrb_class_get(mrb, "ArgumentError"); + exc[IOError] = mrb_class_get(mrb, "IOError"); for (size_t i = 0; i < symDataN; ++i) symbols[symData[i].ind] = mrb_intern_cstr(mrb, symData[i].str); @@ -134,6 +134,7 @@ static const MrbException excToMrbExc[] = TypeError, ArgumentError, + IOError, PHYSFS, /* PHYSFSError */ SDL, /* SDLError */ diff --git a/binding-mruby/binding-util.h b/binding-mruby/binding-util.h index b20427f..9abcbc2 100644 --- a/binding-mruby/binding-util.h +++ b/binding-mruby/binding-util.h @@ -28,6 +28,7 @@ #include #include #include +#include #include @@ -90,6 +91,7 @@ enum MrbException TypeError, ArgumentError, + IOError, MrbExceptionsMax }; @@ -352,11 +354,13 @@ inline mrb_value objectLoad(mrb_state *mrb, mrb_value self, const mrb_data_type &type) { RClass *klass = mrb_class_ptr(self); - char *data; - int data_len; - mrb_get_args(mrb, "s", &data, &data_len); - C *c = C::deserialize(data, data_len); + mrb_value data; + mrb_get_args(mrb, "S", &data); + + int data_len = mrb_string_value_len(mrb, data); + + C *c = C::deserialize(RSTRING_PTR(data), data_len); RData *obj = mrb_data_object_alloc(mrb, klass, c, &type); mrb_value obj_value = mrb_obj_value(obj); diff --git a/binding-mruby/bitmap-binding.cpp b/binding-mruby/bitmap-binding.cpp index 74e7429..a1ff693 100644 --- a/binding-mruby/bitmap-binding.cpp +++ b/binding-mruby/bitmap-binding.cpp @@ -27,25 +27,25 @@ #include "binding-util.h" #include "binding-types.h" +#include + DEF_TYPE(Bitmap); MRB_METHOD(bitmapInitialize) { Bitmap *b = 0; - if (mrb->c->ci->argc == 1) - { - char *filename; - mrb_get_args(mrb, "z", &filename); + mrb_value one, two; + int argc = mrb_get_args(mrb, "o|i", &one, &two); - GUARD_EXC( b = new Bitmap(filename); ) + if (argc == 1) + { + const char *fmt = RSTRING_CSTR(mrb, one); + GUARD_EXC( b = new Bitmap(fmt); ) } else { - mrb_int width, height; - mrb_get_args(mrb, "ii", &width, &height); - - GUARD_EXC( b = new Bitmap(width, height); ) + GUARD_EXC( b = new Bitmap(mrb_fixnum(one), mrb_fixnum(two)); ) } setPrivateData(self, b, BitmapType); @@ -149,12 +149,14 @@ MRB_METHOD(bitmapFillRect) mrb_value colorObj; Color *color; - if (mrb->c->ci->argc == 2) - { - mrb_value rectObj; - Rect *rect; + mrb_value one, two, three, four, five; + int argc = mrb_get_args(mrb, "oo|iio", &one, &two, &three, &four, &five); - mrb_get_args(mrb, "oo", &rectObj, &colorObj); + if (argc == 2) + { + mrb_value rectObj = one; + colorObj = two; + Rect *rect; rect = getPrivateDataCheck(mrb, rectObj, RectType); color = getPrivateDataCheck(mrb, colorObj, ColorType); @@ -163,9 +165,11 @@ MRB_METHOD(bitmapFillRect) } else { - mrb_int x, y, width, height; - - mrb_get_args(mrb, "iiiio", &x, &y, &width, &height, &colorObj); + mrb_int x = mrb_fixnum(one), + y = mrb_fixnum(two), + width = mrb_fixnum(three), + height = mrb_fixnum(four); + colorObj = five; color = getPrivateDataCheck(mrb, colorObj, ColorType); diff --git a/binding-mruby/font-binding.cpp b/binding-mruby/font-binding.cpp index 31cfd01..46da209 100644 --- a/binding-mruby/font-binding.cpp +++ b/binding-mruby/font-binding.cpp @@ -49,7 +49,12 @@ MRB_METHOD(fontInitialize) mrb_get_args(mrb, "|zi", &name, &size); - Font *f = new Font(name, size); + Font *f; + + std::vector names; + names.push_back(name); + + f = new Font(&names, size); setPrivateData(self, f, FontType); @@ -86,9 +91,7 @@ MRB_METHOD(fontInitializeCopy) MRB_METHOD(FontGetName) { - Font *f = getPrivateData(mrb, self); - - return mrb_str_new_cstr(mrb, f->getName()); + return mrb_iv_get(mrb, self, mrb_intern_cstr(mrb, "name")); } MRB_METHOD(FontSetName) @@ -98,7 +101,11 @@ MRB_METHOD(FontSetName) mrb_value name; mrb_get_args(mrb, "S", &name); - f->setName(RSTRING_PTR(name)); + std::vector names; + names.push_back(RSTRING_PTR(name)); + + f->setName(names); + mrb_iv_set(mrb, self, mrb_intern_cstr(mrb, "name"), name); return name; } @@ -135,17 +142,21 @@ DEF_KLASS_PROP(Font, mrb_bool, DefaultItalic, "b", bool) DEF_KLASS_PROP(Font, mrb_bool, DefaultOutline, "b", bool) DEF_KLASS_PROP(Font, mrb_bool, DefaultShadow, "b", bool) -MRB_FUNCTION(FontGetDefaultName) +MRB_METHOD(FontGetDefaultName) { - return mrb_str_new_cstr(mrb, Font::getDefaultName()); + return mrb_iv_get(mrb, self, mrb_intern_cstr(mrb, "default_name")); } -MRB_FUNCTION(FontSetDefaultName) +MRB_METHOD(FontSetDefaultName) { mrb_value nameObj; mrb_get_args(mrb, "S", &nameObj); - Font::setDefaultName(RSTRING_PTR(nameObj)); + std::vector names; + names.push_back(RSTRING_PTR(nameObj)); + + Font::setDefaultName(names, shState->fontState()); + mrb_iv_set(mrb, self, mrb_intern_cstr(mrb, "default_name"), nameObj); return nameObj; } diff --git a/binding-mruby/input-binding.cpp b/binding-mruby/input-binding.cpp index 921ca7f..78c7309 100644 --- a/binding-mruby/input-binding.cpp +++ b/binding-mruby/input-binding.cpp @@ -27,11 +27,13 @@ #include #include +#include "eventthread.h" MRB_FUNCTION(inputUpdate) { MRB_FUN_UNUSED_PARAM; + shState->eThread().process(shState->rtData()); shState->input().update(); return mrb_nil_value(); diff --git a/binding-mruby/module_rpg.c b/binding-mruby/module_rpg.c index 9333f8c..7e0c666 100644 --- a/binding-mruby/module_rpg.c +++ b/binding-mruby/module_rpg.c @@ -5,2467 +5,5 @@ __attribute__((aligned(4))) #elif defined _MSC_VER __declspec(align(4)) #endif -mrbModuleRPG[] = { -0x45,0x54,0x49,0x52,0x30,0x30,0x30,0x33,0x83,0x53,0x00,0x00,0x99,0xde,0x4d,0x41, -0x54,0x5a,0x30,0x30,0x30,0x30,0x49,0x52,0x45,0x50,0x00,0x00,0x95,0x74,0x30,0x30, -0x30,0x30,0x00,0x00,0x00,0x30,0x00,0x01,0x00,0x02,0x00,0x01,0x00,0x00,0x00,0x04, -0x05,0x00,0x80,0x00,0x44,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x4a,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x00, -0x02,0x6b,0x00,0x01,0x00,0x03,0x00,0x17,0x00,0x00,0x00,0x5d,0x05,0x00,0x80,0x00, -0x44,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x05,0x00,0x80,0x00,0x42,0x00,0x00,0x01, -0x93,0x00,0x00,0x01,0x43,0x40,0x80,0x00,0xc5,0x00,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x80,0x80,0x00,0x45,0x01,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0xc0,0x80,0x00,0xc5,0x01,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x81,0x00,0x45,0x02,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x81,0x00,0xc5,0x02,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x80,0x81,0x00,0x45,0x03,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0xc0,0x81,0x00,0xc5,0x03,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x82,0x00,0x45,0x04,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x82,0x00,0xc5,0x04,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x80,0x82,0x00,0x45,0x05,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0xc0,0x82,0x00,0xc5,0x05,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x83,0x00,0x45,0x06,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x83,0x00,0xc5,0x06,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x80,0x83,0x00,0x45,0x07,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0xc0,0x83,0x00,0xc5,0x07,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x84,0x00,0x45,0x08,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x84,0x00,0xc5,0x08,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x80,0x84,0x00,0x45,0x09,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0xc0,0x84,0x00,0xc5,0x09,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x85,0x00,0x45,0x0a,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x85,0x00,0xc5,0x0a,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x80,0x85,0x00,0x45,0x0b,0x80,0x00,0x29,0x00,0x80,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x17,0x00,0x05,0x43,0x61,0x63,0x68,0x65,0x00, -0x00,0x06,0x53,0x70,0x72,0x69,0x74,0x65,0x00,0x00,0x07,0x57,0x65,0x61,0x74,0x68, -0x65,0x72,0x00,0x00,0x03,0x4d,0x61,0x70,0x00,0x00,0x07,0x4d,0x61,0x70,0x49,0x6e, -0x66,0x6f,0x00,0x00,0x05,0x45,0x76,0x65,0x6e,0x74,0x00,0x00,0x0c,0x45,0x76,0x65, -0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x00,0x00,0x09,0x4d,0x6f,0x76,0x65, -0x52,0x6f,0x75,0x74,0x65,0x00,0x00,0x0b,0x4d,0x6f,0x76,0x65,0x43,0x6f,0x6d,0x6d, -0x61,0x6e,0x64,0x00,0x00,0x05,0x41,0x63,0x74,0x6f,0x72,0x00,0x00,0x05,0x43,0x6c, -0x61,0x73,0x73,0x00,0x00,0x05,0x53,0x6b,0x69,0x6c,0x6c,0x00,0x00,0x04,0x49,0x74, -0x65,0x6d,0x00,0x00,0x06,0x57,0x65,0x61,0x70,0x6f,0x6e,0x00,0x00,0x05,0x41,0x72, -0x6d,0x6f,0x72,0x00,0x00,0x05,0x45,0x6e,0x65,0x6d,0x79,0x00,0x00,0x05,0x54,0x72, -0x6f,0x6f,0x70,0x00,0x00,0x05,0x53,0x74,0x61,0x74,0x65,0x00,0x00,0x09,0x41,0x6e, -0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x07,0x54,0x69,0x6c,0x65,0x73,0x65, -0x74,0x00,0x00,0x0b,0x43,0x6f,0x6d,0x6d,0x6f,0x6e,0x45,0x76,0x65,0x6e,0x74,0x00, -0x00,0x06,0x53,0x79,0x73,0x74,0x65,0x6d,0x00,0x00,0x09,0x41,0x75,0x64,0x69,0x6f, -0x46,0x69,0x6c,0x65,0x00,0x00,0x00,0x01,0xd6,0x00,0x01,0x00,0x02,0x00,0x10,0x00, -0x00,0x00,0x44,0x00,0x3f,0x40,0x80,0x00,0x0e,0x00,0x80,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x02,0x00,0x01,0x46,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x04,0x00,0x01,0x46,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x06,0x00,0x01,0x46,0x00,0x81,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x08,0x00,0x01,0x46,0x40,0x81,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x0a,0x00,0x01,0x46,0x80,0x81,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x0c,0x00,0x01,0x46,0xc0,0x81,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x0e,0x00,0x01,0x46,0x00,0x82,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x10,0x00,0x01,0x46,0x40,0x82,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x12,0x00,0x01,0x46,0x80,0x82,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x14,0x00,0x01,0x46,0xc0,0x82,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x16,0x00,0x01,0x46,0x00,0x83,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x18,0x00,0x01,0x46,0x40,0x83,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x1a,0x00,0x01,0x46,0x80,0x83,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x1c,0x00,0x01,0x46,0xc0,0x83,0x00,0x06,0x00,0x80,0x00, -0x47,0x40,0x80,0x00,0xc0,0x1e,0x00,0x01,0x46,0x00,0x84,0x00,0x04,0x08,0x80,0x00, -0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x00,0x06,0x40,0x63, -0x61,0x63,0x68,0x65,0x00,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d, -0x61,0x70,0x00,0x00,0x09,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00, -0x08,0x61,0x75,0x74,0x6f,0x74,0x69,0x6c,0x65,0x00,0x00,0x0a,0x62,0x61,0x74,0x74, -0x6c,0x65,0x62,0x61,0x63,0x6b,0x00,0x00,0x07,0x62,0x61,0x74,0x74,0x6c,0x65,0x72, -0x00,0x00,0x09,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x00,0x00,0x03,0x66, -0x6f,0x67,0x00,0x00,0x08,0x67,0x61,0x6d,0x65,0x6f,0x76,0x65,0x72,0x00,0x00,0x04, -0x69,0x63,0x6f,0x6e,0x00,0x00,0x08,0x70,0x61,0x6e,0x6f,0x72,0x61,0x6d,0x61,0x00, -0x00,0x07,0x70,0x69,0x63,0x74,0x75,0x72,0x65,0x00,0x00,0x07,0x74,0x69,0x6c,0x65, -0x73,0x65,0x74,0x00,0x00,0x05,0x74,0x69,0x74,0x6c,0x65,0x00,0x00,0x0a,0x77,0x69, -0x6e,0x64,0x6f,0x77,0x73,0x6b,0x69,0x6e,0x00,0x00,0x04,0x74,0x69,0x6c,0x65,0x00, -0x00,0x05,0x63,0x6c,0x65,0x61,0x72,0x00,0x00,0x00,0x01,0xae,0x00,0x07,0x00,0x0c, -0x00,0x00,0x00,0x00,0x00,0x4c,0x00,0x00,0x26,0x00,0x10,0x04,0x97,0x00,0x40,0x00, -0x97,0x00,0x40,0x00,0x83,0xff,0xbf,0x01,0x01,0x40,0x80,0x03,0x01,0x80,0x00,0x04, -0xac,0x00,0x80,0x03,0x01,0xc0,0x81,0x02,0x8d,0x00,0x80,0x03,0x01,0x40,0x01,0x04, -0xa0,0x80,0x80,0x03,0x20,0xc0,0x80,0x03,0x18,0x02,0xc0,0x03,0x8d,0x00,0x80,0x03, -0x01,0x40,0x01,0x04,0xa0,0x00,0x81,0x03,0x20,0x40,0x81,0x03,0x19,0x0a,0xc0,0x03, -0x01,0x80,0x80,0x03,0x3d,0x00,0x00,0x04,0xa0,0x80,0x81,0x03,0x19,0x04,0xc0,0x03, -0x91,0x03,0x80,0x03,0x01,0x40,0x01,0x04,0xa0,0x00,0x82,0x03,0x8d,0x00,0x00,0x04, -0x01,0x40,0x81,0x04,0x01,0xc0,0x01,0x05,0x20,0x41,0x02,0x04,0x17,0x04,0x40,0x00, -0x91,0x03,0x80,0x03,0x83,0x0f,0x40,0x04,0x83,0x0f,0xc0,0x04,0x20,0x01,0x82,0x03, -0x8d,0x00,0x00,0x04,0x01,0x40,0x81,0x04,0x01,0xc0,0x01,0x05,0x20,0x41,0x02,0x04, -0x01,0xc0,0x80,0x03,0x83,0xff,0x3f,0x04,0xb2,0x80,0x82,0x03,0x19,0x02,0xc0,0x03, -0x8d,0x00,0x80,0x03,0x01,0x40,0x01,0x04,0xa0,0x00,0x81,0x03,0x97,0x0e,0x40,0x00, -0x01,0x40,0x81,0x03,0x01,0xc0,0x00,0x04,0x37,0xc1,0x01,0x03,0x8d,0x00,0x80,0x03, -0x01,0x80,0x01,0x04,0xa0,0x80,0x80,0x03,0x20,0xc0,0x80,0x03,0x18,0x02,0xc0,0x03, -0x8d,0x00,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0x00,0x81,0x03,0x20,0x40,0x81,0x03, -0x99,0x06,0xc0,0x03,0x8d,0x00,0x80,0x03,0x01,0x40,0x01,0x04,0xa0,0x00,0x81,0x03, -0x20,0xc0,0x82,0x03,0x8d,0x00,0x00,0x04,0x01,0x80,0x81,0x04,0x01,0xc0,0x01,0x05, -0x20,0x41,0x02,0x04,0x8d,0x00,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0x00,0x81,0x03, -0x01,0xc0,0x00,0x04,0xa0,0x00,0x83,0x03,0x8d,0x00,0x80,0x03,0x01,0x80,0x01,0x04, -0xa0,0x00,0x81,0x03,0x29,0x00,0x80,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x0d,0x00,0x01,0x2b,0x00,0x00,0x06,0x40,0x63,0x61,0x63,0x68,0x65,0x00, -0x00,0x08,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x3f,0x00,0x00,0x01,0x21,0x00,0x00, -0x02,0x5b,0x5d,0x00,0x00,0x09,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x64,0x3f,0x00, -0x00,0x02,0x21,0x3d,0x00,0x00,0x06,0x42,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x03, -0x6e,0x65,0x77,0x00,0x00,0x03,0x5b,0x5d,0x3d,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00, -0x05,0x63,0x6c,0x6f,0x6e,0x65,0x00,0x00,0x0a,0x68,0x75,0x65,0x5f,0x63,0x68,0x61, -0x6e,0x67,0x65,0x00,0x00,0x00,0x00,0x5b,0x00,0x04,0x00,0x09,0x00,0x00,0x00,0x00, -0x00,0x07,0x00,0x00,0x26,0x00,0x00,0x04,0x06,0x00,0x00,0x02,0x3d,0x00,0x80,0x02, -0x01,0x40,0x00,0x03,0x01,0x80,0x80,0x03,0xa0,0x01,0x00,0x02,0x29,0x00,0x00,0x02, -0x00,0x00,0x00,0x01,0x00,0x00,0x14,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f, -0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x2f,0x00,0x00,0x00,0x01,0x00, -0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00, -0x56,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x26,0x00,0x00,0x02, -0x06,0x00,0x80,0x01,0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x13,0x47,0x72,0x61,0x70,0x68, -0x69,0x63,0x73,0x2f,0x41,0x75,0x74,0x6f,0x74,0x69,0x6c,0x65,0x73,0x2f,0x00,0x00, -0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00, -0x00,0x00,0x00,0x58,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00, -0x26,0x00,0x00,0x02,0x06,0x00,0x80,0x01,0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02, -0x20,0x01,0x80,0x01,0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x15,0x47, -0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f,0x42,0x61,0x74,0x74,0x6c,0x65,0x62,0x61, -0x63,0x6b,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62, -0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x59,0x00,0x04,0x00,0x09,0x00,0x00, -0x00,0x00,0x00,0x07,0x26,0x00,0x00,0x04,0x06,0x00,0x00,0x02,0x3d,0x00,0x80,0x02, -0x01,0x40,0x00,0x03,0x01,0x80,0x80,0x03,0xa0,0x01,0x00,0x02,0x29,0x00,0x00,0x02, -0x00,0x00,0x00,0x01,0x00,0x00,0x12,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f, -0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c, -0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x5b,0x00, -0x04,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x00,0x26,0x00,0x00,0x04, -0x06,0x00,0x00,0x02,0x3d,0x00,0x80,0x02,0x01,0x40,0x00,0x03,0x01,0x80,0x80,0x03, -0xa0,0x01,0x00,0x02,0x29,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x14,0x47, -0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f,0x43,0x68,0x61,0x72,0x61,0x63,0x74,0x65, -0x72,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69, -0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x55,0x00,0x04,0x00,0x09,0x00,0x00,0x00, -0x00,0x00,0x07,0x00,0x26,0x00,0x00,0x04,0x06,0x00,0x00,0x02,0x3d,0x00,0x80,0x02, -0x01,0x40,0x00,0x03,0x01,0x80,0x80,0x03,0xa0,0x01,0x00,0x02,0x29,0x00,0x00,0x02, -0x00,0x00,0x00,0x01,0x00,0x00,0x0e,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f, -0x46,0x6f,0x67,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f, -0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x56,0x00,0x03,0x00,0x07,0x00, -0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x26,0x00,0x00,0x02,0x06,0x00,0x80,0x01, -0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01,0x29,0x00,0x80,0x01, -0x00,0x00,0x00,0x01,0x00,0x00,0x13,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f, -0x47,0x61,0x6d,0x65,0x6f,0x76,0x65,0x72,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b, -0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x52, -0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x26,0x00,0x00,0x02, -0x06,0x00,0x80,0x01,0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x0f,0x47,0x72,0x61,0x70,0x68, -0x69,0x63,0x73,0x2f,0x49,0x63,0x6f,0x6e,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b, -0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x5a, -0x00,0x04,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x00,0x26,0x00,0x00,0x04, -0x06,0x00,0x00,0x02,0x3d,0x00,0x80,0x02,0x01,0x40,0x00,0x03,0x01,0x80,0x80,0x03, -0xa0,0x01,0x00,0x02,0x29,0x00,0x00,0x02,0x00,0x00,0x00,0x01,0x00,0x00,0x13,0x47, -0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f,0x50,0x61,0x6e,0x6f,0x72,0x61,0x6d,0x61, -0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74, -0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x55,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00, -0x00,0x06,0x00,0x00,0x26,0x00,0x00,0x02,0x06,0x00,0x80,0x01,0x3d,0x00,0x00,0x02, -0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01,0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01, -0x00,0x00,0x12,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f,0x50,0x69,0x63,0x74, -0x75,0x72,0x65,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f, -0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x55,0x00,0x03,0x00,0x07,0x00, -0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x26,0x00,0x00,0x02,0x06,0x00,0x80,0x01, -0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01,0x29,0x00,0x80,0x01, -0x00,0x00,0x00,0x01,0x00,0x00,0x12,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x2f, -0x54,0x69,0x6c,0x65,0x73,0x65,0x74,0x73,0x2f,0x00,0x00,0x00,0x01,0x00,0x0b,0x6c, -0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00,0x53,0x00, -0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x00,0x26,0x00,0x00,0x02, -0x06,0x00,0x80,0x01,0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x10,0x47,0x72,0x61,0x70,0x68, -0x69,0x63,0x73,0x2f,0x54,0x69,0x74,0x6c,0x65,0x73,0x2f,0x00,0x00,0x00,0x01,0x00, -0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x00,0x00, -0x58,0x00,0x03,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x26,0x00,0x00,0x02, -0x06,0x00,0x80,0x01,0x3d,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x20,0x01,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x15,0x47,0x72,0x61,0x70,0x68, -0x69,0x63,0x73,0x2f,0x57,0x69,0x6e,0x64,0x6f,0x77,0x73,0x6b,0x69,0x6e,0x73,0x2f, -0x00,0x00,0x00,0x01,0x00,0x0b,0x6c,0x6f,0x61,0x64,0x5f,0x62,0x69,0x74,0x6d,0x61, -0x70,0x00,0x00,0x00,0x01,0x90,0x00,0x09,0x00,0x0f,0x00,0x00,0x00,0x00,0x00,0x41, -0x26,0x00,0x00,0x06,0x01,0x40,0x80,0x04,0x01,0x80,0x00,0x05,0x01,0xc0,0x80,0x05, -0xb7,0x41,0x82,0x02,0x0d,0x00,0x80,0x04,0x01,0x40,0x01,0x05,0xa0,0x40,0x80,0x04, -0x20,0x80,0x80,0x04,0x18,0x02,0xc0,0x04,0x0d,0x00,0x80,0x04,0x01,0x40,0x01,0x05, -0xa0,0xc0,0x80,0x04,0x20,0x00,0x81,0x04,0x19,0x17,0xc0,0x04,0x91,0x02,0x80,0x04, -0x83,0x0f,0x40,0x05,0x83,0x0f,0xc0,0x05,0x20,0x81,0x81,0x04,0x0d,0x00,0x00,0x05, -0x01,0x40,0x81,0x05,0x01,0x40,0x02,0x06,0x20,0xc1,0x01,0x05,0x01,0x80,0x80,0x04, -0x83,0xbf,0x40,0x05,0xae,0x00,0x82,0x04,0x83,0x03,0x40,0x05,0xa0,0x40,0x82,0x04, -0x83,0x0f,0x40,0x05,0xb0,0x80,0x82,0x04,0x01,0x40,0x02,0x03,0x01,0x80,0x80,0x04, -0x83,0xbf,0x40,0x05,0xae,0x00,0x82,0x04,0x83,0x03,0x40,0x05,0xb1,0xc0,0x82,0x04, -0x83,0x0f,0x40,0x05,0xb0,0x80,0x82,0x04,0x01,0x40,0x82,0x03,0x11,0x06,0x80,0x04, -0x01,0x80,0x01,0x05,0x01,0xc0,0x81,0x05,0x83,0x0f,0x40,0x06,0x83,0x0f,0xc0,0x06, -0x20,0x82,0x81,0x04,0x01,0x40,0x02,0x04,0x0d,0x00,0x80,0x04,0x01,0x40,0x01,0x05, -0xa0,0xc0,0x80,0x04,0x83,0xff,0x3f,0x05,0x83,0xff,0xbf,0x05,0x06,0x00,0x00,0x06, -0x01,0x40,0x80,0x06,0xa0,0x80,0x03,0x06,0x01,0x00,0x82,0x06,0x20,0x42,0x83,0x04, -0x0d,0x00,0x80,0x04,0x01,0x40,0x01,0x05,0xa0,0xc0,0x80,0x04,0x01,0xc0,0x00,0x05, -0xa0,0xc0,0x83,0x04,0x0d,0x00,0x80,0x04,0x01,0x40,0x01,0x05,0xa0,0xc0,0x80,0x04, -0x29,0x00,0x80,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x06,0x40,0x63, -0x61,0x63,0x68,0x65,0x00,0x00,0x08,0x69,0x6e,0x63,0x6c,0x75,0x64,0x65,0x3f,0x00, -0x00,0x01,0x21,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x09,0x64,0x69,0x73,0x70,0x6f, -0x73,0x65,0x64,0x3f,0x00,0x00,0x06,0x42,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x03, -0x6e,0x65,0x77,0x00,0x00,0x03,0x5b,0x5d,0x3d,0x00,0x00,0x01,0x2d,0x00,0x00,0x01, -0x25,0x00,0x00,0x01,0x2a,0x00,0x00,0x01,0x2f,0x00,0x00,0x04,0x52,0x65,0x63,0x74, -0x00,0x00,0x03,0x62,0x6c,0x74,0x00,0x00,0x07,0x74,0x69,0x6c,0x65,0x73,0x65,0x74, -0x00,0x00,0x0a,0x68,0x75,0x65,0x5f,0x63,0x68,0x61,0x6e,0x67,0x65,0x00,0x00,0x00, -0x00,0x48,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x06,0x26,0x00,0x00,0x00, -0x3f,0x80,0x00,0x01,0x0e,0x00,0x00,0x01,0x91,0x00,0x00,0x01,0x20,0x80,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x06,0x40,0x63, -0x61,0x63,0x68,0x65,0x00,0x00,0x02,0x47,0x43,0x00,0x00,0x05,0x73,0x74,0x61,0x72, -0x74,0x00,0x00,0x00,0x02,0xa7,0x00,0x01,0x00,0x03,0x00,0x17,0x00,0x00,0x00,0x4b, -0x37,0x40,0x80,0x00,0x10,0x00,0x80,0x00,0x3f,0x40,0x80,0x00,0x90,0x00,0x80,0x00, -0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x80,0x80,0x00,0x48,0x00,0x80,0x00, -0xc0,0x02,0x00,0x01,0x46,0xc0,0x80,0x00,0x48,0x00,0x80,0x00,0xc0,0x04,0x00,0x01, -0x46,0x00,0x81,0x00,0x48,0x00,0x80,0x00,0xc0,0x06,0x00,0x01,0x46,0x40,0x81,0x00, -0x48,0x00,0x80,0x00,0xc0,0x08,0x00,0x01,0x46,0x80,0x81,0x00,0x48,0x00,0x80,0x00, -0xc0,0x0a,0x00,0x01,0x46,0xc0,0x81,0x00,0x48,0x00,0x80,0x00,0xc0,0x0c,0x00,0x01, -0x46,0x00,0x82,0x00,0x48,0x00,0x80,0x00,0xc0,0x0e,0x00,0x01,0x46,0x40,0x82,0x00, -0x48,0x00,0x80,0x00,0xc0,0x10,0x00,0x01,0x46,0x80,0x82,0x00,0x48,0x00,0x80,0x00, -0xc0,0x12,0x00,0x01,0x46,0xc0,0x82,0x00,0x48,0x00,0x80,0x00,0xc0,0x14,0x00,0x01, -0x46,0x00,0x83,0x00,0x48,0x00,0x80,0x00,0xc0,0x16,0x00,0x01,0x46,0x40,0x83,0x00, -0x48,0x00,0x80,0x00,0xc0,0x18,0x00,0x01,0x46,0x80,0x83,0x00,0x48,0x00,0x80,0x00, -0xc0,0x1a,0x00,0x01,0x46,0xc0,0x83,0x00,0x48,0x00,0x80,0x00,0xc0,0x1c,0x00,0x01, -0x46,0x00,0x84,0x00,0x48,0x00,0x80,0x00,0xc0,0x1e,0x00,0x01,0x46,0x40,0x84,0x00, -0x48,0x00,0x80,0x00,0xc0,0x20,0x00,0x01,0x46,0x80,0x84,0x00,0x48,0x00,0x80,0x00, -0xc0,0x22,0x00,0x01,0x46,0xc0,0x84,0x00,0x48,0x00,0x80,0x00,0xc0,0x24,0x00,0x01, -0x46,0x00,0x85,0x00,0x48,0x00,0x80,0x00,0xc0,0x26,0x00,0x01,0x46,0x40,0x85,0x00, -0x48,0x00,0x80,0x00,0xc0,0x28,0x00,0x01,0x46,0x80,0x85,0x00,0x48,0x00,0x80,0x00, -0xc0,0x2a,0x00,0x01,0x46,0xc0,0x85,0x00,0x48,0x00,0x80,0x00,0xc0,0x2c,0x00,0x01, -0x46,0x00,0x86,0x00,0x04,0x0c,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x19,0x00,0x0d,0x40,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x73,0x00,0x00,0x12,0x40,0x40,0x5f,0x72,0x65,0x66,0x65,0x72,0x65,0x6e, -0x63,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69, -0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x07,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x00, -0x00,0x06,0x77,0x68,0x69,0x74,0x65,0x6e,0x00,0x00,0x06,0x61,0x70,0x70,0x65,0x61, -0x72,0x00,0x00,0x06,0x65,0x73,0x63,0x61,0x70,0x65,0x00,0x00,0x08,0x63,0x6f,0x6c, -0x6c,0x61,0x70,0x73,0x65,0x00,0x00,0x06,0x64,0x61,0x6d,0x61,0x67,0x65,0x00,0x00, -0x09,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0e,0x6c,0x6f,0x6f, -0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0e,0x64,0x69, -0x73,0x70,0x6f,0x73,0x65,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x00,0x00,0x11,0x64, -0x69,0x73,0x70,0x6f,0x73,0x65,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x16,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x5f,0x6c,0x6f,0x6f,0x70,0x5f, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x08,0x62,0x6c,0x69,0x6e, -0x6b,0x5f,0x6f,0x6e,0x00,0x00,0x09,0x62,0x6c,0x69,0x6e,0x6b,0x5f,0x6f,0x66,0x66, -0x00,0x00,0x06,0x62,0x6c,0x69,0x6e,0x6b,0x3f,0x00,0x00,0x07,0x65,0x66,0x66,0x65, -0x63,0x74,0x3f,0x00,0x00,0x06,0x75,0x70,0x64,0x61,0x74,0x65,0x00,0x00,0x10,0x75, -0x70,0x64,0x61,0x74,0x65,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x15,0x75,0x70,0x64,0x61,0x74,0x65,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e, -0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x15,0x61,0x6e,0x69,0x6d,0x61,0x74, -0x69,0x6f,0x6e,0x5f,0x73,0x65,0x74,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00, -0x00,0x18,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x70,0x72,0x6f,0x63, -0x65,0x73,0x73,0x5f,0x74,0x69,0x6d,0x69,0x6e,0x67,0x00,0x00,0x02,0x78,0x3d,0x00, -0x00,0x02,0x79,0x3d,0x00,0x00,0x00,0x00,0xf9,0x00,0x03,0x00,0x06,0x00,0x00,0x00, -0x00,0x00,0x16,0x00,0x26,0x00,0x10,0x00,0x97,0x00,0x40,0x00,0x97,0x00,0x40,0x00, -0x05,0x00,0x80,0x00,0x01,0x40,0x00,0x02,0x05,0x00,0x80,0x02,0xa4,0x00,0x80,0x01, -0x83,0xff,0xbf,0x01,0x0e,0x00,0x80,0x01,0x83,0xff,0xbf,0x01,0x8e,0x00,0x80,0x01, -0x83,0xff,0xbf,0x01,0x0e,0x01,0x80,0x01,0x83,0xff,0xbf,0x01,0x8e,0x01,0x80,0x01, -0x83,0xff,0xbf,0x01,0x0e,0x02,0x80,0x01,0x83,0xff,0xbf,0x01,0x8e,0x02,0x80,0x01, -0x08,0x00,0x80,0x01,0x0e,0x03,0x80,0x01,0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x07,0x00,0x11,0x40,0x5f,0x77,0x68,0x69,0x74,0x65,0x6e,0x5f,0x64, -0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x61,0x70,0x70,0x65, -0x61,0x72,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f, -0x65,0x73,0x63,0x61,0x70,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x13,0x40,0x5f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x64,0x75,0x72, -0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65, -0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x14,0x40,0x5f,0x61,0x6e, -0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x07,0x40,0x5f,0x62,0x6c,0x69,0x6e,0x6b,0x00,0x00,0x00,0x00,0x80,0x00, -0x02,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x0a,0x00,0x00,0x00,0x26,0x00,0x00,0x00, -0x06,0x00,0x00,0x01,0x20,0x00,0x00,0x01,0x06,0x00,0x00,0x01,0x20,0x40,0x00,0x01, -0x06,0x00,0x00,0x01,0x20,0x80,0x00,0x01,0x25,0x00,0x80,0x01,0xa4,0x3f,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x0e,0x64,0x69, -0x73,0x70,0x6f,0x73,0x65,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x00,0x00,0x11,0x64, -0x69,0x73,0x70,0x6f,0x73,0x65,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x16,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x5f,0x6c,0x6f,0x6f,0x70,0x5f, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00,0xf7,0x00,0x02, -0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x19,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01, -0x06,0x00,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x80,0x01,0x06,0x00,0x00,0x01, -0x20,0x40,0x00,0x01,0x03,0x7f,0xc0,0x01,0x03,0x7f,0x40,0x02,0x03,0x7f,0xc0,0x02, -0x83,0x3f,0x40,0x03,0x20,0x82,0x00,0x01,0x03,0x7f,0x40,0x01,0x06,0x00,0x80,0x01, -0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01,0x83,0x07,0x40,0x01,0x0e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x00,0x0b,0x62,0x6c,0x65,0x6e,0x64,0x5f,0x74,0x79,0x70,0x65, -0x3d,0x00,0x00,0x05,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x03,0x73,0x65,0x74,0x00, -0x00,0x08,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x00,0x00,0x11,0x40,0x5f,0x77, -0x68,0x69,0x74,0x65,0x6e,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00, -0x11,0x40,0x5f,0x61,0x70,0x70,0x65,0x61,0x72,0x5f,0x64,0x75,0x72,0x61,0x74,0x69, -0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x65,0x73,0x63,0x61,0x70,0x65,0x5f,0x64,0x75, -0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x13,0x40,0x5f,0x63,0x6f,0x6c,0x6c,0x61, -0x70,0x73,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00, -0xf7,0x00,0x02,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x19,0x00,0x26,0x00,0x00,0x00, -0x83,0xff,0x3f,0x01,0x06,0x00,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x80,0x01, -0x06,0x00,0x00,0x01,0x20,0x40,0x00,0x01,0x83,0xff,0xbf,0x01,0x83,0xff,0x3f,0x02, -0x83,0xff,0xbf,0x02,0x83,0xff,0x3f,0x03,0x20,0x82,0x00,0x01,0x83,0xff,0x3f,0x01, -0x06,0x00,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01,0x83,0x07,0x40,0x01, -0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x0b,0x62,0x6c,0x65,0x6e,0x64,0x5f, -0x74,0x79,0x70,0x65,0x3d,0x00,0x00,0x05,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x03, -0x73,0x65,0x74,0x00,0x00,0x08,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x00,0x00, -0x11,0x40,0x5f,0x61,0x70,0x70,0x65,0x61,0x72,0x5f,0x64,0x75,0x72,0x61,0x74,0x69, -0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x77,0x68,0x69,0x74,0x65,0x6e,0x5f,0x64,0x75, -0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x65,0x73,0x63,0x61,0x70, -0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x13,0x40,0x5f,0x63, -0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x00,0x00,0xf7,0x00,0x02,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x19,0x00, -0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x06,0x00,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0x00,0x80,0x01,0x06,0x00,0x00,0x01,0x20,0x40,0x00,0x01,0x83,0xff,0xbf,0x01, -0x83,0xff,0x3f,0x02,0x83,0xff,0xbf,0x02,0x83,0xff,0x3f,0x03,0x20,0x82,0x00,0x01, -0x03,0x7f,0x40,0x01,0x06,0x00,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01, -0x83,0x0f,0x40,0x01,0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x0b,0x62,0x6c, -0x65,0x6e,0x64,0x5f,0x74,0x79,0x70,0x65,0x3d,0x00,0x00,0x05,0x63,0x6f,0x6c,0x6f, -0x72,0x00,0x00,0x03,0x73,0x65,0x74,0x00,0x00,0x08,0x6f,0x70,0x61,0x63,0x69,0x74, -0x79,0x3d,0x00,0x00,0x11,0x40,0x5f,0x65,0x73,0x63,0x61,0x70,0x65,0x5f,0x64,0x75, -0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x77,0x68,0x69,0x74,0x65, -0x6e,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x61, -0x70,0x70,0x65,0x61,0x72,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00, -0x13,0x40,0x5f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x64,0x75,0x72,0x61, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00,0xf7,0x00,0x02,0x00,0x08,0x00,0x00,0x00, -0x00,0x00,0x19,0x00,0x26,0x00,0x00,0x00,0x03,0x00,0x40,0x01,0x06,0x00,0x80,0x01, -0x01,0x80,0x00,0x02,0xa0,0x00,0x80,0x01,0x06,0x00,0x00,0x01,0x20,0x40,0x00,0x01, -0x03,0x7f,0xc0,0x01,0x83,0x1f,0x40,0x02,0x83,0x1f,0xc0,0x02,0x03,0x7f,0x40,0x03, -0x20,0x82,0x00,0x01,0x03,0x7f,0x40,0x01,0x06,0x00,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0xc0,0x80,0x01,0x83,0x17,0x40,0x01,0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x03,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08, -0x00,0x0b,0x62,0x6c,0x65,0x6e,0x64,0x5f,0x74,0x79,0x70,0x65,0x3d,0x00,0x00,0x05, -0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x03,0x73,0x65,0x74,0x00,0x00,0x08,0x6f,0x70, -0x61,0x63,0x69,0x74,0x79,0x3d,0x00,0x00,0x13,0x40,0x5f,0x63,0x6f,0x6c,0x6c,0x61, -0x70,0x73,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40, -0x5f,0x77,0x68,0x69,0x74,0x65,0x6e,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x11,0x40,0x5f,0x61,0x70,0x70,0x65,0x61,0x72,0x5f,0x64,0x75,0x72,0x61, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x65,0x73,0x63,0x61,0x70,0x65,0x5f, -0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x04,0x4f,0x00,0x06,0x00, -0x0e,0x00,0x00,0x00,0x00,0x00,0xcc,0x00,0x26,0x00,0x00,0x04,0x06,0x00,0x00,0x03, -0x20,0x00,0x00,0x03,0x01,0x40,0x00,0x03,0x11,0x01,0x80,0x03,0xa0,0x40,0x00,0x03, -0x99,0x02,0x40,0x03,0x01,0x40,0x00,0x03,0x20,0xc0,0x00,0x03,0x20,0x00,0x01,0x03, -0x01,0x80,0x01,0x02,0x97,0x01,0x40,0x00,0x01,0x40,0x00,0x03,0x20,0x00,0x01,0x03, -0x01,0x80,0x01,0x02,0x91,0x02,0x00,0x03,0x83,0x4f,0xc0,0x03,0x83,0x17,0x40,0x04, -0x20,0x81,0x01,0x03,0x01,0x80,0x81,0x02,0x3d,0x00,0x00,0x03,0x01,0x40,0x81,0x03, -0x20,0xc0,0x81,0x03,0x01,0x80,0x01,0x04,0xa0,0x00,0x82,0x03,0x83,0x0f,0x40,0x03, -0x01,0x40,0x81,0x03,0x20,0xc0,0x81,0x03,0x01,0x80,0x01,0x04,0xa0,0x40,0x82,0x03, -0x01,0x40,0x01,0x03,0x20,0xc0,0x01,0x03,0x20,0x80,0x02,0x03,0x83,0xff,0xbf,0x03, -0x83,0xff,0x3f,0x04,0x83,0xff,0xbf,0x04,0xa0,0xc1,0x02,0x03,0x01,0x40,0x01,0x03, -0x03,0xff,0xbf,0x03,0x83,0x05,0x40,0x04,0xaf,0x40,0x03,0x04,0x83,0x4f,0xc0,0x04, -0x83,0x11,0x40,0x05,0x01,0x00,0x81,0x05,0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03, -0x01,0x40,0x01,0x03,0x03,0x00,0xc0,0x03,0x83,0x05,0x40,0x04,0xaf,0x40,0x03,0x04, -0x83,0x4f,0xc0,0x04,0x83,0x11,0x40,0x05,0x01,0x00,0x81,0x05,0x03,0x00,0x40,0x06, -0x20,0x03,0x03,0x03,0x01,0x40,0x01,0x03,0x03,0xff,0xbf,0x03,0x83,0x05,0x40,0x04, -0xad,0x80,0x03,0x04,0x83,0x4f,0xc0,0x04,0x83,0x11,0x40,0x05,0x01,0x00,0x81,0x05, -0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x01,0x40,0x01,0x03,0x03,0x00,0xc0,0x03, -0x83,0x05,0x40,0x04,0xad,0x80,0x03,0x04,0x83,0x4f,0xc0,0x04,0x83,0x11,0x40,0x05, -0x01,0x00,0x81,0x05,0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x01,0x40,0x00,0x03, -0x11,0x01,0x80,0x03,0xa0,0x40,0x00,0x03,0x99,0x01,0x40,0x03,0x01,0x40,0x00,0x03, -0x83,0xff,0xbf,0x03,0xb3,0xc0,0x03,0x03,0x19,0x04,0x40,0x03,0x01,0x40,0x01,0x03, -0x20,0xc0,0x01,0x03,0x20,0x80,0x02,0x03,0x83,0x57,0xc0,0x03,0x03,0x7f,0x40,0x04, -0x83,0x47,0xc0,0x04,0xa0,0xc1,0x02,0x03,0x97,0x03,0x40,0x00,0x01,0x40,0x01,0x03, -0x20,0xc0,0x01,0x03,0x20,0x80,0x02,0x03,0x03,0x7f,0xc0,0x03,0x03,0x7f,0x40,0x04, -0x03,0x7f,0xc0,0x04,0xa0,0xc1,0x02,0x03,0x01,0x40,0x01,0x03,0x83,0xff,0xbf,0x03, -0x83,0x05,0x40,0x04,0x83,0x4f,0xc0,0x04,0x83,0x11,0x40,0x05,0x01,0x00,0x81,0x05, -0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x99,0x1d,0x40,0x01,0x83,0x09,0x40,0x03, -0x01,0x40,0x81,0x03,0x20,0xc0,0x81,0x03,0x01,0x80,0x01,0x04,0xa0,0x40,0x82,0x03, -0x01,0x40,0x01,0x03,0x20,0xc0,0x01,0x03,0x20,0x80,0x02,0x03,0x83,0xff,0xbf,0x03, -0x83,0xff,0x3f,0x04,0x83,0xff,0xbf,0x04,0xa0,0xc1,0x02,0x03,0x01,0x40,0x01,0x03, -0x03,0xff,0xbf,0x03,0x03,0xff,0x3f,0x04,0x83,0x4f,0xc0,0x04,0x83,0x09,0x40,0x05, -0xbd,0x00,0x80,0x05,0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x01,0x40,0x01,0x03, -0x03,0x00,0xc0,0x03,0x03,0xff,0x3f,0x04,0x83,0x4f,0xc0,0x04,0x83,0x09,0x40,0x05, -0xbd,0x00,0x80,0x05,0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x01,0x40,0x01,0x03, -0x03,0xff,0xbf,0x03,0x03,0x00,0x40,0x04,0x83,0x4f,0xc0,0x04,0x83,0x09,0x40,0x05, -0xbd,0x00,0x80,0x05,0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x01,0x40,0x01,0x03, -0x03,0x00,0xc0,0x03,0x03,0x00,0x40,0x04,0x83,0x4f,0xc0,0x04,0x83,0x09,0x40,0x05, -0xbd,0x00,0x80,0x05,0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x01,0x40,0x01,0x03, -0x20,0xc0,0x01,0x03,0x20,0x80,0x02,0x03,0x03,0x7f,0xc0,0x03,0x03,0x7f,0x40,0x04, -0x03,0x7f,0xc0,0x04,0xa0,0xc1,0x02,0x03,0x01,0x40,0x01,0x03,0x83,0xff,0xbf,0x03, -0x83,0xff,0x3f,0x04,0x83,0x4f,0xc0,0x04,0x83,0x09,0x40,0x05,0xbd,0x00,0x80,0x05, -0x03,0x00,0x40,0x06,0x20,0x03,0x03,0x03,0x42,0x00,0x00,0x03,0x13,0x08,0x00,0x03, -0x06,0x00,0x80,0x03,0x20,0x40,0x84,0x03,0xa0,0x80,0x01,0x03,0x0e,0x09,0x00,0x03, -0x01,0x40,0x01,0x03,0x0d,0x09,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0xc0,0x84,0x03, -0x83,0x27,0x40,0x03,0x0d,0x09,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0x00,0x85,0x03, -0x83,0x09,0x40,0x03,0x0d,0x09,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0x40,0x85,0x03, -0x06,0x00,0x00,0x03,0x20,0x80,0x05,0x03,0x0d,0x09,0x80,0x03,0x01,0x80,0x01,0x04, -0xa0,0xc0,0x85,0x03,0x06,0x00,0x00,0x03,0x20,0x00,0x06,0x03,0x06,0x00,0x80,0x03, -0x20,0x40,0x86,0x03,0x83,0x00,0x40,0x04,0xb1,0x80,0x86,0x03,0xae,0x40,0x03,0x03, -0x0d,0x09,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0xc0,0x86,0x03,0x83,0xdb,0x45,0x03, -0x0d,0x09,0x80,0x03,0x01,0x80,0x01,0x04,0xa0,0x00,0x87,0x03,0x83,0x13,0x40,0x03, -0x8e,0x0e,0x00,0x03,0x29,0x00,0x00,0x03,0x00,0x00,0x00,0x02,0x00,0x00,0x0b,0x41, -0x72,0x69,0x61,0x6c,0x20,0x42,0x6c,0x61,0x63,0x6b,0x00,0x00,0x08,0x43,0x52,0x49, -0x54,0x49,0x43,0x41,0x4c,0x00,0x00,0x00,0x1e,0x00,0x0e,0x64,0x69,0x73,0x70,0x6f, -0x73,0x65,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x00,0x00,0x05,0x69,0x73,0x5f,0x61, -0x3f,0x00,0x00,0x07,0x4e,0x75,0x6d,0x65,0x72,0x69,0x63,0x00,0x00,0x03,0x61,0x62, -0x73,0x00,0x00,0x04,0x74,0x6f,0x5f,0x73,0x00,0x00,0x06,0x42,0x69,0x74,0x6d,0x61, -0x70,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x04,0x66,0x6f,0x6e,0x74,0x00,0x00, -0x05,0x6e,0x61,0x6d,0x65,0x3d,0x00,0x00,0x05,0x73,0x69,0x7a,0x65,0x3d,0x00,0x00, -0x05,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x03,0x73,0x65,0x74,0x00,0x00,0x09,0x64, -0x72,0x61,0x77,0x5f,0x74,0x65,0x78,0x74,0x00,0x00,0x01,0x2d,0x00,0x00,0x01,0x2b, -0x00,0x00,0x01,0x3c,0x00,0x00,0x06,0x53,0x70,0x72,0x69,0x74,0x65,0x00,0x00,0x08, -0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x00,0x00,0x0f,0x40,0x5f,0x64,0x61,0x6d, -0x61,0x67,0x65,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x00,0x00,0x07,0x62,0x69,0x74, -0x6d,0x61,0x70,0x3d,0x00,0x00,0x03,0x6f,0x78,0x3d,0x00,0x00,0x03,0x6f,0x79,0x3d, -0x00,0x00,0x01,0x78,0x00,0x00,0x02,0x78,0x3d,0x00,0x00,0x01,0x79,0x00,0x00,0x02, -0x6f,0x79,0x00,0x00,0x01,0x2f,0x00,0x00,0x02,0x79,0x3d,0x00,0x00,0x02,0x7a,0x3d, -0x00,0x00,0x11,0x40,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x5f,0x64,0x75,0x72,0x61, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x02,0x5b,0x00,0x09,0x00,0x0e,0x00,0x01,0x00, -0x00,0x00,0x48,0x00,0x26,0x00,0x00,0x04,0x06,0x00,0x80,0x04,0x20,0x00,0x80,0x04, -0x8e,0x00,0x80,0x00,0x8d,0x00,0x80,0x04,0x05,0x00,0x00,0x05,0xb2,0x80,0x80,0x04, -0x19,0x01,0xc0,0x04,0x05,0x00,0x80,0x04,0x29,0x00,0x80,0x04,0x8e,0x01,0x00,0x01, -0x8d,0x00,0x80,0x04,0x20,0x00,0x81,0x04,0x8e,0x02,0x80,0x04,0x8d,0x00,0x80,0x04, -0x20,0x80,0x81,0x04,0x01,0x40,0x02,0x02,0x8d,0x00,0x80,0x04,0x20,0xc0,0x81,0x04, -0x01,0x40,0x82,0x02,0x91,0x04,0x80,0x04,0x13,0x04,0x80,0x04,0x01,0x00,0x01,0x05, -0x01,0x40,0x81,0x05,0x20,0x81,0x82,0x04,0x01,0x40,0x02,0x03,0x8f,0x05,0x80,0x04, -0x01,0x80,0x01,0x05,0xa0,0x00,0x83,0x04,0x99,0x04,0xc0,0x04,0x8f,0x05,0x80,0x04, -0x01,0x80,0x01,0x05,0xa0,0x40,0x83,0x04,0xad,0x80,0x83,0x04,0x8f,0x05,0x00,0x05, -0x01,0x80,0x81,0x05,0x01,0x40,0x02,0x06,0x20,0xc1,0x03,0x05,0x97,0x02,0x40,0x00, -0x03,0x00,0xc0,0x04,0x8f,0x05,0x00,0x05,0x01,0x80,0x81,0x05,0x01,0x40,0x02,0x06, -0x20,0xc1,0x03,0x05,0x37,0x40,0x82,0x04,0x0e,0x08,0x80,0x04,0x8d,0x00,0x80,0x04, -0x20,0x40,0x84,0x04,0x03,0x01,0x40,0x05,0xa0,0x80,0x84,0x04,0x18,0x02,0xc0,0x04, -0x8f,0x09,0x80,0x04,0x01,0x40,0x00,0x05,0xa0,0x00,0x83,0x04,0x20,0x00,0x85,0x04, -0x99,0x06,0xc0,0x04,0x83,0xff,0xbf,0x04,0x03,0x07,0x40,0x05,0x41,0x40,0x82,0x04, -0x40,0x01,0x00,0x05,0x21,0x40,0x85,0x04,0x8f,0x09,0x80,0x04,0x01,0x40,0x00,0x05, -0xa0,0x00,0x83,0x04,0x99,0x00,0xc0,0x04,0x97,0x01,0x40,0x00,0x8f,0x09,0x80,0x04, -0x01,0x40,0x00,0x05,0xa0,0x80,0x85,0x04,0x06,0x00,0x80,0x04,0x20,0xc0,0x85,0x04, -0x29,0x00,0x80,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x18,0x00,0x11,0x64,0x69, -0x73,0x70,0x6f,0x73,0x65,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x0b,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x02, -0x3d,0x3d,0x00,0x00,0x0f,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x5f,0x68,0x69,0x74,0x00,0x00,0x09,0x66,0x72,0x61,0x6d,0x65,0x5f,0x6d,0x61,0x78, -0x00,0x00,0x14,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x64, -0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0e,0x61,0x6e,0x69,0x6d,0x61,0x74, -0x69,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x61,0x6e,0x69,0x6d,0x61, -0x74,0x69,0x6f,0x6e,0x5f,0x68,0x75,0x65,0x00,0x00,0x05,0x43,0x61,0x63,0x68,0x65, -0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x09,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x00,0x00,0x12,0x40,0x40,0x5f,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63, -0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x00,0x00,0x08,0x69,0x6e,0x63,0x6c,0x75,0x64, -0x65,0x3f,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x01,0x2b,0x00,0x00,0x03,0x5b,0x5d, -0x3d,0x00,0x00,0x13,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f, -0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x08,0x70,0x6f,0x73,0x69,0x74,0x69, -0x6f,0x6e,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x0d,0x40,0x40,0x5f,0x61,0x6e,0x69, -0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x00,0x00,0x01,0x21,0x00,0x00,0x04,0x65,0x61, -0x63,0x68,0x00,0x00,0x04,0x70,0x75,0x73,0x68,0x00,0x00,0x10,0x75,0x70,0x64,0x61, -0x74,0x65,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00, -0xb6,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x26,0x00,0x00,0x02, -0x16,0xc0,0x81,0x00,0x42,0x00,0x00,0x01,0x13,0x00,0x00,0x01,0x06,0x00,0x80,0x01, -0x20,0x80,0x80,0x01,0xa0,0x40,0x00,0x01,0x16,0x00,0x02,0x01,0x15,0x80,0x01,0x01, -0x15,0x00,0x82,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01,0x08,0x00,0x00,0x01, -0x15,0x00,0x82,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01,0x8d,0x02,0x00,0x01, -0x15,0x00,0x82,0x01,0xa0,0x80,0x01,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x07,0x00,0x06,0x53,0x70,0x72,0x69,0x74,0x65,0x00,0x00,0x03,0x6e, -0x65,0x77,0x00,0x00,0x08,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x00,0x00,0x07, -0x62,0x69,0x74,0x6d,0x61,0x70,0x3d,0x00,0x00,0x08,0x76,0x69,0x73,0x69,0x62,0x6c, -0x65,0x3d,0x00,0x00,0x13,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x04,0x70,0x75,0x73,0x68,0x00, -0x00,0x00,0x01,0xf0,0x00,0x08,0x00,0x0d,0x00,0x01,0x00,0x00,0x00,0x3a,0x00,0x00, -0x26,0x00,0x00,0x02,0x01,0x40,0x00,0x04,0x8d,0x00,0x80,0x04,0xb2,0x00,0x00,0x04, -0x19,0x01,0x40,0x04,0x05,0x00,0x00,0x04,0x29,0x00,0x00,0x04,0x06,0x00,0x00,0x04, -0x20,0x80,0x00,0x04,0x8e,0x00,0x80,0x00,0x8d,0x00,0x00,0x04,0x05,0x00,0x80,0x04, -0xb2,0x00,0x00,0x04,0x19,0x01,0x40,0x04,0x05,0x00,0x00,0x04,0x29,0x00,0x00,0x04, -0x83,0xff,0x3f,0x04,0x8e,0x01,0x00,0x04,0x8d,0x00,0x00,0x04,0x20,0x00,0x01,0x04, -0x01,0x00,0x82,0x01,0x8d,0x00,0x00,0x04,0x20,0x40,0x01,0x04,0x01,0x00,0x02,0x02, -0x91,0x03,0x00,0x04,0x13,0x03,0x00,0x04,0x01,0xc0,0x80,0x04,0x01,0x00,0x01,0x05, -0x20,0x01,0x02,0x04,0x01,0x00,0x82,0x02,0x8f,0x04,0x00,0x04,0x01,0x40,0x81,0x04, -0xa0,0x80,0x02,0x04,0x99,0x04,0x40,0x04,0x8f,0x04,0x00,0x04,0x01,0x40,0x81,0x04, -0xa0,0xc0,0x02,0x04,0xad,0x00,0x03,0x04,0x8f,0x04,0x80,0x04,0x01,0x40,0x01,0x05, -0x01,0x00,0x82,0x05,0x20,0x41,0x83,0x04,0x97,0x02,0x40,0x00,0x03,0x00,0x40,0x04, -0x8f,0x04,0x80,0x04,0x01,0x40,0x01,0x05,0x01,0x00,0x82,0x05,0x20,0x41,0x83,0x04, -0x37,0x00,0x02,0x04,0x0e,0x07,0x00,0x04,0x83,0xff,0x3f,0x04,0x03,0x07,0xc0,0x04, -0x41,0x00,0x02,0x04,0x40,0x01,0x80,0x04,0x21,0xc0,0x03,0x04,0x06,0x00,0x00,0x04, -0x20,0x00,0x04,0x04,0x29,0x00,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11, -0x00,0x02,0x3d,0x3d,0x00,0x00,0x10,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e, -0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x16,0x64,0x69,0x73,0x70,0x6f,0x73, -0x65,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x16,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74, -0x69,0x6f,0x6e,0x5f,0x69,0x6e,0x64,0x65,0x78,0x00,0x00,0x0e,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x61,0x6e,0x69, -0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x68,0x75,0x65,0x00,0x00,0x05,0x43,0x61,0x63, -0x68,0x65,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x09,0x61,0x6e,0x69,0x6d,0x61, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x12,0x40,0x40,0x5f,0x72,0x65,0x66,0x65,0x72,0x65, -0x6e,0x63,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x00,0x00,0x08,0x69,0x6e,0x63,0x6c, -0x75,0x64,0x65,0x3f,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x01,0x2b,0x00,0x00,0x03, -0x5b,0x5d,0x3d,0x00,0x00,0x18,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69, -0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00, -0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x15,0x75,0x70,0x64,0x61,0x74,0x65,0x5f,0x6c, -0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00, -0x00,0xbb,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x14,0x26,0x00,0x00,0x02, -0x16,0x80,0x81,0x00,0x42,0x00,0x00,0x01,0x13,0x00,0x00,0x01,0x06,0x00,0x80,0x01, -0x20,0x80,0x80,0x01,0xa0,0x40,0x00,0x01,0x16,0xc0,0x01,0x01,0x15,0x40,0x01,0x01, -0x15,0xc0,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01,0x08,0x00,0x00,0x01, -0x15,0xc0,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01,0x8d,0x02,0x00,0x01, -0x15,0xc0,0x81,0x01,0xa0,0x80,0x01,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x07,0x00,0x06,0x53,0x70,0x72,0x69,0x74,0x65,0x00,0x00,0x03,0x6e, -0x65,0x77,0x00,0x00,0x08,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x00,0x00,0x07, -0x62,0x69,0x74,0x6d,0x61,0x70,0x3d,0x00,0x00,0x08,0x76,0x69,0x73,0x69,0x62,0x6c, -0x65,0x3d,0x00,0x00,0x18,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x04, -0x70,0x75,0x73,0x68,0x00,0x00,0x00,0x00,0x9c,0x00,0x02,0x00,0x05,0x00,0x00,0x00, -0x00,0x00,0x11,0x00,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x01,0x05,0x00,0x80,0x01, -0xa0,0x40,0x00,0x01,0x19,0x05,0x40,0x01,0x0d,0x00,0x00,0x01,0x20,0x80,0x00,0x01, -0x20,0xc0,0x00,0x01,0x0d,0x00,0x00,0x01,0x20,0xc0,0x00,0x01,0x05,0x00,0x00,0x01, -0x0e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01,0x97,0x00,0x40,0x00, -0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05, -0x00,0x0f,0x40,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x5f,0x73,0x70,0x72,0x69,0x74, -0x65,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x06,0x62,0x69,0x74,0x6d,0x61,0x70,0x00, -0x00,0x07,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x00,0x00,0x11,0x40,0x5f,0x64,0x61, -0x6d,0x61,0x67,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00, -0x01,0x2e,0x00,0x03,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x2a,0x26,0x00,0x00,0x00, -0x0d,0x00,0x80,0x01,0x05,0x00,0x00,0x02,0xa0,0x40,0x80,0x01,0x99,0x11,0xc0,0x01, -0x0d,0x00,0x80,0x01,0x83,0xff,0x3f,0x02,0xa0,0x80,0x80,0x01,0x01,0xc0,0x00,0x01, -0x05,0x00,0x00,0x02,0xa0,0x40,0x80,0x01,0x19,0x0a,0xc0,0x01,0x8f,0x01,0x80,0x01, -0x01,0x80,0x00,0x02,0x20,0x00,0x01,0x02,0xa0,0x80,0x80,0x01,0xaf,0x40,0x81,0x01, -0x8f,0x01,0x00,0x02,0x01,0x80,0x80,0x02,0x20,0x00,0x81,0x02,0x01,0xc0,0x00,0x03, -0x20,0x81,0x01,0x02,0x8f,0x01,0x80,0x01,0x01,0x80,0x00,0x02,0x20,0x00,0x01,0x02, -0xa0,0x80,0x80,0x01,0x83,0xff,0x3f,0x02,0xb2,0xc0,0x81,0x01,0x99,0x01,0xc0,0x01, -0x01,0x80,0x80,0x01,0x20,0x00,0x81,0x01,0x20,0x00,0x82,0x01,0x0d,0x00,0x80,0x01, -0x40,0x01,0x00,0x02,0x21,0x40,0x82,0x01,0x05,0x00,0x80,0x01,0x0e,0x00,0x80,0x01, -0x05,0x00,0x80,0x01,0x0e,0x05,0x80,0x01,0x97,0x00,0x40,0x00,0x05,0x00,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x13,0x40,0x5f, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65, -0x73,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x12,0x40,0x40, -0x5f,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74, -0x00,0x00,0x06,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x01,0x2d,0x00,0x00,0x03, -0x5b,0x5d,0x3d,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00,0x07,0x64,0x69,0x73,0x70,0x6f, -0x73,0x65,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x0b,0x40,0x5f,0x61,0x6e, -0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00,0x38,0x00,0x01,0x00,0x04, -0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x00,0x26,0x00,0x00,0x02,0x16,0x80,0x80,0x00, -0x15,0x80,0x00,0x01,0x20,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x01,0x00,0x07,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x00,0x00,0x00, -0x01,0x38,0x00,0x03,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x2a,0x26,0x00,0x00,0x00, -0x0d,0x00,0x80,0x01,0x05,0x00,0x00,0x02,0xa0,0x40,0x80,0x01,0x99,0x11,0xc0,0x01, -0x0d,0x00,0x80,0x01,0x83,0xff,0x3f,0x02,0xa0,0x80,0x80,0x01,0x01,0xc0,0x00,0x01, -0x05,0x00,0x00,0x02,0xa0,0x40,0x80,0x01,0x19,0x0a,0xc0,0x01,0x8f,0x01,0x80,0x01, -0x01,0x80,0x00,0x02,0x20,0x00,0x01,0x02,0xa0,0x80,0x80,0x01,0xaf,0x40,0x81,0x01, -0x8f,0x01,0x00,0x02,0x01,0x80,0x80,0x02,0x20,0x00,0x81,0x02,0x01,0xc0,0x00,0x03, -0x20,0x81,0x01,0x02,0x8f,0x01,0x80,0x01,0x01,0x80,0x00,0x02,0x20,0x00,0x01,0x02, -0xa0,0x80,0x80,0x01,0x83,0xff,0x3f,0x02,0xb2,0xc0,0x81,0x01,0x99,0x01,0xc0,0x01, -0x01,0x80,0x80,0x01,0x20,0x00,0x81,0x01,0x20,0x00,0x82,0x01,0x0d,0x00,0x80,0x01, -0x40,0x01,0x00,0x02,0x21,0x40,0x82,0x01,0x05,0x00,0x80,0x01,0x0e,0x00,0x80,0x01, -0x05,0x00,0x80,0x01,0x0e,0x05,0x80,0x01,0x97,0x00,0x40,0x00,0x05,0x00,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x18,0x40,0x5f, -0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73, -0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x02,0x5b,0x5d, -0x00,0x00,0x12,0x40,0x40,0x5f,0x72,0x65,0x66,0x65,0x72,0x65,0x6e,0x63,0x65,0x5f, -0x63,0x6f,0x75,0x6e,0x74,0x00,0x00,0x06,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00, -0x01,0x2d,0x00,0x00,0x03,0x5b,0x5d,0x3d,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00,0x07, -0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00, -0x10,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, -0x6e,0x00,0x00,0x00,0x00,0x38,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x05, -0x26,0x00,0x00,0x02,0x16,0x80,0x80,0x00,0x15,0x80,0x00,0x01,0x20,0x00,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x07,0x64,0x69, -0x73,0x70,0x6f,0x73,0x65,0x00,0x00,0x00,0x00,0x5c,0x00,0x02,0x00,0x03,0x00,0x00, -0x00,0x00,0x00,0x0a,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x01,0x19,0x01,0x40,0x01, -0x05,0x00,0x00,0x01,0x17,0x02,0x40,0x00,0x07,0x00,0x00,0x01,0x0e,0x00,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x02,0x00,0x07,0x40,0x5f,0x62,0x6c,0x69,0x6e,0x6b,0x00,0x00,0x0d, -0x40,0x5f,0x62,0x6c,0x69,0x6e,0x6b,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x00,0x00,0x00, -0x00,0x6e,0x00,0x02,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x0f,0x26,0x00,0x00,0x00, -0x0d,0x00,0x00,0x01,0x19,0x05,0x40,0x01,0x08,0x00,0x00,0x01,0x0e,0x00,0x00,0x01, -0x06,0x00,0x00,0x01,0x20,0x40,0x00,0x01,0x83,0xff,0xbf,0x01,0x83,0xff,0x3f,0x02, -0x83,0xff,0xbf,0x02,0x83,0xff,0x3f,0x03,0x20,0x82,0x00,0x01,0x97,0x00,0x40,0x00, -0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03, -0x00,0x07,0x40,0x5f,0x62,0x6c,0x69,0x6e,0x6b,0x00,0x00,0x05,0x63,0x6f,0x6c,0x6f, -0x72,0x00,0x00,0x03,0x73,0x65,0x74,0x00,0x00,0x00,0x00,0x30,0x00,0x02,0x00,0x03, -0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x00,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x07,0x40,0x5f, -0x62,0x6c,0x69,0x6e,0x6b,0x00,0x00,0x00,0x00,0xff,0x00,0x02,0x00,0x05,0x00,0x00, -0x00,0x00,0x00,0x19,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x01,0x83,0xff,0xbf,0x01, -0xb5,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x0d,0x01,0x00,0x01,0x83,0xff,0xbf,0x01, -0xb5,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x8d,0x01,0x00,0x01,0x83,0xff,0xbf,0x01, -0xb5,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x0d,0x02,0x00,0x01,0x83,0xff,0xbf,0x01, -0xb5,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x8d,0x02,0x00,0x01,0x83,0xff,0xbf,0x01, -0xb5,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x0d,0x03,0x00,0x01,0x83,0xff,0xbf,0x01, -0xb5,0x40,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07, -0x00,0x11,0x40,0x5f,0x77,0x68,0x69,0x74,0x65,0x6e,0x5f,0x64,0x75,0x72,0x61,0x74, -0x69,0x6f,0x6e,0x00,0x00,0x01,0x3e,0x00,0x00,0x11,0x40,0x5f,0x61,0x70,0x70,0x65, -0x61,0x72,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f, -0x65,0x73,0x63,0x61,0x70,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x13,0x40,0x5f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x64,0x75,0x72, -0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x11,0x40,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65, -0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x14,0x40,0x5f,0x61,0x6e, -0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x00,0x05,0x39,0x00,0x03,0x00,0x0a,0x00,0x00,0x00,0x00,0x00,0xdc,0x00, -0x26,0x00,0x00,0x00,0x25,0x00,0x00,0x02,0xa4,0x3f,0x80,0x01,0x0d,0x00,0x80,0x01, -0x83,0xff,0x3f,0x02,0xb5,0x40,0x80,0x01,0x19,0x07,0xc0,0x01,0x0d,0x00,0x80,0x01, -0xaf,0x80,0x80,0x01,0x0e,0x00,0x80,0x01,0x83,0x3f,0xc0,0x01,0x83,0x07,0x40,0x02, -0x0d,0x00,0x80,0x02,0xae,0x80,0x00,0x02,0x83,0x04,0xc0,0x02,0xb0,0xc0,0x00,0x02, -0xae,0x80,0x80,0x01,0x06,0x00,0x00,0x02,0x20,0x00,0x01,0x02,0x01,0xc0,0x80,0x02, -0xa0,0x40,0x01,0x02,0x0d,0x03,0x80,0x01,0x83,0xff,0x3f,0x02,0xb5,0x40,0x80,0x01, -0x99,0x05,0xc0,0x01,0x0d,0x03,0x80,0x01,0xaf,0x80,0x80,0x01,0x0e,0x03,0x80,0x01, -0x83,0x07,0xc0,0x01,0x0d,0x03,0x00,0x02,0xae,0x80,0x80,0x01,0x83,0x07,0x40,0x02, -0xb0,0xc0,0x80,0x01,0x06,0x00,0x00,0x02,0x01,0xc0,0x80,0x02,0xa0,0xc0,0x01,0x02, -0x0d,0x04,0x80,0x01,0x83,0xff,0x3f,0x02,0xb5,0x40,0x80,0x01,0x99,0x06,0xc0,0x01, -0x0d,0x04,0x80,0x01,0xaf,0x80,0x80,0x01,0x0e,0x04,0x80,0x01,0x83,0x7f,0xc0,0x01, -0x83,0x0f,0x40,0x02,0x0d,0x04,0x80,0x02,0xae,0x80,0x00,0x02,0x83,0x04,0xc0,0x02, -0xb0,0xc0,0x00,0x02,0xae,0x80,0x80,0x01,0x06,0x00,0x00,0x02,0x01,0xc0,0x80,0x02, -0xa0,0xc0,0x01,0x02,0x8d,0x04,0x80,0x01,0x83,0xff,0x3f,0x02,0xb5,0x40,0x80,0x01, -0x99,0x06,0xc0,0x01,0x8d,0x04,0x80,0x01,0xaf,0x80,0x80,0x01,0x8e,0x04,0x80,0x01, -0x83,0x7f,0xc0,0x01,0x83,0x17,0x40,0x02,0x8d,0x04,0x80,0x02,0xae,0x80,0x00,0x02, -0x83,0x02,0xc0,0x02,0xb0,0xc0,0x00,0x02,0xae,0x80,0x80,0x01,0x06,0x00,0x00,0x02, -0x01,0xc0,0x80,0x02,0xa0,0xc0,0x01,0x02,0x0d,0x05,0x80,0x01,0x83,0xff,0x3f,0x02, -0xb5,0x40,0x80,0x01,0x19,0x26,0xc0,0x01,0x0d,0x05,0x80,0x01,0xaf,0x80,0x80,0x01, -0x0e,0x05,0x80,0x01,0x0d,0x05,0x80,0x01,0x83,0x12,0x40,0x02,0x03,0x13,0xc0,0x02, -0x41,0x00,0x01,0x02,0x01,0xc0,0x80,0x02,0xa0,0xc0,0x02,0x02,0x98,0x00,0x40,0x02, -0x97,0x03,0x40,0x00,0x0d,0x06,0x00,0x02,0x20,0x40,0x03,0x02,0x2f,0x82,0x00,0x02, -0x0d,0x06,0x80,0x02,0x01,0x00,0x01,0x03,0xa0,0x80,0x83,0x02,0x17,0x15,0x40,0x00, -0x83,0x11,0x40,0x02,0x03,0x12,0xc0,0x02,0x41,0x00,0x01,0x02,0x01,0xc0,0x80,0x02, -0xa0,0xc0,0x02,0x02,0x98,0x00,0x40,0x02,0x97,0x03,0x40,0x00,0x0d,0x06,0x00,0x02, -0x20,0x40,0x03,0x02,0x2f,0x81,0x00,0x02,0x0d,0x06,0x80,0x02,0x01,0x00,0x01,0x03, -0xa0,0x80,0x83,0x02,0x17,0x0e,0x40,0x00,0x83,0x10,0x40,0x02,0x03,0x11,0xc0,0x02, -0x41,0x00,0x01,0x02,0x01,0xc0,0x80,0x02,0xa0,0xc0,0x02,0x02,0x98,0x00,0x40,0x02, -0x97,0x03,0x40,0x00,0x0d,0x06,0x00,0x02,0x20,0x40,0x03,0x02,0x2d,0xc1,0x03,0x02, -0x0d,0x06,0x80,0x02,0x01,0x00,0x01,0x03,0xa0,0x80,0x83,0x02,0x17,0x07,0x40,0x00, -0x83,0x0d,0x40,0x02,0x03,0x10,0xc0,0x02,0x41,0x00,0x01,0x02,0x01,0xc0,0x80,0x02, -0xa0,0xc0,0x02,0x02,0x98,0x00,0x40,0x02,0x97,0x03,0x40,0x00,0x0d,0x06,0x00,0x02, -0x20,0x40,0x03,0x02,0x2d,0xc2,0x03,0x02,0x0d,0x06,0x80,0x02,0x01,0x00,0x01,0x03, -0xa0,0x80,0x83,0x02,0x17,0x00,0x40,0x00,0x83,0x7f,0x40,0x02,0x83,0x05,0xc0,0x02, -0x0d,0x05,0x00,0x03,0xae,0x80,0x80,0x02,0x83,0x0f,0x40,0x03,0xb0,0xc0,0x80,0x02, -0xae,0x80,0x00,0x02,0x0d,0x06,0x80,0x02,0x01,0x00,0x01,0x03,0xa0,0xc0,0x81,0x02, -0x0d,0x05,0x00,0x02,0x83,0xff,0xbf,0x02,0xb2,0x00,0x04,0x02,0x19,0x01,0x40,0x02, -0x06,0x00,0x00,0x02,0x20,0x40,0x04,0x02,0x0d,0x09,0x00,0x02,0x05,0x00,0x80,0x02, -0xa0,0xc0,0x04,0x02,0x19,0x03,0x40,0x02,0x11,0x0a,0x00,0x02,0x20,0x40,0x05,0x02, -0x83,0x00,0xc0,0x02,0xa0,0x80,0x05,0x02,0x83,0xff,0xbf,0x02,0xb2,0x00,0x04,0x02, -0x99,0x02,0x40,0x02,0x8d,0x0b,0x00,0x02,0xaf,0x80,0x00,0x02,0x8e,0x0b,0x00,0x02, -0x06,0x00,0x00,0x02,0x20,0x00,0x06,0x02,0x8d,0x0c,0x00,0x02,0x05,0x00,0x80,0x02, -0xa0,0xc0,0x04,0x02,0x19,0x03,0x40,0x02,0x11,0x0a,0x00,0x02,0x20,0x40,0x05,0x02, -0x83,0x00,0xc0,0x02,0xa0,0x80,0x05,0x02,0x83,0xff,0xbf,0x02,0xb2,0x00,0x04,0x02, -0x19,0x05,0x40,0x02,0x06,0x00,0x00,0x02,0x20,0x80,0x06,0x02,0x8d,0x0d,0x00,0x02, -0xad,0xc0,0x03,0x02,0x8e,0x0d,0x00,0x02,0x8d,0x0d,0x00,0x02,0x8d,0x0c,0x80,0x02, -0x20,0x00,0x87,0x02,0xa0,0x80,0x05,0x02,0x8e,0x0d,0x00,0x02,0x8d,0x0e,0x00,0x02, -0x19,0x0e,0x40,0x02,0x0d,0x0f,0x00,0x02,0xad,0xc0,0x03,0x02,0x83,0x0f,0xc0,0x02, -0xa0,0x80,0x05,0x02,0x0e,0x0f,0x00,0x02,0x0d,0x0f,0x00,0x02,0x83,0x07,0xc0,0x02, -0xb3,0xc0,0x07,0x02,0x99,0x03,0x40,0x02,0x83,0x07,0x40,0x02,0x0d,0x0f,0x80,0x02, -0xae,0x80,0x00,0x02,0x83,0x02,0xc0,0x02,0xb0,0xc0,0x00,0x02,0x01,0x00,0x01,0x01, -0x97,0x02,0x40,0x00,0x0d,0x0f,0x00,0x02,0x2f,0x88,0x00,0x02,0x83,0x02,0xc0,0x02, -0xb0,0xc0,0x00,0x02,0x01,0x00,0x01,0x01,0x06,0x00,0x00,0x02,0x20,0x00,0x01,0x02, -0x03,0x7f,0xc0,0x02,0x03,0x7f,0x40,0x03,0x03,0x7f,0xc0,0x03,0x01,0x80,0x00,0x04, -0x20,0x02,0x08,0x02,0x8f,0x10,0x00,0x02,0x20,0x80,0x08,0x02,0x29,0x00,0x00,0x02, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x23,0x00,0x11,0x40,0x5f,0x77,0x68,0x69,0x74, -0x65,0x6e,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x01,0x3e,0x00, -0x00,0x01,0x2d,0x00,0x00,0x01,0x2a,0x00,0x00,0x05,0x63,0x6f,0x6c,0x6f,0x72,0x00, -0x00,0x06,0x61,0x6c,0x70,0x68,0x61,0x3d,0x00,0x00,0x11,0x40,0x5f,0x61,0x70,0x70, -0x65,0x61,0x72,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x08,0x6f, -0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x00,0x00,0x11,0x40,0x5f,0x65,0x73,0x63,0x61, -0x70,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x13,0x40,0x5f, -0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f, -0x6e,0x00,0x00,0x11,0x40,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x5f,0x64,0x75,0x72, -0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x03,0x3d,0x3d,0x3d,0x00,0x00,0x0f,0x40,0x5f, -0x64,0x61,0x6d,0x61,0x67,0x65,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x00,0x00,0x01, -0x79,0x00,0x00,0x02,0x79,0x3d,0x00,0x00,0x01,0x2b,0x00,0x00,0x02,0x3d,0x3d,0x00, -0x00,0x0e,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65, -0x00,0x00,0x0b,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00, -0x02,0x21,0x3d,0x00,0x00,0x08,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x73,0x00,0x00, -0x0b,0x66,0x72,0x61,0x6d,0x65,0x5f,0x63,0x6f,0x75,0x6e,0x74,0x00,0x00,0x01,0x25, -0x00,0x00,0x14,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x64, -0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x10,0x75,0x70,0x64,0x61,0x74,0x65, -0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x10,0x40,0x5f,0x6c, -0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x15, -0x75,0x70,0x64,0x61,0x74,0x65,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x16,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61, -0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x69,0x6e,0x64,0x65,0x78,0x00,0x00, -0x09,0x66,0x72,0x61,0x6d,0x65,0x5f,0x6d,0x61,0x78,0x00,0x00,0x07,0x40,0x5f,0x62, -0x6c,0x69,0x6e,0x6b,0x00,0x00,0x0d,0x40,0x5f,0x62,0x6c,0x69,0x6e,0x6b,0x5f,0x63, -0x6f,0x75,0x6e,0x74,0x00,0x00,0x01,0x3c,0x00,0x00,0x03,0x73,0x65,0x74,0x00,0x00, -0x0d,0x40,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x73,0x00,0x00, -0x05,0x63,0x6c,0x65,0x61,0x72,0x00,0x00,0x00,0x01,0x4b,0x00,0x06,0x00,0x0b,0x00, -0x01,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x03, -0x83,0xff,0xbf,0x03,0xb5,0x40,0x00,0x03,0x19,0x0c,0x40,0x03,0x0d,0x01,0x00,0x03, -0x20,0xc0,0x00,0x03,0x0d,0x00,0x80,0x03,0xae,0x00,0x01,0x03,0x01,0x80,0x01,0x01, -0x0d,0x01,0x00,0x03,0x20,0x40,0x01,0x03,0x01,0x80,0x80,0x03,0xa0,0x80,0x01,0x03, -0x20,0xc0,0x01,0x03,0x01,0x80,0x81,0x01,0x0d,0x01,0x00,0x03,0x20,0x00,0x02,0x03, -0x01,0x80,0x01,0x02,0x06,0x00,0x00,0x03,0x0d,0x05,0x80,0x03,0x01,0xc0,0x00,0x04, -0x01,0x00,0x81,0x04,0xa0,0x41,0x02,0x03,0x0d,0x01,0x00,0x03,0x20,0xc0,0x02,0x03, -0x40,0x01,0x80,0x03,0x21,0x00,0x03,0x03,0x17,0x01,0x40,0x00,0x06,0x00,0x00,0x03, -0x20,0x40,0x03,0x03,0x29,0x00,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0e, -0x00,0x14,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x64,0x75, -0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x01,0x3e,0x00,0x00,0x0b,0x40,0x5f,0x61, -0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x09,0x66,0x72,0x61,0x6d,0x65, -0x5f,0x6d,0x61,0x78,0x00,0x00,0x01,0x2d,0x00,0x00,0x06,0x66,0x72,0x61,0x6d,0x65, -0x73,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x09,0x63,0x65,0x6c,0x6c,0x5f,0x64,0x61, -0x74,0x61,0x00,0x00,0x08,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x15, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x65,0x74,0x5f,0x73,0x70, -0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x13,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74, -0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x07,0x74,0x69, -0x6d,0x69,0x6e,0x67,0x73,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x11,0x64, -0x69,0x73,0x70,0x6f,0x73,0x65,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x00,0x00,0x8c,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0e,0x00, -0x26,0x00,0x00,0x02,0x16,0x40,0x81,0x00,0x15,0x40,0x01,0x01,0x20,0x00,0x00,0x01, -0x15,0x80,0x80,0x01,0xb2,0x40,0x00,0x01,0x99,0x02,0x40,0x01,0x06,0x00,0x00,0x01, -0x15,0x40,0x81,0x01,0x8d,0x01,0x00,0x02,0x20,0x81,0x00,0x01,0x97,0x00,0x40,0x00, -0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04, -0x00,0x05,0x66,0x72,0x61,0x6d,0x65,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00,0x18,0x61, -0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73, -0x5f,0x74,0x69,0x6d,0x69,0x6e,0x67,0x00,0x00,0x0f,0x40,0x5f,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x5f,0x68,0x69,0x74,0x00,0x00,0x00,0x01,0x03,0x00,0x06, -0x00,0x0b,0x00,0x01,0x00,0x00,0x00,0x15,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x01, -0x8d,0x00,0x00,0x03,0x20,0x80,0x00,0x03,0x01,0x80,0x80,0x03,0xa0,0xc0,0x00,0x03, -0x20,0x00,0x01,0x03,0x01,0x80,0x81,0x01,0x8d,0x00,0x00,0x03,0x20,0x40,0x01,0x03, -0x01,0x80,0x01,0x02,0x06,0x00,0x00,0x03,0x8d,0x03,0x80,0x03,0x01,0xc0,0x00,0x04, -0x01,0x00,0x81,0x04,0xa0,0x81,0x01,0x03,0x8d,0x00,0x00,0x03,0x20,0x00,0x02,0x03, -0x40,0x01,0x80,0x03,0x21,0x40,0x02,0x03,0x29,0x00,0x00,0x03,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x0a,0x00,0x16,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69, -0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x69,0x6e,0x64,0x65,0x78,0x00,0x00,0x10,0x40, -0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x06,0x66,0x72,0x61,0x6d,0x65,0x73,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x09, -0x63,0x65,0x6c,0x6c,0x5f,0x64,0x61,0x74,0x61,0x00,0x00,0x08,0x70,0x6f,0x73,0x69, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x15,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x5f,0x73,0x65,0x74,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x18,0x40, -0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f, -0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x07,0x74,0x69,0x6d,0x69,0x6e,0x67, -0x73,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x00,0x00,0x7a,0x00,0x01,0x00, -0x06,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x26,0x00,0x00,0x02,0x16,0x40,0x81,0x00, -0x15,0x40,0x01,0x01,0x20,0x00,0x00,0x01,0x15,0x80,0x80,0x01,0xb2,0x40,0x00,0x01, -0x99,0x02,0x40,0x01,0x06,0x00,0x00,0x01,0x15,0x40,0x81,0x01,0x07,0x00,0x00,0x02, -0x20,0x81,0x00,0x01,0x97,0x00,0x40,0x00,0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00,0x05,0x66,0x72,0x61,0x6d,0x65,0x00, -0x00,0x02,0x3d,0x3d,0x00,0x00,0x18,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e, -0x5f,0x70,0x72,0x6f,0x63,0x65,0x73,0x73,0x5f,0x74,0x69,0x6d,0x69,0x6e,0x67,0x00, -0x00,0x00,0x00,0x3d,0x00,0x08,0x00,0x0a,0x00,0x01,0x00,0x00,0x00,0x07,0x00,0x00, -0x26,0x00,0x00,0x06,0x83,0xff,0x3f,0x04,0x03,0x07,0xc0,0x04,0x41,0x00,0x02,0x04, -0x40,0x01,0x80,0x04,0x21,0x00,0x00,0x04,0x29,0x00,0x00,0x04,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x01,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x00,0x04,0xc9,0x00, -0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0xe9,0x00,0x00,0x00,0x26,0x00,0x00,0x02, -0x16,0x40,0x81,0x00,0x15,0x40,0x00,0x01,0x15,0x40,0x81,0x01,0xa0,0x00,0x00,0x01, -0x16,0x80,0x01,0x01,0x15,0x80,0x00,0x01,0x15,0x40,0x81,0x01,0x83,0xff,0x3f,0x02, -0x20,0x01,0x00,0x01,0x16,0xc0,0x01,0x01,0x15,0x80,0x01,0x01,0x05,0x00,0x80,0x01, -0xb2,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x15,0xc0,0x01,0x01,0x05,0x00,0x80,0x01, -0xb2,0x40,0x00,0x01,0x98,0x01,0x40,0x01,0x15,0xc0,0x01,0x01,0x03,0xff,0xbf,0x01, -0xb2,0x40,0x00,0x01,0x19,0x05,0x40,0x01,0x15,0x80,0x01,0x01,0x05,0x00,0x80,0x01, -0xa0,0x80,0x00,0x01,0x19,0x02,0x40,0x01,0x08,0x00,0x00,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01,0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01, -0x07,0x00,0x00,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01, -0x15,0x80,0x01,0x01,0x20,0x00,0x01,0x01,0x15,0xc0,0x81,0x01,0x03,0x02,0x40,0x02, -0xa0,0x80,0x81,0x01,0x83,0x5f,0x40,0x02,0xb0,0xc0,0x81,0x01,0x15,0xc0,0x01,0x02, -0x03,0x02,0xc0,0x02,0xb1,0x00,0x02,0x02,0x83,0x5f,0xc0,0x02,0xb0,0xc0,0x01,0x02, -0x83,0x5f,0xc0,0x02,0x83,0x5f,0x40,0x03,0x20,0x42,0x01,0x01,0x15,0xc0,0x00,0x01, -0x03,0x01,0xc0,0x01,0xb2,0x40,0x00,0x01,0x99,0x10,0x40,0x01,0x06,0x00,0x00,0x01, -0x20,0x40,0x02,0x01,0x05,0x00,0x80,0x01,0xa0,0x80,0x00,0x01,0x99,0x09,0x40,0x01, -0x06,0x00,0x00,0x01,0x20,0x40,0x02,0x01,0x20,0x80,0x02,0x01,0x20,0xc0,0x02,0x01, -0x83,0x00,0xc0,0x01,0xb1,0x00,0x02,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02, -0xa0,0x00,0x83,0x01,0x06,0x00,0x00,0x01,0x20,0x40,0x02,0x01,0x20,0x80,0x02,0x01, -0x20,0x40,0x03,0x01,0x83,0x4f,0xc0,0x01,0xae,0x80,0x03,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0xc0,0x83,0x01,0x17,0x04,0x40,0x00,0x83,0x9f,0x40,0x01, -0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x83,0x01,0x83,0x77,0x40,0x01, -0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x83,0x01,0x17,0x1d,0x40,0x00, -0x06,0x00,0x00,0x01,0x20,0x00,0x04,0x01,0x06,0x00,0x80,0x01,0x20,0x40,0x84,0x01, -0xae,0x80,0x03,0x01,0x06,0x00,0x80,0x01,0x20,0x00,0x81,0x01,0x20,0xc0,0x82,0x01, -0x83,0x00,0x40,0x02,0xb1,0x00,0x82,0x01,0xac,0x80,0x04,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0x00,0x83,0x01,0x06,0x00,0x00,0x01,0x20,0xc0,0x04,0x01, -0x06,0x00,0x80,0x01,0x20,0x00,0x85,0x01,0xae,0x80,0x03,0x01,0x06,0x00,0x80,0x01, -0x20,0x00,0x81,0x01,0x20,0x40,0x83,0x01,0x83,0x00,0x40,0x02,0xb1,0x00,0x82,0x01, -0xac,0x80,0x04,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x83,0x01, -0x15,0xc0,0x00,0x01,0x83,0xff,0xbf,0x01,0xb2,0x40,0x00,0x01,0x99,0x05,0x40,0x01, -0x15,0x80,0x01,0x01,0x20,0xc0,0x04,0x01,0x06,0x00,0x80,0x01,0x20,0x00,0x81,0x01, -0x20,0x40,0x83,0x01,0x83,0x01,0x40,0x02,0xb1,0x00,0x82,0x01,0xae,0x80,0x03,0x01, -0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x83,0x01,0x15,0xc0,0x00,0x01, -0x83,0x00,0xc0,0x01,0xb2,0x40,0x00,0x01,0x99,0x05,0x40,0x01,0x15,0x80,0x01,0x01, -0x20,0xc0,0x04,0x01,0x06,0x00,0x80,0x01,0x20,0x00,0x81,0x01,0x20,0x40,0x83,0x01, -0x83,0x01,0x40,0x02,0xb1,0x00,0x82,0x01,0xac,0x80,0x04,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0xc0,0x83,0x01,0x15,0x80,0x01,0x01,0x20,0x00,0x04,0x01, -0x15,0x80,0x80,0x01,0x15,0x40,0x01,0x02,0x03,0x00,0xc0,0x02,0x20,0x01,0x80,0x01, -0xac,0x80,0x04,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x83,0x01, -0x15,0x80,0x01,0x01,0x20,0xc0,0x04,0x01,0x15,0x80,0x80,0x01,0x15,0x40,0x01,0x02, -0x83,0x00,0xc0,0x02,0x20,0x01,0x80,0x01,0xac,0x80,0x04,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0xc0,0x83,0x01,0x83,0xe7,0x43,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0x40,0x85,0x01,0x83,0x2f,0x40,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0x80,0x85,0x01,0x83,0x2f,0x40,0x01,0x15,0x80,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0xc0,0x85,0x01,0x15,0x80,0x00,0x01,0x15,0x40,0x81,0x01, -0x03,0x01,0x40,0x02,0x20,0x01,0x00,0x01,0x02,0x00,0x80,0x01,0xb1,0x00,0x02,0x01, -0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x86,0x01,0x15,0x80,0x00,0x01, -0x15,0x40,0x81,0x01,0x03,0x01,0x40,0x02,0x20,0x01,0x00,0x01,0x02,0x00,0x80,0x01, -0xb1,0x00,0x02,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x86,0x01, -0x15,0x80,0x00,0x01,0x15,0x40,0x81,0x01,0x83,0x01,0x40,0x02,0x20,0x01,0x00,0x01, -0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x80,0x86,0x01,0x15,0x80,0x00,0x01, -0x15,0x40,0x81,0x01,0x03,0x02,0x40,0x02,0x20,0x01,0x00,0x01,0x03,0x00,0xc0,0x01, -0xb2,0x40,0x00,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x86,0x01, -0x15,0x80,0x00,0x01,0x15,0x40,0x81,0x01,0x83,0x02,0x40,0x02,0x20,0x01,0x00,0x01, -0x06,0x00,0x80,0x01,0x20,0x00,0x87,0x01,0xb0,0xc0,0x01,0x01,0x82,0x00,0x80,0x01, -0xb1,0x00,0x02,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x87,0x01, -0x15,0x80,0x00,0x01,0x15,0x40,0x81,0x01,0x03,0x03,0x40,0x02,0x20,0x01,0x00,0x01, -0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x80,0x87,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x02,0x02,0x00,0x16,0x31,0x2e,0x30,0x30,0x30,0x30,0x30,0x30,0x30, -0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x65,0x2b,0x30,0x32,0x02,0x00,0x16, -0x32,0x2e,0x35,0x35,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30,0x30, -0x30,0x30,0x65,0x2b,0x30,0x32,0x00,0x00,0x00,0x1f,0x00,0x02,0x5b,0x5d,0x00,0x00, -0x02,0x3d,0x3d,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x08,0x76,0x69,0x73,0x69,0x62, -0x6c,0x65,0x3d,0x00,0x00,0x08,0x73,0x72,0x63,0x5f,0x72,0x65,0x63,0x74,0x00,0x00, -0x03,0x73,0x65,0x74,0x00,0x00,0x01,0x25,0x00,0x00,0x01,0x2a,0x00,0x00,0x01,0x2f, -0x00,0x00,0x08,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x00,0x00,0x04,0x72,0x65, -0x63,0x74,0x00,0x00,0x05,0x77,0x69,0x64,0x74,0x68,0x00,0x00,0x02,0x78,0x3d,0x00, -0x00,0x06,0x68,0x65,0x69,0x67,0x68,0x74,0x00,0x00,0x01,0x2d,0x00,0x00,0x02,0x79, -0x3d,0x00,0x00,0x01,0x78,0x00,0x00,0x02,0x6f,0x78,0x00,0x00,0x01,0x2b,0x00,0x00, -0x01,0x79,0x00,0x00,0x02,0x6f,0x79,0x00,0x00,0x02,0x7a,0x3d,0x00,0x00,0x03,0x6f, -0x78,0x3d,0x00,0x00,0x03,0x6f,0x79,0x3d,0x00,0x00,0x07,0x7a,0x6f,0x6f,0x6d,0x5f, -0x78,0x3d,0x00,0x00,0x07,0x7a,0x6f,0x6f,0x6d,0x5f,0x79,0x3d,0x00,0x00,0x06,0x61, -0x6e,0x67,0x6c,0x65,0x3d,0x00,0x00,0x07,0x6d,0x69,0x72,0x72,0x6f,0x72,0x3d,0x00, -0x00,0x07,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x00,0x00,0x08,0x6f,0x70,0x61,0x63, -0x69,0x74,0x79,0x3d,0x00,0x00,0x0b,0x62,0x6c,0x65,0x6e,0x64,0x5f,0x74,0x79,0x70, -0x65,0x3d,0x00,0x00,0x00,0x02,0x48,0x00,0x05,0x00,0x0b,0x00,0x00,0x00,0x00,0x00, -0x63,0x00,0x00,0x00,0x26,0x00,0x00,0x04,0x01,0x40,0x80,0x02,0x20,0x00,0x80,0x02, -0x83,0xff,0x3f,0x03,0xb2,0x40,0x80,0x02,0x18,0x04,0xc0,0x02,0x01,0x40,0x80,0x02, -0x20,0x00,0x80,0x02,0x03,0x00,0x40,0x03,0xb2,0x40,0x80,0x02,0x99,0x01,0xc0,0x02, -0x01,0x80,0x80,0x02,0x07,0x00,0x00,0x03,0xb2,0x40,0x80,0x02,0x18,0x04,0xc0,0x02, -0x01,0x40,0x80,0x02,0x20,0x00,0x80,0x02,0x83,0x00,0x40,0x03,0xb2,0x40,0x80,0x02, -0x99,0x01,0xc0,0x02,0x01,0x80,0x80,0x02,0x08,0x00,0x00,0x03,0xb2,0x40,0x80,0x02, -0x99,0x24,0xc0,0x02,0x01,0x40,0x80,0x02,0x20,0x80,0x80,0x02,0x20,0xc0,0x80,0x02, -0x3d,0x00,0x00,0x03,0xa0,0x00,0x81,0x02,0x99,0x06,0xc0,0x02,0x01,0x40,0x80,0x02, -0x20,0x80,0x80,0x02,0x01,0x40,0x01,0x02,0x91,0x02,0x80,0x02,0xbd,0x00,0x00,0x03, -0x01,0x00,0x81,0x03,0x20,0xc0,0x80,0x03,0xac,0xc0,0x01,0x03,0x01,0x00,0x81,0x03, -0x20,0x00,0x82,0x03,0x01,0x00,0x01,0x04,0x20,0x40,0x02,0x04,0xa0,0x81,0x81,0x02, -0x01,0x40,0x80,0x02,0x20,0x80,0x82,0x02,0x03,0x00,0x40,0x03,0x01,0x40,0x81,0x03, -0xa0,0xc0,0x02,0x03,0x98,0x00,0x40,0x03,0x97,0x04,0x40,0x00,0x06,0x00,0x00,0x03, -0x01,0x40,0x80,0x03,0x20,0x40,0x83,0x03,0x01,0x40,0x00,0x04,0x20,0x80,0x03,0x04, -0x83,0x00,0xc0,0x04,0xb0,0xc0,0x03,0x04,0x20,0x01,0x03,0x03,0x17,0x12,0x40,0x00, -0x83,0x00,0x40,0x03,0x01,0x40,0x81,0x03,0xa0,0xc0,0x02,0x03,0x98,0x00,0x40,0x03, -0x97,0x08,0x40,0x00,0x06,0x00,0x00,0x03,0x20,0x00,0x04,0x03,0x05,0x00,0x80,0x03, -0xa0,0x00,0x01,0x03,0x19,0x05,0x40,0x03,0x06,0x00,0x00,0x03,0x20,0x00,0x04,0x03, -0x01,0x40,0x80,0x03,0x20,0x40,0x83,0x03,0x01,0x40,0x00,0x04,0x20,0x80,0x03,0x04, -0x83,0x00,0xc0,0x04,0xb0,0xc0,0x03,0x04,0x20,0x01,0x03,0x03,0x97,0x00,0x40,0x00, -0x05,0x00,0x00,0x03,0x17,0x07,0x40,0x00,0x03,0x01,0x40,0x03,0x01,0x40,0x81,0x03, -0xa0,0xc0,0x02,0x03,0x98,0x00,0x40,0x03,0x17,0x04,0x40,0x00,0x06,0x00,0x00,0x03, -0x05,0x00,0x80,0x03,0x01,0x40,0x00,0x04,0x20,0x80,0x03,0x04,0x83,0x00,0xc0,0x04, -0xb0,0xc0,0x03,0x04,0x20,0x01,0x03,0x03,0x97,0x00,0x40,0x00,0x05,0x00,0x00,0x03, -0x01,0x80,0x81,0x02,0x97,0x00,0x40,0x00,0x05,0x00,0x80,0x02,0x29,0x00,0x80,0x02, -0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x09,0x41,0x75,0x64,0x69,0x6f,0x2f, -0x53,0x45,0x2f,0x00,0x00,0x00,0x11,0x00,0x09,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69, -0x6f,0x6e,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00,0x02,0x73,0x65,0x00,0x00,0x04,0x6e, -0x61,0x6d,0x65,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x05,0x41,0x75,0x64,0x69,0x6f, -0x00,0x00,0x07,0x73,0x65,0x5f,0x70,0x6c,0x61,0x79,0x00,0x00,0x01,0x2b,0x00,0x00, -0x06,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x00,0x00,0x05,0x70,0x69,0x74,0x63,0x68,0x00, -0x00,0x0b,0x66,0x6c,0x61,0x73,0x68,0x5f,0x73,0x63,0x6f,0x70,0x65,0x00,0x00,0x03, -0x3d,0x3d,0x3d,0x00,0x00,0x05,0x66,0x6c,0x61,0x73,0x68,0x00,0x00,0x0b,0x66,0x6c, -0x61,0x73,0x68,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x0e,0x66,0x6c,0x61,0x73, -0x68,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x01,0x2a,0x00,0x00, -0x08,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x00,0x00,0x00,0x00,0xd7,0x00,0x05, -0x00,0x08,0x00,0x02,0x00,0x00,0x00,0x1e,0x26,0x00,0x00,0x02,0x01,0x40,0x80,0x02, -0x06,0x00,0x00,0x03,0x20,0x40,0x00,0x03,0xae,0x00,0x80,0x02,0x01,0x40,0x81,0x01, -0x83,0xff,0x3f,0x03,0xa0,0x80,0x80,0x02,0x19,0x09,0xc0,0x02,0x8d,0x01,0x80,0x02, -0x05,0x00,0x00,0x03,0xa0,0x80,0x80,0x02,0x99,0x02,0xc0,0x02,0x83,0xff,0xbf,0x02, -0x03,0x07,0x40,0x03,0x41,0x40,0x81,0x02,0x40,0x01,0x00,0x03,0x21,0x00,0x81,0x02, -0x8d,0x02,0x80,0x02,0x05,0x00,0x00,0x03,0xa0,0x80,0x80,0x02,0x99,0x02,0xc0,0x02, -0x83,0xff,0xbf,0x02,0x03,0x07,0x40,0x03,0x41,0x40,0x81,0x02,0x40,0x03,0x00,0x03, -0x21,0x00,0x81,0x02,0x25,0x00,0x02,0x03,0xa4,0x3f,0x80,0x02,0x29,0x00,0x80,0x02, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x01,0x2d,0x00,0x00,0x01,0x78,0x00, -0x00,0x02,0x21,0x3d,0x00,0x00,0x13,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x04,0x65,0x61,0x63, -0x68,0x00,0x00,0x18,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61, -0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x00,0x00, -0x7a,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x26,0x00,0x00,0x02, -0x16,0x00,0x81,0x00,0x0d,0x00,0x00,0x01,0x15,0x00,0x81,0x01,0xa0,0x40,0x00,0x01, -0x20,0x80,0x00,0x01,0x15,0xc0,0x80,0x01,0xac,0xc0,0x00,0x01,0x0d,0x00,0x80,0x01, -0x15,0x00,0x01,0x02,0xa0,0x40,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x13,0x40,0x5f, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65, -0x73,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x01,0x78,0x00,0x00,0x01,0x2b,0x00,0x00, -0x02,0x78,0x3d,0x00,0x00,0x00,0x00,0x7f,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00, -0x00,0x0e,0x00,0x00,0x26,0x00,0x00,0x02,0x16,0x00,0x81,0x00,0x0d,0x00,0x00,0x01, -0x15,0x00,0x81,0x01,0xa0,0x40,0x00,0x01,0x20,0x80,0x00,0x01,0x15,0xc0,0x80,0x01, -0xac,0xc0,0x00,0x01,0x0d,0x00,0x80,0x01,0x15,0x00,0x01,0x02,0xa0,0x40,0x80,0x01, -0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x05,0x00,0x18,0x40,0x5f,0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69, -0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00, -0x02,0x5b,0x5d,0x00,0x00,0x01,0x78,0x00,0x00,0x01,0x2b,0x00,0x00,0x02,0x78,0x3d, -0x00,0x00,0x00,0x00,0xd7,0x00,0x05,0x00,0x08,0x00,0x02,0x00,0x00,0x00,0x1e,0x00, -0x26,0x00,0x00,0x02,0x01,0x40,0x80,0x02,0x06,0x00,0x00,0x03,0x20,0x40,0x00,0x03, -0xae,0x00,0x80,0x02,0x01,0x40,0x81,0x01,0x83,0xff,0x3f,0x03,0xa0,0x80,0x80,0x02, -0x19,0x09,0xc0,0x02,0x8d,0x01,0x80,0x02,0x05,0x00,0x00,0x03,0xa0,0x80,0x80,0x02, -0x99,0x02,0xc0,0x02,0x83,0xff,0xbf,0x02,0x03,0x07,0x40,0x03,0x41,0x40,0x81,0x02, -0x40,0x01,0x00,0x03,0x21,0x00,0x81,0x02,0x8d,0x02,0x80,0x02,0x05,0x00,0x00,0x03, -0xa0,0x80,0x80,0x02,0x99,0x02,0xc0,0x02,0x83,0xff,0xbf,0x02,0x03,0x07,0x40,0x03, -0x41,0x40,0x81,0x02,0x40,0x03,0x00,0x03,0x21,0x00,0x81,0x02,0x25,0x00,0x02,0x03, -0xa4,0x3f,0x80,0x02,0x29,0x00,0x80,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06, -0x00,0x01,0x2d,0x00,0x00,0x01,0x79,0x00,0x00,0x02,0x21,0x3d,0x00,0x00,0x13,0x40, -0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72,0x69,0x74, -0x65,0x73,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x18,0x40,0x5f,0x6c,0x6f, -0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73,0x70,0x72, -0x69,0x74,0x65,0x73,0x00,0x00,0x00,0x00,0x7a,0x00,0x01,0x00,0x06,0x00,0x00,0x00, -0x00,0x00,0x0e,0x00,0x26,0x00,0x00,0x02,0x16,0x00,0x81,0x00,0x0d,0x00,0x00,0x01, -0x15,0x00,0x81,0x01,0xa0,0x40,0x00,0x01,0x20,0x80,0x00,0x01,0x15,0xc0,0x80,0x01, -0xac,0xc0,0x00,0x01,0x0d,0x00,0x80,0x01,0x15,0x00,0x01,0x02,0xa0,0x40,0x80,0x01, -0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x05,0x00,0x13,0x40,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, -0x6e,0x5f,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00, -0x01,0x79,0x00,0x00,0x01,0x2b,0x00,0x00,0x02,0x79,0x3d,0x00,0x00,0x00,0x00,0x7f, -0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x26,0x00,0x00,0x02, -0x16,0x00,0x81,0x00,0x0d,0x00,0x00,0x01,0x15,0x00,0x81,0x01,0xa0,0x40,0x00,0x01, -0x20,0x80,0x00,0x01,0x15,0xc0,0x80,0x01,0xac,0xc0,0x00,0x01,0x0d,0x00,0x80,0x01, -0x15,0x00,0x01,0x02,0xa0,0x40,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x18,0x40,0x5f, -0x6c,0x6f,0x6f,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x73, -0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x01,0x79,0x00, -0x00,0x01,0x2b,0x00,0x00,0x02,0x79,0x3d,0x00,0x00,0x00,0x01,0x02,0x00,0x01,0x00, -0x04,0x00,0x07,0x00,0x00,0x00,0x22,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01, -0x46,0x00,0x80,0x00,0x48,0x00,0x80,0x00,0xc0,0x02,0x00,0x01,0x46,0x40,0x80,0x00, -0x48,0x00,0x80,0x00,0xc0,0x04,0x00,0x01,0x46,0x80,0x80,0x00,0x48,0x00,0x80,0x00, -0xc0,0x06,0x00,0x01,0x46,0xc0,0x80,0x00,0x48,0x00,0x80,0x00,0xc0,0x08,0x00,0x01, -0x46,0x00,0x81,0x00,0x48,0x00,0x80,0x00,0xc0,0x0a,0x00,0x01,0x46,0x40,0x81,0x00, -0x48,0x00,0x80,0x00,0xc0,0x0c,0x00,0x01,0x46,0x80,0x81,0x00,0x06,0x00,0x80,0x00, -0x04,0x04,0x00,0x01,0xa0,0xc0,0x81,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01, -0xa0,0xc0,0x81,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0xc0,0x81,0x00, -0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0xc0,0x81,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x07,0x64,0x69,0x73,0x70,0x6f,0x73,0x65,0x00,0x00, -0x05,0x74,0x79,0x70,0x65,0x3d,0x00,0x00,0x03,0x6f,0x78,0x3d,0x00,0x00,0x03,0x6f, -0x79,0x3d,0x00,0x00,0x04,0x6d,0x61,0x78,0x3d,0x00,0x00,0x06,0x75,0x70,0x64,0x61, -0x74,0x65,0x00,0x00,0x0b,0x61,0x74,0x74,0x72,0x5f,0x72,0x65,0x61,0x64,0x65,0x72, -0x00,0x00,0x04,0x74,0x79,0x70,0x65,0x00,0x00,0x03,0x6d,0x61,0x78,0x00,0x00,0x02, -0x6f,0x78,0x00,0x00,0x02,0x6f,0x79,0x00,0x00,0x00,0x01,0xf4,0x00,0x07,0x00,0x0e, -0x00,0x03,0x00,0x00,0x00,0x57,0x00,0x00,0x26,0x00,0x10,0x00,0x97,0x00,0x40,0x00, -0x97,0x00,0x40,0x00,0x05,0x00,0x80,0x00,0x83,0xff,0xbf,0x03,0x0e,0x00,0x80,0x03, -0x83,0xff,0xbf,0x03,0x8e,0x00,0x80,0x03,0x83,0xff,0xbf,0x03,0x0e,0x01,0x80,0x03, -0x83,0xff,0xbf,0x03,0x8e,0x01,0x80,0x03,0x11,0x02,0x80,0x03,0x03,0x7f,0x40,0x04, -0x03,0x7f,0xc0,0x04,0x03,0x7f,0x40,0x05,0x03,0x7f,0xc0,0x05,0x20,0x42,0x81,0x03, -0x01,0xc0,0x81,0x01,0x11,0x02,0x80,0x03,0x03,0x7f,0x40,0x04,0x03,0x7f,0xc0,0x04, -0x03,0x7f,0x40,0x05,0x83,0x3f,0xc0,0x05,0x20,0x42,0x81,0x03,0x01,0xc0,0x01,0x02, -0x11,0x03,0x80,0x03,0x03,0x03,0x40,0x04,0x83,0x1b,0xc0,0x04,0x20,0x41,0x81,0x03, -0x8e,0x03,0x80,0x03,0x83,0xff,0xbf,0x03,0x83,0x02,0x40,0x04,0x41,0xc0,0x81,0x03, -0x40,0x01,0x00,0x04,0x21,0x00,0x82,0x03,0x11,0x03,0x80,0x03,0x83,0x10,0x40,0x04, -0x83,0x1f,0xc0,0x04,0x20,0x41,0x81,0x03,0x8e,0x04,0x80,0x03,0x83,0xff,0xbf,0x03, -0x03,0x0f,0x40,0x04,0x41,0xc0,0x81,0x03,0x40,0x03,0x00,0x04,0x21,0x00,0x82,0x03, -0x11,0x03,0x80,0x03,0x83,0x02,0x40,0x04,0x83,0x02,0xc0,0x04,0x20,0x41,0x81,0x03, -0x0e,0x05,0x80,0x03,0x0d,0x05,0x80,0x03,0x83,0xff,0x3f,0x04,0x03,0x00,0xc0,0x04, -0x83,0x02,0x40,0x05,0x83,0x01,0xc0,0x05,0x01,0x00,0x01,0x06,0xa0,0xc2,0x82,0x03, -0x0d,0x05,0x80,0x03,0x03,0x00,0x40,0x04,0x83,0xff,0xbf,0x04,0x83,0x01,0x40,0x05, -0x83,0x02,0xc0,0x05,0x01,0x00,0x01,0x06,0xa0,0xc2,0x82,0x03,0x0d,0x05,0x80,0x03, -0x03,0x00,0x40,0x04,0x83,0x00,0xc0,0x04,0x83,0x01,0x40,0x05,0x83,0x00,0xc0,0x05, -0x01,0xc0,0x00,0x06,0xa0,0xc2,0x82,0x03,0x0d,0x05,0x80,0x03,0x83,0x00,0x40,0x04, -0x03,0x00,0xc0,0x04,0x83,0x00,0x40,0x05,0x83,0x01,0xc0,0x05,0x01,0xc0,0x00,0x06, -0xa0,0xc2,0x82,0x03,0x37,0xc0,0x81,0x03,0x0e,0x06,0x80,0x03,0x03,0x00,0xc0,0x03, -0x83,0x13,0x40,0x04,0x41,0xc0,0x81,0x03,0x40,0x05,0x00,0x04,0x21,0x00,0x82,0x03, -0x29,0x00,0x80,0x03,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x05,0x40,0x74, -0x79,0x70,0x65,0x00,0x00,0x04,0x40,0x6d,0x61,0x78,0x00,0x00,0x03,0x40,0x6f,0x78, -0x00,0x00,0x03,0x40,0x6f,0x79,0x00,0x00,0x05,0x43,0x6f,0x6c,0x6f,0x72,0x00,0x00, -0x03,0x6e,0x65,0x77,0x00,0x00,0x06,0x42,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x0c, -0x40,0x72,0x61,0x69,0x6e,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x04,0x65, -0x61,0x63,0x68,0x00,0x00,0x0d,0x40,0x73,0x74,0x6f,0x72,0x6d,0x5f,0x62,0x69,0x74, -0x6d,0x61,0x70,0x00,0x00,0x0c,0x40,0x73,0x6e,0x6f,0x77,0x5f,0x62,0x69,0x74,0x6d, -0x61,0x70,0x00,0x00,0x09,0x66,0x69,0x6c,0x6c,0x5f,0x72,0x65,0x63,0x74,0x00,0x00, -0x08,0x40,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x00,0x00,0x75,0x00,0x01, -0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x0e,0x26,0x00,0x00,0x02,0x16,0x40,0x81,0x00, -0x0d,0x00,0x00,0x01,0x83,0x02,0xc0,0x01,0x15,0x40,0x01,0x02,0xae,0x80,0x80,0x01, -0x15,0x40,0x01,0x02,0x83,0x03,0xc0,0x02,0xb0,0xc0,0x00,0x02,0x03,0x00,0xc0,0x02, -0x83,0x03,0x40,0x03,0x15,0xc0,0x80,0x03,0xa0,0x42,0x00,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x0c,0x40,0x72,0x61,0x69,0x6e,0x5f, -0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x09,0x66,0x69,0x6c,0x6c,0x5f,0x72,0x65, -0x63,0x74,0x00,0x00,0x01,0x2d,0x00,0x00,0x01,0x2a,0x00,0x00,0x00,0x00,0xce,0x00, -0x01,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00,0x00,0x26,0x00,0x00,0x02, -0x16,0x40,0x81,0x00,0x0d,0x00,0x00,0x01,0x03,0x10,0xc0,0x01,0x15,0x40,0x01,0x02, -0xae,0x80,0x80,0x01,0x15,0x40,0x01,0x02,0x83,0x00,0xc0,0x02,0xb0,0xc0,0x00,0x02, -0x03,0x00,0xc0,0x02,0x83,0x00,0x40,0x03,0x15,0x00,0x81,0x03,0xa0,0x42,0x00,0x01, -0x0d,0x00,0x00,0x01,0x83,0x0f,0xc0,0x01,0x15,0x40,0x01,0x02,0xae,0x80,0x80,0x01, -0x15,0x40,0x01,0x02,0x83,0x00,0xc0,0x02,0xb0,0xc0,0x00,0x02,0x03,0x00,0xc0,0x02, -0x83,0x00,0x40,0x03,0x15,0xc0,0x80,0x03,0xa0,0x42,0x00,0x01,0x0d,0x00,0x00,0x01, -0x03,0x0f,0xc0,0x01,0x15,0x40,0x01,0x02,0xae,0x80,0x80,0x01,0x15,0x40,0x01,0x02, -0x83,0x00,0xc0,0x02,0xb0,0xc0,0x00,0x02,0x03,0x00,0xc0,0x02,0x83,0x00,0x40,0x03, -0x15,0x00,0x81,0x03,0xa0,0x42,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x04,0x00,0x0d,0x40,0x73,0x74,0x6f,0x72,0x6d,0x5f,0x62,0x69,0x74, -0x6d,0x61,0x70,0x00,0x00,0x09,0x66,0x69,0x6c,0x6c,0x5f,0x72,0x65,0x63,0x74,0x00, -0x00,0x01,0x2d,0x00,0x00,0x01,0x2a,0x00,0x00,0x00,0x00,0xae,0x00,0x01,0x00,0x06, -0x00,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x26,0x00,0x00,0x02,0x16,0x40,0x81,0x00, -0x11,0x00,0x00,0x01,0x15,0x40,0x80,0x01,0xa0,0x40,0x00,0x01,0x16,0x80,0x01,0x01, -0x83,0xf3,0x41,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x80,0x80,0x01, -0x08,0x00,0x00,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x80,0x01, -0x83,0xff,0x3f,0x01,0x15,0x80,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x00,0x81,0x01, -0x8d,0x02,0x00,0x01,0x15,0x80,0x81,0x01,0xa0,0x80,0x01,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x06,0x53,0x70,0x72,0x69,0x74,0x65, -0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x02,0x7a,0x3d,0x00,0x00,0x08,0x76,0x69, -0x73,0x69,0x62,0x6c,0x65,0x3d,0x00,0x00,0x08,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, -0x3d,0x00,0x00,0x08,0x40,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x04,0x70, -0x75,0x73,0x68,0x00,0x00,0x00,0x00,0x90,0x00,0x03,0x00,0x05,0x00,0x01,0x00,0x00, -0x00,0x0b,0x00,0x00,0x26,0x00,0x00,0x00,0x0d,0x00,0x80,0x01,0x40,0x01,0x00,0x02, -0x21,0x40,0x80,0x01,0x0d,0x01,0x80,0x01,0x20,0xc0,0x80,0x01,0x0d,0x02,0x80,0x01, -0x20,0xc0,0x80,0x01,0x8d,0x02,0x80,0x01,0x20,0xc0,0x80,0x01,0x29,0x00,0x80,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x08,0x40,0x73,0x70,0x72,0x69,0x74, -0x65,0x73,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x0c,0x40,0x72,0x61,0x69, -0x6e,0x5f,0x62,0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x07,0x64,0x69,0x73,0x70,0x6f, -0x73,0x65,0x00,0x00,0x0d,0x40,0x73,0x74,0x6f,0x72,0x6d,0x5f,0x62,0x69,0x74,0x6d, -0x61,0x70,0x00,0x00,0x0c,0x40,0x73,0x6e,0x6f,0x77,0x5f,0x62,0x69,0x74,0x6d,0x61, -0x70,0x00,0x00,0x00,0x00,0x38,0x00,0x01,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x05, -0x26,0x00,0x00,0x02,0x16,0x80,0x80,0x00,0x15,0x80,0x00,0x01,0x20,0x00,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x01,0x00,0x07,0x64,0x69, -0x73,0x70,0x6f,0x73,0x65,0x00,0x00,0x00,0x00,0xfa,0x00,0x06,0x00,0x09,0x00,0x01, -0x00,0x00,0x00,0x26,0x26,0x00,0x00,0x02,0x0d,0x00,0x00,0x03,0x01,0x40,0x80,0x03, -0xb2,0x40,0x00,0x03,0x19,0x01,0x40,0x03,0x05,0x00,0x00,0x03,0x29,0x00,0x00,0x03, -0x0e,0x00,0x80,0x00,0x0d,0x00,0x00,0x03,0x03,0x00,0xc0,0x03,0x01,0x80,0x01,0x04, -0xa0,0x80,0x80,0x03,0x98,0x00,0xc0,0x03,0x17,0x01,0x40,0x00,0x8d,0x01,0x80,0x01, -0x17,0x08,0x40,0x00,0x83,0x00,0xc0,0x03,0x01,0x80,0x01,0x04,0xa0,0x80,0x80,0x03, -0x98,0x00,0xc0,0x03,0x17,0x01,0x40,0x00,0x0d,0x02,0x80,0x01,0x97,0x04,0x40,0x00, -0x03,0x01,0xc0,0x03,0x01,0x80,0x01,0x04,0xa0,0x80,0x80,0x03,0x98,0x00,0xc0,0x03, -0x17,0x01,0x40,0x00,0x8d,0x02,0x80,0x01,0x17,0x01,0x40,0x00,0x05,0x00,0x80,0x01, -0x17,0x00,0x40,0x00,0x03,0x00,0xc0,0x03,0x83,0x13,0x40,0x04,0x41,0xc0,0x81,0x03, -0x40,0x01,0x00,0x04,0x21,0x80,0x81,0x03,0x29,0x00,0x80,0x03,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x07,0x00,0x05,0x40,0x74,0x79,0x70,0x65,0x00,0x00,0x02,0x3d,0x3d, -0x00,0x00,0x03,0x3d,0x3d,0x3d,0x00,0x00,0x0c,0x40,0x72,0x61,0x69,0x6e,0x5f,0x62, -0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x0d,0x40,0x73,0x74,0x6f,0x72,0x6d,0x5f,0x62, -0x69,0x74,0x6d,0x61,0x70,0x00,0x00,0x0c,0x40,0x73,0x6e,0x6f,0x77,0x5f,0x62,0x69, -0x74,0x6d,0x61,0x70,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x00,0x00,0xac, -0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x26,0x00,0x00,0x02, -0x16,0x00,0x81,0x00,0x0d,0x00,0x00,0x01,0x15,0x00,0x81,0x01,0xa0,0x40,0x00,0x01, -0x16,0x40,0x01,0x01,0x15,0x40,0x01,0x01,0x05,0x00,0x80,0x01,0xa0,0x80,0x00,0x01, -0x99,0x05,0x40,0x01,0x15,0x00,0x01,0x01,0x0d,0x02,0x80,0x01,0xb4,0xc0,0x00,0x01, -0x15,0x40,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x81,0x01,0x15,0xc0,0x00,0x01, -0x15,0x40,0x81,0x01,0x01,0x80,0x00,0x02,0xa0,0x80,0x81,0x01,0x97,0x00,0x40,0x00, -0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07, -0x00,0x08,0x40,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x02,0x5b,0x5d,0x00, -0x00,0x02,0x21,0x3d,0x00,0x00,0x02,0x3c,0x3d,0x00,0x00,0x04,0x40,0x6d,0x61,0x78, -0x00,0x00,0x08,0x76,0x69,0x73,0x69,0x62,0x6c,0x65,0x3d,0x00,0x00,0x07,0x62,0x69, -0x74,0x6d,0x61,0x70,0x3d,0x00,0x00,0x00,0x00,0x67,0x00,0x04,0x00,0x07,0x00,0x01, -0x00,0x00,0x00,0x0c,0x26,0x00,0x00,0x02,0x0d,0x00,0x00,0x02,0x01,0x40,0x80,0x02, -0xb2,0x40,0x00,0x02,0x19,0x01,0x40,0x02,0x05,0x00,0x00,0x02,0x29,0x00,0x00,0x02, -0x0e,0x00,0x80,0x00,0x0d,0x01,0x00,0x02,0x40,0x01,0x80,0x02,0x21,0xc0,0x00,0x02, -0x29,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x03,0x40,0x6f, -0x78,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00,0x08,0x40,0x73,0x70,0x72,0x69,0x74,0x65, -0x73,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x00,0x00,0x42,0x00,0x01,0x00, -0x06,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x26,0x00,0x00,0x02,0x16,0xc0,0x80,0x00, -0x0d,0x00,0x00,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x80,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x03,0x40,0x6f, -0x78,0x00,0x00,0x03,0x6f,0x78,0x3d,0x00,0x00,0x00,0x00,0x67,0x00,0x04,0x00,0x07, -0x00,0x01,0x00,0x00,0x00,0x0c,0x00,0x00,0x26,0x00,0x00,0x02,0x0d,0x00,0x00,0x02, -0x01,0x40,0x80,0x02,0xb2,0x40,0x00,0x02,0x19,0x01,0x40,0x02,0x05,0x00,0x00,0x02, -0x29,0x00,0x00,0x02,0x0e,0x00,0x80,0x00,0x0d,0x01,0x00,0x02,0x40,0x01,0x80,0x02, -0x21,0xc0,0x00,0x02,0x29,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04, -0x00,0x03,0x40,0x6f,0x79,0x00,0x00,0x02,0x3d,0x3d,0x00,0x00,0x08,0x40,0x73,0x70, -0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x00,0x00, -0x42,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x26,0x00,0x00,0x02, -0x16,0xc0,0x80,0x00,0x0d,0x00,0x00,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0x40,0x80,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, -0x00,0x03,0x40,0x6f,0x79,0x00,0x00,0x03,0x6f,0x79,0x3d,0x00,0x00,0x00,0x00,0x8d, -0x00,0x05,0x00,0x08,0x00,0x01,0x00,0x00,0x00,0x15,0x00,0x00,0x26,0x00,0x00,0x02, -0x0d,0x00,0x80,0x02,0x01,0x40,0x00,0x03,0xb2,0x40,0x80,0x02,0x19,0x01,0xc0,0x02, -0x05,0x00,0x80,0x02,0x29,0x00,0x80,0x02,0x01,0x40,0x80,0x02,0x83,0xff,0x3f,0x03, -0x37,0x41,0x81,0x02,0x20,0x80,0x80,0x02,0x83,0x13,0x40,0x03,0x37,0x41,0x81,0x02, -0x20,0xc0,0x80,0x02,0x0e,0x00,0x80,0x02,0x03,0x00,0xc0,0x02,0x83,0x13,0x40,0x03, -0x41,0x40,0x81,0x02,0x40,0x01,0x00,0x03,0x21,0x00,0x81,0x02,0x29,0x00,0x80,0x02, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05,0x00,0x04,0x40,0x6d,0x61,0x78,0x00,0x00, -0x02,0x3d,0x3d,0x00,0x00,0x03,0x6d,0x61,0x78,0x00,0x00,0x03,0x6d,0x69,0x6e,0x00, -0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x00,0x00,0x92,0x00,0x01,0x00,0x06,0x00, -0x00,0x00,0x00,0x00,0x13,0x00,0x00,0x00,0x26,0x00,0x00,0x02,0x16,0xc0,0x80,0x00, -0x0d,0x00,0x00,0x01,0x15,0xc0,0x80,0x01,0xa0,0x40,0x00,0x01,0x16,0x00,0x01,0x01, -0x15,0x00,0x01,0x01,0x05,0x00,0x80,0x01,0xa0,0x80,0x00,0x01,0x99,0x03,0x40,0x01, -0x15,0xc0,0x00,0x01,0x0d,0x02,0x80,0x01,0xb4,0xc0,0x00,0x01,0x15,0x00,0x81,0x01, -0x01,0x80,0x00,0x02,0xa0,0x40,0x81,0x01,0x97,0x00,0x40,0x00,0x05,0x00,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x08,0x40,0x73, -0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x02,0x5b,0x5d,0x00,0x00,0x02,0x21,0x3d, -0x00,0x00,0x02,0x3c,0x3d,0x00,0x00,0x04,0x40,0x6d,0x61,0x78,0x00,0x00,0x08,0x76, -0x69,0x73,0x69,0x62,0x6c,0x65,0x3d,0x00,0x00,0x00,0x00,0x69,0x00,0x06,0x00,0x09, -0x00,0x01,0x00,0x00,0x00,0x0d,0x00,0x00,0x26,0x00,0x00,0x00,0x0d,0x00,0x00,0x03, -0x83,0xff,0xbf,0x03,0xb2,0x40,0x00,0x03,0x19,0x01,0x40,0x03,0x05,0x00,0x00,0x03, -0x29,0x00,0x00,0x03,0x03,0x00,0x40,0x03,0x0d,0x01,0x80,0x03,0x41,0x80,0x01,0x03, -0x40,0x01,0x80,0x03,0x21,0xc0,0x00,0x03,0x29,0x00,0x00,0x03,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x04,0x00,0x05,0x40,0x74,0x79,0x70,0x65,0x00,0x00,0x02,0x3d,0x3d, -0x00,0x00,0x04,0x40,0x6d,0x61,0x78,0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00, -0x00,0x02,0x99,0x00,0x01,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x86,0x00,0x00,0x00, -0x26,0x00,0x00,0x02,0x16,0x80,0x80,0x00,0x0d,0x00,0x00,0x01,0x15,0x80,0x80,0x01, -0xa0,0x40,0x00,0x01,0x16,0xc0,0x00,0x01,0x15,0xc0,0x00,0x01,0x05,0x00,0x80,0x01, -0xb2,0x80,0x00,0x01,0x99,0x00,0x40,0x01,0x29,0x40,0x00,0x01,0x8d,0x01,0x00,0x01, -0x03,0x00,0xc0,0x01,0xb2,0x80,0x00,0x01,0x19,0x09,0x40,0x01,0x15,0xc0,0x00,0x01, -0x20,0x00,0x01,0x01,0x2f,0x41,0x01,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0x80,0x81,0x01,0x15,0xc0,0x00,0x01,0x20,0xc0,0x01,0x01,0x2d,0x08,0x02,0x01, -0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x82,0x01,0x15,0xc0,0x00,0x01, -0x20,0x80,0x02,0x01,0x2f,0x44,0x01,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0xc0,0x82,0x01,0x8d,0x01,0x00,0x01,0x83,0x00,0xc0,0x01,0xb2,0x80,0x00,0x01, -0x19,0x09,0x40,0x01,0x15,0xc0,0x00,0x01,0x20,0x00,0x01,0x01,0x2f,0x44,0x01,0x01, -0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x80,0x81,0x01,0x15,0xc0,0x00,0x01, -0x20,0xc0,0x01,0x01,0x2d,0x08,0x02,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0x40,0x82,0x01,0x15,0xc0,0x00,0x01,0x20,0x80,0x02,0x01,0x2f,0x46,0x01,0x01, -0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x82,0x01,0x8d,0x01,0x00,0x01, -0x03,0x01,0xc0,0x01,0xb2,0x80,0x00,0x01,0x19,0x09,0x40,0x01,0x15,0xc0,0x00,0x01, -0x20,0x00,0x01,0x01,0x2f,0x41,0x01,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0x80,0x81,0x01,0x15,0xc0,0x00,0x01,0x20,0xc0,0x01,0x01,0x2d,0x04,0x02,0x01, -0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x82,0x01,0x15,0xc0,0x00,0x01, -0x20,0x80,0x02,0x01,0x2f,0x44,0x01,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0xc0,0x82,0x01,0x15,0xc0,0x00,0x01,0x20,0x00,0x01,0x01,0x0d,0x06,0x80,0x01, -0xae,0x40,0x01,0x01,0x16,0x00,0x01,0x01,0x15,0xc0,0x00,0x01,0x20,0xc0,0x01,0x01, -0x8d,0x06,0x80,0x01,0xae,0x40,0x01,0x01,0x16,0x40,0x01,0x01,0x15,0xc0,0x00,0x01, -0x20,0x80,0x02,0x01,0x83,0x1f,0xc0,0x01,0xb3,0x80,0x03,0x01,0x98,0x01,0x40,0x01, -0x15,0x00,0x01,0x01,0x83,0xe6,0xbf,0x01,0xb3,0x80,0x03,0x01,0x98,0x01,0x40,0x01, -0x15,0x00,0x01,0x01,0x83,0x76,0xc1,0x01,0xb5,0xc0,0x03,0x01,0x98,0x01,0x40,0x01, -0x15,0x40,0x01,0x01,0x83,0x69,0xbf,0x01,0xb3,0x80,0x03,0x01,0x98,0x01,0x40,0x01, -0x15,0x40,0x01,0x01,0x83,0xf9,0xc0,0x01,0xb5,0xc0,0x03,0x01,0x19,0x0c,0x40,0x01, -0x06,0x00,0x00,0x01,0x83,0x8f,0xc1,0x01,0xa0,0x00,0x04,0x01,0x2f,0x59,0x01,0x01, -0x0d,0x06,0x80,0x01,0xac,0x00,0x02,0x01,0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02, -0xa0,0x80,0x81,0x01,0x06,0x00,0x00,0x01,0x83,0x8f,0xc1,0x01,0xa0,0x00,0x04,0x01, -0x83,0x63,0xc0,0x01,0xae,0x40,0x01,0x01,0x8d,0x06,0x80,0x01,0xac,0x00,0x02,0x01, -0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0x40,0x82,0x01,0x03,0x7f,0x40,0x01, -0x15,0xc0,0x80,0x01,0x01,0x80,0x00,0x02,0xa0,0xc0,0x82,0x01,0x97,0x00,0x40,0x00, -0x05,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11, -0x00,0x08,0x40,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x00,0x02,0x5b,0x5d,0x00, -0x00,0x02,0x3d,0x3d,0x00,0x00,0x05,0x40,0x74,0x79,0x70,0x65,0x00,0x00,0x01,0x78, -0x00,0x00,0x01,0x2d,0x00,0x00,0x02,0x78,0x3d,0x00,0x00,0x01,0x79,0x00,0x00,0x01, -0x2b,0x00,0x00,0x02,0x79,0x3d,0x00,0x00,0x07,0x6f,0x70,0x61,0x63,0x69,0x74,0x79, -0x00,0x00,0x08,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x3d,0x00,0x00,0x03,0x40,0x6f, -0x78,0x00,0x00,0x03,0x40,0x6f,0x79,0x00,0x00,0x01,0x3c,0x00,0x00,0x01,0x3e,0x00, -0x00,0x04,0x72,0x61,0x6e,0x64,0x00,0x00,0x00,0x01,0x45,0x00,0x01,0x00,0x04,0x00, -0x01,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01, -0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x0d,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x0a,0x74,0x69,0x6c,0x65,0x73,0x65,0x74,0x5f,0x69,0x64,0x00,0x00,0x05, -0x77,0x69,0x64,0x74,0x68,0x00,0x00,0x06,0x68,0x65,0x69,0x67,0x68,0x74,0x00,0x00, -0x0c,0x61,0x75,0x74,0x6f,0x70,0x6c,0x61,0x79,0x5f,0x62,0x67,0x6d,0x00,0x00,0x03, -0x62,0x67,0x6d,0x00,0x00,0x0c,0x61,0x75,0x74,0x6f,0x70,0x6c,0x61,0x79,0x5f,0x62, -0x67,0x73,0x00,0x00,0x03,0x62,0x67,0x73,0x00,0x00,0x0e,0x65,0x6e,0x63,0x6f,0x75, -0x6e,0x74,0x65,0x72,0x5f,0x6c,0x69,0x73,0x74,0x00,0x00,0x0e,0x65,0x6e,0x63,0x6f, -0x75,0x6e,0x74,0x65,0x72,0x5f,0x73,0x74,0x65,0x70,0x00,0x00,0x04,0x64,0x61,0x74, -0x61,0x00,0x00,0x06,0x65,0x76,0x65,0x6e,0x74,0x73,0x00,0x00,0x00,0x01,0x42,0x00, -0x04,0x00,0x09,0x00,0x00,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x26,0x00,0x00,0x04, -0x03,0x00,0x40,0x02,0x0e,0x00,0x00,0x02,0x8e,0x00,0x80,0x00,0x0e,0x01,0x00,0x01, -0x08,0x00,0x00,0x02,0x8e,0x01,0x00,0x02,0x91,0x02,0x00,0x02,0x13,0x02,0x00,0x02, -0x20,0x80,0x01,0x02,0x8e,0x03,0x00,0x02,0x08,0x00,0x00,0x02,0x0e,0x04,0x00,0x02, -0x91,0x02,0x00,0x02,0x13,0x02,0x00,0x02,0x3d,0x00,0x80,0x02,0x83,0x27,0x40,0x03, -0x20,0x81,0x01,0x02,0x8e,0x04,0x00,0x02,0x37,0x00,0x01,0x02,0x0e,0x05,0x00,0x02, -0x83,0x0e,0x40,0x02,0x8e,0x05,0x00,0x02,0x11,0x06,0x00,0x02,0x01,0x40,0x80,0x02, -0x01,0x80,0x00,0x03,0x03,0x01,0xc0,0x03,0xa0,0x81,0x01,0x02,0x8e,0x06,0x00,0x02, -0x3f,0x00,0x01,0x02,0x0e,0x07,0x00,0x02,0x29,0x00,0x00,0x02,0x00,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x0b,0x40,0x74,0x69,0x6c,0x65,0x73,0x65, -0x74,0x5f,0x69,0x64,0x00,0x00,0x06,0x40,0x77,0x69,0x64,0x74,0x68,0x00,0x00,0x07, -0x40,0x68,0x65,0x69,0x67,0x68,0x74,0x00,0x00,0x0d,0x40,0x61,0x75,0x74,0x6f,0x70, -0x6c,0x61,0x79,0x5f,0x62,0x67,0x6d,0x00,0x00,0x09,0x41,0x75,0x64,0x69,0x6f,0x46, -0x69,0x6c,0x65,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00, -0x00,0x04,0x40,0x62,0x67,0x6d,0x00,0x00,0x0d,0x40,0x61,0x75,0x74,0x6f,0x70,0x6c, -0x61,0x79,0x5f,0x62,0x67,0x73,0x00,0x00,0x04,0x40,0x62,0x67,0x73,0x00,0x00,0x0f, -0x40,0x65,0x6e,0x63,0x6f,0x75,0x6e,0x74,0x65,0x72,0x5f,0x6c,0x69,0x73,0x74,0x00, -0x00,0x0f,0x40,0x65,0x6e,0x63,0x6f,0x75,0x6e,0x74,0x65,0x72,0x5f,0x73,0x74,0x65, -0x70,0x00,0x00,0x05,0x54,0x61,0x62,0x6c,0x65,0x00,0x00,0x05,0x40,0x64,0x61,0x74, -0x61,0x00,0x00,0x07,0x40,0x65,0x76,0x65,0x6e,0x74,0x73,0x00,0x00,0x00,0x00,0xcb, -0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x16,0x00,0x00,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x0a,0x69,0x6e, -0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f, -0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00, -0x00,0x09,0x70,0x61,0x72,0x65,0x6e,0x74,0x5f,0x69,0x64,0x00,0x00,0x05,0x6f,0x72, -0x64,0x65,0x72,0x00,0x00,0x08,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64,0x00,0x00, -0x08,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x78,0x00,0x00,0x08,0x73,0x63,0x72,0x6f, -0x6c,0x6c,0x5f,0x79,0x00,0x00,0x00,0x00,0x97,0x00,0x02,0x00,0x03,0x00,0x00,0x00, -0x00,0x00,0x0e,0x00,0x26,0x00,0x00,0x00,0x3d,0x00,0x00,0x01,0x0e,0x00,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x01,0x00,0x01, -0x08,0x00,0x00,0x01,0x8e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00, -0x0a,0x40,0x70,0x61,0x72,0x65,0x6e,0x74,0x5f,0x69,0x64,0x00,0x00,0x06,0x40,0x6f, -0x72,0x64,0x65,0x72,0x00,0x00,0x09,0x40,0x65,0x78,0x70,0x61,0x6e,0x64,0x65,0x64, -0x00,0x00,0x09,0x40,0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x78,0x00,0x00,0x09,0x40, -0x73,0x63,0x72,0x6f,0x6c,0x6c,0x5f,0x79,0x00,0x00,0x00,0x00,0xb6,0x00,0x01,0x00, -0x04,0x00,0x02,0x00,0x00,0x00,0x17,0x00,0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01, -0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x48,0x00,0x80,0x00,0xc0,0x02,0x00,0x01, -0x46,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x80,0x80,0x00, -0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00,0x04,0x50,0x61, -0x67,0x65,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00, -0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00, -0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x01,0x78,0x00, -0x00,0x01,0x79,0x00,0x00,0x05,0x70,0x61,0x67,0x65,0x73,0x00,0x00,0x00,0x01,0xbb, -0x00,0x01,0x00,0x04,0x00,0x03,0x00,0x00,0x00,0x33,0x00,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x80,0x00,0xc5,0x00,0x80,0x00,0x48,0x00,0x80,0x00, -0xc0,0x04,0x00,0x01,0x46,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x05,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x07,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x11, -0x00,0x09,0x43,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x07,0x47,0x72, -0x61,0x70,0x68,0x69,0x63,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69, -0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73, -0x6f,0x72,0x00,0x00,0x09,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00, -0x07,0x67,0x72,0x61,0x70,0x68,0x69,0x63,0x00,0x00,0x09,0x6d,0x6f,0x76,0x65,0x5f, -0x74,0x79,0x70,0x65,0x00,0x00,0x0a,0x6d,0x6f,0x76,0x65,0x5f,0x73,0x70,0x65,0x65, -0x64,0x00,0x00,0x0e,0x6d,0x6f,0x76,0x65,0x5f,0x66,0x72,0x65,0x71,0x75,0x65,0x6e, -0x63,0x79,0x00,0x00,0x0a,0x6d,0x6f,0x76,0x65,0x5f,0x72,0x6f,0x75,0x74,0x65,0x00, -0x00,0x0a,0x77,0x61,0x6c,0x6b,0x5f,0x61,0x6e,0x69,0x6d,0x65,0x00,0x00,0x0a,0x73, -0x74,0x65,0x70,0x5f,0x61,0x6e,0x69,0x6d,0x65,0x00,0x00,0x0d,0x64,0x69,0x72,0x65, -0x63,0x74,0x69,0x6f,0x6e,0x5f,0x66,0x69,0x78,0x00,0x00,0x07,0x74,0x68,0x72,0x6f, -0x75,0x67,0x68,0x00,0x00,0x0d,0x61,0x6c,0x77,0x61,0x79,0x73,0x5f,0x6f,0x6e,0x5f, -0x74,0x6f,0x70,0x00,0x00,0x07,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x00,0x00,0x04, -0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x01,0x42,0x00,0x01,0x00,0x04,0x00,0x01,0x00, -0x00,0x00,0x1f,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65, -0x73,0x73,0x6f,0x72,0x00,0x00,0x0d,0x73,0x77,0x69,0x74,0x63,0x68,0x31,0x5f,0x76, -0x61,0x6c,0x69,0x64,0x00,0x00,0x0d,0x73,0x77,0x69,0x74,0x63,0x68,0x32,0x5f,0x76, -0x61,0x6c,0x69,0x64,0x00,0x00,0x0e,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x5f, -0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x11,0x73,0x65,0x6c,0x66,0x5f,0x73,0x77,0x69, -0x74,0x63,0x68,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x0a,0x73,0x77,0x69,0x74, -0x63,0x68,0x31,0x5f,0x69,0x64,0x00,0x00,0x0a,0x73,0x77,0x69,0x74,0x63,0x68,0x32, -0x5f,0x69,0x64,0x00,0x00,0x0b,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x5f,0x69, -0x64,0x00,0x00,0x0e,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x5f,0x76,0x61,0x6c, -0x75,0x65,0x00,0x00,0x0e,0x73,0x65,0x6c,0x66,0x5f,0x73,0x77,0x69,0x74,0x63,0x68, -0x5f,0x63,0x68,0x00,0x00,0x00,0x01,0x06,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00, -0x00,0x14,0x00,0x00,0x26,0x00,0x00,0x00,0x08,0x00,0x00,0x01,0x0e,0x00,0x00,0x01, -0x08,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x08,0x00,0x00,0x01,0x0e,0x01,0x00,0x01, -0x08,0x00,0x00,0x01,0x8e,0x01,0x00,0x01,0x03,0x00,0x40,0x01,0x0e,0x02,0x00,0x01, -0x03,0x00,0x40,0x01,0x8e,0x02,0x00,0x01,0x03,0x00,0x40,0x01,0x0e,0x03,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x04,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x01,0x41,0x00,0x00,0x00,0x09, -0x00,0x0e,0x40,0x73,0x77,0x69,0x74,0x63,0x68,0x31,0x5f,0x76,0x61,0x6c,0x69,0x64, -0x00,0x00,0x0e,0x40,0x73,0x77,0x69,0x74,0x63,0x68,0x32,0x5f,0x76,0x61,0x6c,0x69, -0x64,0x00,0x00,0x0f,0x40,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x5f,0x76,0x61, -0x6c,0x69,0x64,0x00,0x00,0x12,0x40,0x73,0x65,0x6c,0x66,0x5f,0x73,0x77,0x69,0x74, -0x63,0x68,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x0b,0x40,0x73,0x77,0x69,0x74, -0x63,0x68,0x31,0x5f,0x69,0x64,0x00,0x00,0x0b,0x40,0x73,0x77,0x69,0x74,0x63,0x68, -0x32,0x5f,0x69,0x64,0x00,0x00,0x0c,0x40,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65, -0x5f,0x69,0x64,0x00,0x00,0x0f,0x40,0x76,0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x5f, -0x76,0x61,0x6c,0x75,0x65,0x00,0x00,0x0f,0x40,0x73,0x65,0x6c,0x66,0x5f,0x73,0x77, -0x69,0x74,0x63,0x68,0x5f,0x63,0x68,0x00,0x00,0x00,0x00,0xf3,0x00,0x01,0x00,0x04, -0x00,0x01,0x00,0x00,0x00,0x19,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01, -0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x09,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x07,0x74,0x69,0x6c,0x65,0x5f,0x69,0x64,0x00,0x00,0x0e,0x63,0x68,0x61, -0x72,0x61,0x63,0x74,0x65,0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x63,0x68, -0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x5f,0x68,0x75,0x65,0x00,0x00,0x09,0x64,0x69, -0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x00,0x00,0x07,0x70,0x61,0x74,0x74,0x65,0x72, -0x6e,0x00,0x00,0x07,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x00,0x00,0x0a,0x62,0x6c, -0x65,0x6e,0x64,0x5f,0x74,0x79,0x70,0x65,0x00,0x00,0x00,0x00,0xbc,0x00,0x02,0x00, -0x03,0x00,0x00,0x00,0x00,0x00,0x10,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01, -0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x01,0x00,0x01,0x83,0x00,0x40,0x01,0x8e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x02,0x00,0x01,0x03,0x7f,0x40,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x03,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x07,0x00,0x08,0x40,0x74,0x69,0x6c,0x65,0x5f,0x69,0x64,0x00,0x00,0x0f, -0x40,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00, -0x00,0x0e,0x40,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x5f,0x68,0x75,0x65, -0x00,0x00,0x0a,0x40,0x64,0x69,0x72,0x65,0x63,0x74,0x69,0x6f,0x6e,0x00,0x00,0x08, -0x40,0x70,0x61,0x74,0x74,0x65,0x72,0x6e,0x00,0x00,0x08,0x40,0x6f,0x70,0x61,0x63, -0x69,0x74,0x79,0x00,0x00,0x0b,0x40,0x62,0x6c,0x65,0x6e,0x64,0x5f,0x74,0x79,0x70, -0x65,0x00,0x00,0x00,0x01,0xb9,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x29, -0x26,0x00,0x00,0x00,0x91,0x01,0x00,0x01,0x13,0x01,0x00,0x01,0x93,0x00,0x00,0x01, -0x13,0x00,0x00,0x01,0x20,0x00,0x01,0x01,0x8e,0x02,0x00,0x01,0x91,0x01,0x00,0x01, -0x13,0x01,0x00,0x01,0x93,0x00,0x00,0x01,0x13,0x03,0x00,0x01,0x20,0x00,0x01,0x01, -0x8e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x04,0x00,0x01,0x03,0x01,0x40,0x01, -0x8e,0x04,0x00,0x01,0x03,0x01,0x40,0x01,0x0e,0x05,0x00,0x01,0x91,0x01,0x00,0x01, -0x93,0x05,0x00,0x01,0x20,0x00,0x01,0x01,0x0e,0x06,0x00,0x01,0x07,0x00,0x00,0x01, -0x8e,0x06,0x00,0x01,0x08,0x00,0x00,0x01,0x0e,0x07,0x00,0x01,0x08,0x00,0x00,0x01, -0x8e,0x07,0x00,0x01,0x08,0x00,0x00,0x01,0x0e,0x08,0x00,0x01,0x08,0x00,0x00,0x01, -0x8e,0x08,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x09,0x00,0x01,0x91,0x01,0x00,0x01, -0x93,0x09,0x00,0x01,0x20,0x00,0x01,0x01,0xb7,0x80,0x00,0x01,0x0e,0x0a,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x15,0x00,0x09,0x43,0x6f, -0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x04,0x50,0x61,0x67,0x65,0x00,0x00, -0x05,0x45,0x76,0x65,0x6e,0x74,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e, -0x65,0x77,0x00,0x00,0x0a,0x40,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x07,0x47,0x72,0x61,0x70,0x68,0x69,0x63,0x00,0x00,0x08,0x40,0x67,0x72,0x61, -0x70,0x68,0x69,0x63,0x00,0x00,0x0a,0x40,0x6d,0x6f,0x76,0x65,0x5f,0x74,0x79,0x70, -0x65,0x00,0x00,0x0b,0x40,0x6d,0x6f,0x76,0x65,0x5f,0x73,0x70,0x65,0x65,0x64,0x00, -0x00,0x0f,0x40,0x6d,0x6f,0x76,0x65,0x5f,0x66,0x72,0x65,0x71,0x75,0x65,0x6e,0x63, -0x79,0x00,0x00,0x09,0x4d,0x6f,0x76,0x65,0x52,0x6f,0x75,0x74,0x65,0x00,0x00,0x0b, -0x40,0x6d,0x6f,0x76,0x65,0x5f,0x72,0x6f,0x75,0x74,0x65,0x00,0x00,0x0b,0x40,0x77, -0x61,0x6c,0x6b,0x5f,0x61,0x6e,0x69,0x6d,0x65,0x00,0x00,0x0b,0x40,0x73,0x74,0x65, -0x70,0x5f,0x61,0x6e,0x69,0x6d,0x65,0x00,0x00,0x0e,0x40,0x64,0x69,0x72,0x65,0x63, -0x74,0x69,0x6f,0x6e,0x5f,0x66,0x69,0x78,0x00,0x00,0x08,0x40,0x74,0x68,0x72,0x6f, -0x75,0x67,0x68,0x00,0x00,0x0e,0x40,0x61,0x6c,0x77,0x61,0x79,0x73,0x5f,0x6f,0x6e, -0x5f,0x74,0x6f,0x70,0x00,0x00,0x08,0x40,0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x00, -0x00,0x0c,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x00,0x00, -0x05,0x40,0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x00,0x91,0x00,0x04,0x00,0x06,0x00, -0x00,0x00,0x00,0x00,0x0e,0x00,0x00,0x00,0x26,0x00,0x00,0x04,0x83,0xff,0x3f,0x02, -0x0e,0x00,0x00,0x02,0x3d,0x00,0x00,0x02,0x8e,0x00,0x00,0x02,0x0e,0x01,0x80,0x00, -0x8e,0x01,0x00,0x01,0x11,0x03,0x00,0x02,0x93,0x02,0x00,0x02,0x13,0x02,0x00,0x02, -0x20,0xc0,0x01,0x02,0xb7,0x00,0x01,0x02,0x0e,0x04,0x00,0x02,0x29,0x00,0x00,0x02, -0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x03,0x40,0x69,0x64, -0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x02,0x40,0x78,0x00,0x00,0x02, -0x40,0x79,0x00,0x00,0x04,0x50,0x61,0x67,0x65,0x00,0x00,0x05,0x45,0x76,0x65,0x6e, -0x74,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x06, -0x40,0x70,0x61,0x67,0x65,0x73,0x00,0x00,0x00,0x00,0x88,0x00,0x01,0x00,0x04,0x00, -0x01,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01, -0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x05,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x04,0x63,0x6f,0x64,0x65,0x00,0x00,0x06,0x69,0x6e,0x64,0x65,0x6e,0x74, -0x00,0x00,0x0a,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x00,0x00,0x00, -0x00,0x6a,0x00,0x05,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x0c,0x26,0x00,0x30,0x00, -0x97,0x01,0x40,0x00,0x97,0x01,0x40,0x00,0x97,0x01,0x40,0x00,0x97,0x01,0x40,0x00, -0x83,0xff,0xbf,0x00,0x83,0xff,0x3f,0x01,0x37,0x40,0x81,0x01,0x0e,0x00,0x80,0x00, -0x8e,0x00,0x00,0x01,0x0e,0x01,0x80,0x01,0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x03,0x00,0x05,0x40,0x63,0x6f,0x64,0x65,0x00,0x00,0x07,0x40,0x69, -0x6e,0x64,0x65,0x6e,0x74,0x00,0x00,0x0b,0x40,0x70,0x61,0x72,0x61,0x6d,0x65,0x74, -0x65,0x72,0x73,0x00,0x00,0x00,0x00,0x87,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00, -0x00,0x0d,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05, -0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61, -0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x06,0x72, -0x65,0x70,0x65,0x61,0x74,0x00,0x00,0x09,0x73,0x6b,0x69,0x70,0x70,0x61,0x62,0x6c, -0x65,0x00,0x00,0x04,0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x00,0x7f,0x00,0x02,0x00, -0x04,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x26,0x00,0x00,0x00,0x07,0x00,0x00,0x01, -0x0e,0x00,0x00,0x01,0x08,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x91,0x01,0x00,0x01, -0x13,0x01,0x00,0x01,0x20,0x00,0x01,0x01,0xb7,0x80,0x00,0x01,0x8e,0x02,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x07,0x40,0x72, -0x65,0x70,0x65,0x61,0x74,0x00,0x00,0x0a,0x40,0x73,0x6b,0x69,0x70,0x70,0x61,0x62, -0x6c,0x65,0x00,0x00,0x0b,0x4d,0x6f,0x76,0x65,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64, -0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x05,0x40, -0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x00,0x73,0x00,0x01,0x00,0x04,0x00,0x01,0x00, -0x00,0x00,0x0a,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x04,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x04,0x63,0x6f,0x64,0x65,0x00,0x00,0x0a,0x70,0x61,0x72,0x61,0x6d,0x65, -0x74,0x65,0x72,0x73,0x00,0x00,0x00,0x00,0x54,0x00,0x04,0x00,0x05,0x00,0x00,0x00, -0x00,0x00,0x09,0x00,0x26,0x00,0x20,0x00,0x17,0x01,0x40,0x00,0x17,0x01,0x40,0x00, -0x17,0x01,0x40,0x00,0x83,0xff,0xbf,0x00,0x37,0x00,0x01,0x01,0x0e,0x00,0x80,0x00, -0x8e,0x00,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02, -0x00,0x05,0x40,0x63,0x6f,0x64,0x65,0x00,0x00,0x0b,0x40,0x70,0x61,0x72,0x61,0x6d, -0x65,0x74,0x65,0x72,0x73,0x00,0x00,0x00,0x02,0x68,0x00,0x01,0x00,0x04,0x00,0x01, -0x00,0x00,0x00,0x46,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0a,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x18,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x08,0x63, -0x6c,0x61,0x73,0x73,0x5f,0x69,0x64,0x00,0x00,0x0d,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x5f,0x6c,0x65,0x76,0x65,0x6c,0x00,0x00,0x0b,0x66,0x69,0x6e,0x61,0x6c,0x5f, -0x6c,0x65,0x76,0x65,0x6c,0x00,0x00,0x09,0x65,0x78,0x70,0x5f,0x62,0x61,0x73,0x69, -0x73,0x00,0x00,0x0d,0x65,0x78,0x70,0x5f,0x69,0x6e,0x66,0x6c,0x61,0x74,0x69,0x6f, -0x6e,0x00,0x00,0x0e,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x5f,0x6e,0x61, -0x6d,0x65,0x00,0x00,0x0d,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x5f,0x68, -0x75,0x65,0x00,0x00,0x0c,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x6e,0x61,0x6d, -0x65,0x00,0x00,0x0b,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x68,0x75,0x65,0x00, -0x00,0x0a,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x00,0x00,0x09,0x77, -0x65,0x61,0x70,0x6f,0x6e,0x5f,0x69,0x64,0x00,0x00,0x09,0x61,0x72,0x6d,0x6f,0x72, -0x31,0x5f,0x69,0x64,0x00,0x00,0x09,0x61,0x72,0x6d,0x6f,0x72,0x32,0x5f,0x69,0x64, -0x00,0x00,0x09,0x61,0x72,0x6d,0x6f,0x72,0x33,0x5f,0x69,0x64,0x00,0x00,0x09,0x61, -0x72,0x6d,0x6f,0x72,0x34,0x5f,0x69,0x64,0x00,0x00,0x0a,0x77,0x65,0x61,0x70,0x6f, -0x6e,0x5f,0x66,0x69,0x78,0x00,0x00,0x0a,0x61,0x72,0x6d,0x6f,0x72,0x31,0x5f,0x66, -0x69,0x78,0x00,0x00,0x0a,0x61,0x72,0x6d,0x6f,0x72,0x32,0x5f,0x66,0x69,0x78,0x00, -0x00,0x0a,0x61,0x72,0x6d,0x6f,0x72,0x33,0x5f,0x66,0x69,0x78,0x00,0x00,0x0a,0x61, -0x72,0x6d,0x6f,0x72,0x34,0x5f,0x66,0x69,0x78,0x00,0x00,0x00,0x02,0x39,0x00,0x03, -0x00,0x07,0x00,0x01,0x00,0x00,0x00,0x36,0x26,0x00,0x00,0x00,0x83,0xff,0xbf,0x01, -0x0e,0x00,0x80,0x01,0x3d,0x00,0x80,0x01,0x8e,0x00,0x80,0x01,0x03,0x00,0xc0,0x01, -0x0e,0x01,0x80,0x01,0x03,0x00,0xc0,0x01,0x8e,0x01,0x80,0x01,0x03,0x31,0xc0,0x01, -0x0e,0x02,0x80,0x01,0x83,0x0e,0xc0,0x01,0x8e,0x02,0x80,0x01,0x83,0x0e,0xc0,0x01, -0x0e,0x03,0x80,0x01,0x3d,0x00,0x80,0x01,0x8e,0x03,0x80,0x01,0x83,0xff,0xbf,0x01, -0x0e,0x04,0x80,0x01,0x3d,0x00,0x80,0x01,0x8e,0x04,0x80,0x01,0x83,0xff,0xbf,0x01, -0x0e,0x05,0x80,0x01,0x91,0x05,0x80,0x01,0x83,0x02,0x40,0x02,0x83,0x31,0xc0,0x02, -0x20,0x01,0x83,0x01,0x8e,0x06,0x80,0x01,0x03,0x00,0xc0,0x01,0x03,0x31,0x40,0x02, -0x41,0xc0,0x80,0x01,0x40,0x01,0x00,0x02,0x21,0x80,0x83,0x01,0x83,0xff,0xbf,0x01, -0x8e,0x07,0x80,0x01,0x83,0xff,0xbf,0x01,0x0e,0x08,0x80,0x01,0x83,0xff,0xbf,0x01, -0x8e,0x08,0x80,0x01,0x83,0xff,0xbf,0x01,0x0e,0x09,0x80,0x01,0x83,0xff,0xbf,0x01, -0x8e,0x09,0x80,0x01,0x08,0x00,0x80,0x01,0x0e,0x0a,0x80,0x01,0x08,0x00,0x80,0x01, -0x8e,0x0a,0x80,0x01,0x08,0x00,0x80,0x01,0x0e,0x0b,0x80,0x01,0x08,0x00,0x80,0x01, -0x8e,0x0b,0x80,0x01,0x08,0x00,0x80,0x01,0x0e,0x0c,0x80,0x01,0x29,0x00,0x80,0x01, -0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x19,0x00,0x03,0x40,0x69,0x64, -0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x09,0x40,0x63,0x6c,0x61,0x73, -0x73,0x5f,0x69,0x64,0x00,0x00,0x0e,0x40,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x5f, -0x6c,0x65,0x76,0x65,0x6c,0x00,0x00,0x0c,0x40,0x66,0x69,0x6e,0x61,0x6c,0x5f,0x6c, -0x65,0x76,0x65,0x6c,0x00,0x00,0x0a,0x40,0x65,0x78,0x70,0x5f,0x62,0x61,0x73,0x69, -0x73,0x00,0x00,0x0e,0x40,0x65,0x78,0x70,0x5f,0x69,0x6e,0x66,0x6c,0x61,0x74,0x69, -0x6f,0x6e,0x00,0x00,0x0f,0x40,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65,0x72,0x5f, -0x6e,0x61,0x6d,0x65,0x00,0x00,0x0e,0x40,0x63,0x68,0x61,0x72,0x61,0x63,0x74,0x65, -0x72,0x5f,0x68,0x75,0x65,0x00,0x00,0x0d,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x72, -0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x72, -0x5f,0x68,0x75,0x65,0x00,0x00,0x05,0x54,0x61,0x62,0x6c,0x65,0x00,0x00,0x03,0x6e, -0x65,0x77,0x00,0x00,0x0b,0x40,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73, -0x00,0x00,0x04,0x65,0x61,0x63,0x68,0x00,0x00,0x0a,0x40,0x77,0x65,0x61,0x70,0x6f, -0x6e,0x5f,0x69,0x64,0x00,0x00,0x0a,0x40,0x61,0x72,0x6d,0x6f,0x72,0x31,0x5f,0x69, -0x64,0x00,0x00,0x0a,0x40,0x61,0x72,0x6d,0x6f,0x72,0x32,0x5f,0x69,0x64,0x00,0x00, -0x0a,0x40,0x61,0x72,0x6d,0x6f,0x72,0x33,0x5f,0x69,0x64,0x00,0x00,0x0a,0x40,0x61, -0x72,0x6d,0x6f,0x72,0x34,0x5f,0x69,0x64,0x00,0x00,0x0b,0x40,0x77,0x65,0x61,0x70, -0x6f,0x6e,0x5f,0x66,0x69,0x78,0x00,0x00,0x0b,0x40,0x61,0x72,0x6d,0x6f,0x72,0x31, -0x5f,0x66,0x69,0x78,0x00,0x00,0x0b,0x40,0x61,0x72,0x6d,0x6f,0x72,0x32,0x5f,0x66, -0x69,0x78,0x00,0x00,0x0b,0x40,0x61,0x72,0x6d,0x6f,0x72,0x33,0x5f,0x66,0x69,0x78, -0x00,0x00,0x0b,0x40,0x61,0x72,0x6d,0x6f,0x72,0x34,0x5f,0x66,0x69,0x78,0x00,0x00, -0x00,0x01,0x32,0x00,0x01,0x00,0x08,0x00,0x00,0x00,0x00,0x00,0x3f,0x00,0x00,0x00, -0x26,0x00,0x00,0x02,0x16,0x80,0x80,0x00,0x83,0xf9,0x40,0x01,0x15,0x80,0x80,0x01, -0x83,0x18,0x40,0x02,0xb0,0x40,0x80,0x01,0xac,0x00,0x00,0x01,0x0d,0x01,0x80,0x01, -0x83,0xff,0x3f,0x02,0x15,0x80,0x80,0x02,0x01,0x80,0x00,0x03,0xa0,0xc1,0x80,0x01, -0x83,0xf9,0x40,0x01,0x15,0x80,0x80,0x01,0x83,0x18,0x40,0x02,0xb0,0x40,0x80,0x01, -0xac,0x00,0x00,0x01,0x0d,0x01,0x80,0x01,0x03,0x00,0x40,0x02,0x15,0x80,0x80,0x02, -0x01,0x80,0x00,0x03,0xa0,0xc1,0x80,0x01,0x83,0x18,0x40,0x01,0x15,0x80,0x80,0x01, -0x03,0x02,0x40,0x02,0xb0,0x40,0x80,0x01,0xac,0x00,0x00,0x01,0x0d,0x01,0x80,0x01, -0x83,0x00,0x40,0x02,0x15,0x80,0x80,0x02,0x01,0x80,0x00,0x03,0xa0,0xc1,0x80,0x01, -0x83,0x18,0x40,0x01,0x15,0x80,0x80,0x01,0x03,0x02,0x40,0x02,0xb0,0x40,0x80,0x01, -0xac,0x00,0x00,0x01,0x0d,0x01,0x80,0x01,0x03,0x01,0x40,0x02,0x15,0x80,0x80,0x02, -0x01,0x80,0x00,0x03,0xa0,0xc1,0x80,0x01,0x83,0x18,0x40,0x01,0x15,0x80,0x80,0x01, -0x03,0x02,0x40,0x02,0xb0,0x40,0x80,0x01,0xac,0x00,0x00,0x01,0x0d,0x01,0x80,0x01, -0x83,0x01,0x40,0x02,0x15,0x80,0x80,0x02,0x01,0x80,0x00,0x03,0xa0,0xc1,0x80,0x01, -0x83,0x18,0x40,0x01,0x15,0x80,0x80,0x01,0x03,0x02,0x40,0x02,0xb0,0x40,0x80,0x01, -0xac,0x00,0x00,0x01,0x0d,0x01,0x80,0x01,0x03,0x02,0x40,0x02,0x15,0x80,0x80,0x02, -0x01,0x80,0x00,0x03,0xa0,0xc1,0x80,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x04,0x00,0x01,0x2b,0x00,0x00,0x01,0x2a,0x00,0x00,0x0b,0x40,0x70, -0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x00,0x00,0x03,0x5b,0x5d,0x3d,0x00, -0x00,0x00,0x01,0x1c,0x00,0x01,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x20,0x00,0x00, -0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01,0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00, -0x48,0x00,0x80,0x00,0xc0,0x02,0x00,0x01,0x46,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x80,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x08,0x4c,0x65,0x61,0x72,0x6e,0x69, -0x6e,0x67,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00, -0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00, -0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x08,0x70,0x6f, -0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0a,0x77,0x65,0x61,0x70,0x6f,0x6e,0x5f, -0x73,0x65,0x74,0x00,0x00,0x09,0x61,0x72,0x6d,0x6f,0x72,0x5f,0x73,0x65,0x74,0x00, -0x00,0x0d,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x72,0x61,0x6e,0x6b,0x73,0x00, -0x00,0x0b,0x73,0x74,0x61,0x74,0x65,0x5f,0x72,0x61,0x6e,0x6b,0x73,0x00,0x00,0x09, -0x6c,0x65,0x61,0x72,0x6e,0x69,0x6e,0x67,0x73,0x00,0x00,0x00,0x00,0x72,0x00,0x01, -0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x0a,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01, -0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65, -0x73,0x73,0x6f,0x72,0x00,0x00,0x05,0x6c,0x65,0x76,0x65,0x6c,0x00,0x00,0x08,0x73, -0x6b,0x69,0x6c,0x6c,0x5f,0x69,0x64,0x00,0x00,0x00,0x00,0x47,0x00,0x02,0x00,0x03, -0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x00,0x26,0x00,0x00,0x00,0x03,0x00,0x40,0x01, -0x0e,0x00,0x00,0x01,0x03,0x00,0x40,0x01,0x8e,0x00,0x00,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,0x00,0x06,0x40,0x6c,0x65,0x76,0x65,0x6c, -0x00,0x00,0x09,0x40,0x73,0x6b,0x69,0x6c,0x6c,0x5f,0x69,0x64,0x00,0x00,0x00,0x00, -0xe5,0x00,0x02,0x00,0x05,0x00,0x00,0x00,0x00,0x00,0x16,0x00,0x26,0x00,0x00,0x00, -0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x01,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x01,0x00,0x01, -0x37,0x80,0x00,0x01,0x0e,0x02,0x00,0x01,0x91,0x02,0x00,0x01,0x03,0x00,0xc0,0x01, -0xa0,0x80,0x01,0x01,0x8e,0x03,0x00,0x01,0x91,0x02,0x00,0x01,0x03,0x00,0xc0,0x01, -0xa0,0x80,0x01,0x01,0x0e,0x04,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x04,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, -0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x09,0x40, -0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0b,0x40,0x77,0x65,0x61,0x70, -0x6f,0x6e,0x5f,0x73,0x65,0x74,0x00,0x00,0x0a,0x40,0x61,0x72,0x6d,0x6f,0x72,0x5f, -0x73,0x65,0x74,0x00,0x00,0x05,0x54,0x61,0x62,0x6c,0x65,0x00,0x00,0x03,0x6e,0x65, -0x77,0x00,0x00,0x0e,0x40,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x72,0x61,0x6e, -0x6b,0x73,0x00,0x00,0x0c,0x40,0x73,0x74,0x61,0x74,0x65,0x5f,0x72,0x61,0x6e,0x6b, -0x73,0x00,0x00,0x0a,0x40,0x6c,0x65,0x61,0x72,0x6e,0x69,0x6e,0x67,0x73,0x00,0x00, -0x00,0x02,0x7e,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x4f,0x00,0x00,0x00, -0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x09,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0b,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0c,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0c,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0d,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x1b,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x09,0x69, -0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0b,0x64,0x65,0x73,0x63,0x72, -0x69,0x70,0x74,0x69,0x6f,0x6e,0x00,0x00,0x05,0x73,0x63,0x6f,0x70,0x65,0x00,0x00, -0x08,0x6f,0x63,0x63,0x61,0x73,0x69,0x6f,0x6e,0x00,0x00,0x0d,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0d,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x07,0x6d,0x65,0x6e,0x75, -0x5f,0x73,0x65,0x00,0x00,0x0f,0x63,0x6f,0x6d,0x6d,0x6f,0x6e,0x5f,0x65,0x76,0x65, -0x6e,0x74,0x5f,0x69,0x64,0x00,0x00,0x07,0x73,0x70,0x5f,0x63,0x6f,0x73,0x74,0x00, -0x00,0x05,0x70,0x6f,0x77,0x65,0x72,0x00,0x00,0x05,0x61,0x74,0x6b,0x5f,0x66,0x00, -0x00,0x05,0x65,0x76,0x61,0x5f,0x66,0x00,0x00,0x05,0x73,0x74,0x72,0x5f,0x66,0x00, -0x00,0x05,0x64,0x65,0x78,0x5f,0x66,0x00,0x00,0x05,0x61,0x67,0x69,0x5f,0x66,0x00, -0x00,0x05,0x69,0x6e,0x74,0x5f,0x66,0x00,0x00,0x03,0x68,0x69,0x74,0x00,0x00,0x06, -0x70,0x64,0x65,0x66,0x5f,0x66,0x00,0x00,0x06,0x6d,0x64,0x65,0x66,0x5f,0x66,0x00, -0x00,0x08,0x76,0x61,0x72,0x69,0x61,0x6e,0x63,0x65,0x00,0x00,0x0b,0x65,0x6c,0x65, -0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0e,0x70,0x6c,0x75,0x73,0x5f, -0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f,0x6d,0x69,0x6e,0x75, -0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x00,0x02,0x39, -0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x38,0x00,0x00,0x26,0x00,0x00,0x00, -0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01, -0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x01,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01,0x03,0x00,0x40,0x01,0x8e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01, -0x91,0x04,0x00,0x01,0x13,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0x81,0x02,0x01,0x8e,0x05,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x06,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x06,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x07,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x07,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x08,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x08,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x09,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x09,0x00,0x01,0x83,0x31,0x40,0x01,0x0e,0x0a,0x00,0x01, -0x83,0x31,0x40,0x01,0x8e,0x0a,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x0b,0x00,0x01, -0x83,0x31,0x40,0x01,0x8e,0x0b,0x00,0x01,0x03,0x07,0x40,0x01,0x0e,0x0c,0x00,0x01, -0x37,0x80,0x00,0x01,0x8e,0x0c,0x00,0x01,0x37,0x80,0x00,0x01,0x0e,0x0d,0x00,0x01, -0x37,0x80,0x00,0x01,0x8e,0x0d,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40, -0x6e,0x61,0x6d,0x65,0x00,0x00,0x0a,0x40,0x69,0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d, -0x65,0x00,0x00,0x0c,0x40,0x64,0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x06,0x40,0x73,0x63,0x6f,0x70,0x65,0x00,0x00,0x09,0x40,0x6f,0x63,0x63, -0x61,0x73,0x69,0x6f,0x6e,0x00,0x00,0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61,0x74, -0x69,0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x09,0x41,0x75,0x64,0x69,0x6f,0x46, -0x69,0x6c,0x65,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00, -0x00,0x08,0x40,0x6d,0x65,0x6e,0x75,0x5f,0x73,0x65,0x00,0x00,0x10,0x40,0x63,0x6f, -0x6d,0x6d,0x6f,0x6e,0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x69,0x64,0x00,0x00,0x08, -0x40,0x73,0x70,0x5f,0x63,0x6f,0x73,0x74,0x00,0x00,0x06,0x40,0x70,0x6f,0x77,0x65, -0x72,0x00,0x00,0x06,0x40,0x61,0x74,0x6b,0x5f,0x66,0x00,0x00,0x06,0x40,0x65,0x76, -0x61,0x5f,0x66,0x00,0x00,0x06,0x40,0x73,0x74,0x72,0x5f,0x66,0x00,0x00,0x06,0x40, -0x64,0x65,0x78,0x5f,0x66,0x00,0x00,0x06,0x40,0x61,0x67,0x69,0x5f,0x66,0x00,0x00, -0x06,0x40,0x69,0x6e,0x74,0x5f,0x66,0x00,0x00,0x04,0x40,0x68,0x69,0x74,0x00,0x00, -0x07,0x40,0x70,0x64,0x65,0x66,0x5f,0x66,0x00,0x00,0x07,0x40,0x6d,0x64,0x65,0x66, -0x5f,0x66,0x00,0x00,0x09,0x40,0x76,0x61,0x72,0x69,0x61,0x6e,0x63,0x65,0x00,0x00, -0x0c,0x40,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f, -0x40,0x70,0x6c,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00, -0x00,0x10,0x40,0x6d,0x69,0x6e,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73, -0x65,0x74,0x00,0x00,0x00,0x02,0xb3,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00, -0x4f,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0a,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0c,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0c,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x0d,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1b,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65, -0x73,0x73,0x6f,0x72,0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65, -0x00,0x00,0x09,0x69,0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0b,0x64, -0x65,0x73,0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x00,0x00,0x05,0x73,0x63,0x6f, -0x70,0x65,0x00,0x00,0x08,0x6f,0x63,0x63,0x61,0x73,0x69,0x6f,0x6e,0x00,0x00,0x0d, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0d, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x07, -0x6d,0x65,0x6e,0x75,0x5f,0x73,0x65,0x00,0x00,0x0f,0x63,0x6f,0x6d,0x6d,0x6f,0x6e, -0x5f,0x65,0x76,0x65,0x6e,0x74,0x5f,0x69,0x64,0x00,0x00,0x05,0x70,0x72,0x69,0x63, -0x65,0x00,0x00,0x0a,0x63,0x6f,0x6e,0x73,0x75,0x6d,0x61,0x62,0x6c,0x65,0x00,0x00, -0x0e,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x5f,0x74,0x79,0x70,0x65,0x00, -0x00,0x10,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x5f,0x70,0x6f,0x69,0x6e, -0x74,0x73,0x00,0x00,0x0f,0x72,0x65,0x63,0x6f,0x76,0x65,0x72,0x5f,0x68,0x70,0x5f, -0x72,0x61,0x74,0x65,0x00,0x00,0x0a,0x72,0x65,0x63,0x6f,0x76,0x65,0x72,0x5f,0x68, -0x70,0x00,0x00,0x0f,0x72,0x65,0x63,0x6f,0x76,0x65,0x72,0x5f,0x73,0x70,0x5f,0x72, -0x61,0x74,0x65,0x00,0x00,0x0a,0x72,0x65,0x63,0x6f,0x76,0x65,0x72,0x5f,0x73,0x70, -0x00,0x00,0x03,0x68,0x69,0x74,0x00,0x00,0x06,0x70,0x64,0x65,0x66,0x5f,0x66,0x00, -0x00,0x06,0x6d,0x64,0x65,0x66,0x5f,0x66,0x00,0x00,0x08,0x76,0x61,0x72,0x69,0x61, -0x6e,0x63,0x65,0x00,0x00,0x0b,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65, -0x74,0x00,0x00,0x0e,0x70,0x6c,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73, -0x65,0x74,0x00,0x00,0x0f,0x6d,0x69,0x6e,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65, -0x5f,0x73,0x65,0x74,0x00,0x00,0x00,0x02,0x6e,0x00,0x02,0x00,0x06,0x00,0x00,0x00, -0x00,0x00,0x38,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01,0x91,0x04,0x00,0x01,0x13,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0x81,0x02,0x01,0x8e,0x05,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x06,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x06,0x00,0x01, -0x07,0x00,0x00,0x01,0x0e,0x07,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x07,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x08,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x08,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x09,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x09,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x0a,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x0a,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x0b,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x0b,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x0c,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x0c,0x00,0x01, -0x37,0x80,0x00,0x01,0x0e,0x0d,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x0d,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00, -0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0a,0x40, -0x69,0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x40,0x64,0x65,0x73, -0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x00,0x00,0x06,0x40,0x73,0x63,0x6f,0x70, -0x65,0x00,0x00,0x09,0x40,0x6f,0x63,0x63,0x61,0x73,0x69,0x6f,0x6e,0x00,0x00,0x0e, -0x40,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00, -0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00, -0x00,0x09,0x41,0x75,0x64,0x69,0x6f,0x46,0x69,0x6c,0x65,0x00,0x00,0x03,0x52,0x50, -0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x08,0x40,0x6d,0x65,0x6e,0x75,0x5f, -0x73,0x65,0x00,0x00,0x10,0x40,0x63,0x6f,0x6d,0x6d,0x6f,0x6e,0x5f,0x65,0x76,0x65, -0x6e,0x74,0x5f,0x69,0x64,0x00,0x00,0x06,0x40,0x70,0x72,0x69,0x63,0x65,0x00,0x00, -0x0b,0x40,0x63,0x6f,0x6e,0x73,0x75,0x6d,0x61,0x62,0x6c,0x65,0x00,0x00,0x0f,0x40, -0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x5f,0x74,0x79,0x70,0x65,0x00,0x00, -0x11,0x40,0x70,0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x5f,0x70,0x6f,0x69,0x6e, -0x74,0x73,0x00,0x00,0x10,0x40,0x72,0x65,0x63,0x6f,0x76,0x65,0x72,0x5f,0x68,0x70, -0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x0b,0x40,0x72,0x65,0x63,0x6f,0x76,0x65,0x72, -0x5f,0x68,0x70,0x00,0x00,0x10,0x40,0x72,0x65,0x63,0x6f,0x76,0x65,0x72,0x5f,0x73, -0x70,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x0b,0x40,0x72,0x65,0x63,0x6f,0x76,0x65, -0x72,0x5f,0x73,0x70,0x00,0x00,0x04,0x40,0x68,0x69,0x74,0x00,0x00,0x07,0x40,0x70, -0x64,0x65,0x66,0x5f,0x66,0x00,0x00,0x07,0x40,0x6d,0x64,0x65,0x66,0x5f,0x66,0x00, -0x00,0x09,0x40,0x76,0x61,0x72,0x69,0x61,0x6e,0x63,0x65,0x00,0x00,0x0c,0x40,0x65, -0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f,0x40,0x70,0x6c, -0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x10,0x40, -0x6d,0x69,0x6e,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00, -0x00,0x00,0x01,0xd2,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x37,0x00,0x00, -0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x13,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x09,0x69, -0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0b,0x64,0x65,0x73,0x63,0x72, -0x69,0x70,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x05,0x70,0x72,0x69,0x63,0x65,0x00,0x00, -0x03,0x61,0x74,0x6b,0x00,0x00,0x04,0x70,0x64,0x65,0x66,0x00,0x00,0x04,0x6d,0x64, -0x65,0x66,0x00,0x00,0x08,0x73,0x74,0x72,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x08, -0x64,0x65,0x78,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x08,0x61,0x67,0x69,0x5f,0x70, -0x6c,0x75,0x73,0x00,0x00,0x08,0x69,0x6e,0x74,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00, -0x0b,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0e,0x70, -0x6c,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f, -0x6d,0x69,0x6e,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00, -0x00,0x00,0x01,0x7d,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x24,0x00,0x00, -0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01, -0x8e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01,0x3d,0x00,0x00,0x01, -0x8e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x04,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x04,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x05,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x05,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x06,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x06,0x00,0x01,0x37,0x80,0x00,0x01,0x0e,0x07,0x00,0x01,0x37,0x80,0x00,0x01, -0x8e,0x07,0x00,0x01,0x37,0x80,0x00,0x01,0x0e,0x08,0x00,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x11,0x00,0x03,0x40,0x69,0x64, -0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0a,0x40,0x69,0x63,0x6f,0x6e, -0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x40,0x64,0x65,0x73,0x63,0x72,0x69,0x70, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f, -0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69, -0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x06,0x40,0x70,0x72,0x69,0x63,0x65,0x00, -0x00,0x04,0x40,0x61,0x74,0x6b,0x00,0x00,0x05,0x40,0x70,0x64,0x65,0x66,0x00,0x00, -0x05,0x40,0x6d,0x64,0x65,0x66,0x00,0x00,0x09,0x40,0x73,0x74,0x72,0x5f,0x70,0x6c, -0x75,0x73,0x00,0x00,0x09,0x40,0x64,0x65,0x78,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00, -0x09,0x40,0x61,0x67,0x69,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x09,0x40,0x69,0x6e, -0x74,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x0c,0x40,0x65,0x6c,0x65,0x6d,0x65,0x6e, -0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f,0x40,0x70,0x6c,0x75,0x73,0x5f,0x73,0x74, -0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x10,0x40,0x6d,0x69,0x6e,0x75,0x73, -0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x00,0x01,0xb2,0x00, -0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x34,0x00,0x00,0x00,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x12,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x09,0x69, -0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0b,0x64,0x65,0x73,0x63,0x72, -0x69,0x70,0x74,0x69,0x6f,0x6e,0x00,0x00,0x04,0x6b,0x69,0x6e,0x64,0x00,0x00,0x0d, -0x61,0x75,0x74,0x6f,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x69,0x64,0x00,0x00,0x05, -0x70,0x72,0x69,0x63,0x65,0x00,0x00,0x04,0x70,0x64,0x65,0x66,0x00,0x00,0x04,0x6d, -0x64,0x65,0x66,0x00,0x00,0x03,0x65,0x76,0x61,0x00,0x00,0x08,0x73,0x74,0x72,0x5f, -0x70,0x6c,0x75,0x73,0x00,0x00,0x08,0x64,0x65,0x78,0x5f,0x70,0x6c,0x75,0x73,0x00, -0x00,0x08,0x61,0x67,0x69,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x08,0x69,0x6e,0x74, -0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x11,0x67,0x75,0x61,0x72,0x64,0x5f,0x65,0x6c, -0x65,0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f,0x67,0x75,0x61,0x72, -0x64,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x00,0x01,0x60, -0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x22,0x00,0x00,0x26,0x00,0x00,0x00, -0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01, -0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x01,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x04,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x04,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x05,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x05,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x06,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x06,0x00,0x01, -0x37,0x80,0x00,0x01,0x0e,0x07,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x07,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x10,0x00, -0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0a,0x40, -0x69,0x63,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x40,0x64,0x65,0x73, -0x63,0x72,0x69,0x70,0x74,0x69,0x6f,0x6e,0x00,0x00,0x05,0x40,0x6b,0x69,0x6e,0x64, -0x00,0x00,0x0e,0x40,0x61,0x75,0x74,0x6f,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x69, -0x64,0x00,0x00,0x06,0x40,0x70,0x72,0x69,0x63,0x65,0x00,0x00,0x05,0x40,0x70,0x64, -0x65,0x66,0x00,0x00,0x05,0x40,0x6d,0x64,0x65,0x66,0x00,0x00,0x04,0x40,0x65,0x76, -0x61,0x00,0x00,0x09,0x40,0x73,0x74,0x72,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x09, -0x40,0x64,0x65,0x78,0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x09,0x40,0x61,0x67,0x69, -0x5f,0x70,0x6c,0x75,0x73,0x00,0x00,0x09,0x40,0x69,0x6e,0x74,0x5f,0x70,0x6c,0x75, -0x73,0x00,0x00,0x12,0x40,0x67,0x75,0x61,0x72,0x64,0x5f,0x65,0x6c,0x65,0x6d,0x65, -0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x10,0x40,0x67,0x75,0x61,0x72,0x64,0x5f, -0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x00,0x02,0x7d,0x00,0x01, -0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x53,0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01, -0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x48,0x00,0x80,0x00,0xc0,0x02,0x00,0x01, -0x46,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x04,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x06,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x08,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x09,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x09,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x0a,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x0a,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0b,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0b,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x0c,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x0c,0x00,0x01,0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0d,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0d,0x00,0x01,0xa0,0x80,0x80,0x00, -0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x06,0x41,0x63, -0x74,0x69,0x6f,0x6e,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a, -0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f, -0x72,0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c, -0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0b,0x62, -0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x68,0x75,0x65,0x00,0x00,0x05,0x6d,0x61,0x78, -0x68,0x70,0x00,0x00,0x05,0x6d,0x61,0x78,0x73,0x70,0x00,0x00,0x03,0x73,0x74,0x72, -0x00,0x00,0x03,0x64,0x65,0x78,0x00,0x00,0x03,0x61,0x67,0x69,0x00,0x00,0x03,0x69, -0x6e,0x74,0x00,0x00,0x03,0x61,0x74,0x6b,0x00,0x00,0x04,0x70,0x64,0x65,0x66,0x00, -0x00,0x04,0x6d,0x64,0x65,0x66,0x00,0x00,0x03,0x65,0x76,0x61,0x00,0x00,0x0d,0x61, -0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0d,0x61, -0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x0d,0x65, -0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x72,0x61,0x6e,0x6b,0x73,0x00,0x00,0x0b,0x73, -0x74,0x61,0x74,0x65,0x5f,0x72,0x61,0x6e,0x6b,0x73,0x00,0x00,0x07,0x61,0x63,0x74, -0x69,0x6f,0x6e,0x73,0x00,0x00,0x03,0x65,0x78,0x70,0x00,0x00,0x04,0x67,0x6f,0x6c, -0x64,0x00,0x00,0x07,0x69,0x74,0x65,0x6d,0x5f,0x69,0x64,0x00,0x00,0x09,0x77,0x65, -0x61,0x70,0x6f,0x6e,0x5f,0x69,0x64,0x00,0x00,0x08,0x61,0x72,0x6d,0x6f,0x72,0x5f, -0x69,0x64,0x00,0x00,0x0d,0x74,0x72,0x65,0x61,0x73,0x75,0x72,0x65,0x5f,0x70,0x72, -0x6f,0x62,0x00,0x00,0x00,0x01,0x33,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00, -0x1f,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65, -0x73,0x73,0x6f,0x72,0x00,0x00,0x04,0x6b,0x69,0x6e,0x64,0x00,0x00,0x05,0x62,0x61, -0x73,0x69,0x63,0x00,0x00,0x08,0x73,0x6b,0x69,0x6c,0x6c,0x5f,0x69,0x64,0x00,0x00, -0x10,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x75,0x72,0x6e,0x5f, -0x61,0x00,0x00,0x10,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x75, -0x72,0x6e,0x5f,0x62,0x00,0x00,0x0c,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e, -0x5f,0x68,0x70,0x00,0x00,0x0f,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x5f, -0x6c,0x65,0x76,0x65,0x6c,0x00,0x00,0x13,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f, -0x6e,0x5f,0x73,0x77,0x69,0x74,0x63,0x68,0x5f,0x69,0x64,0x00,0x00,0x06,0x72,0x61, -0x74,0x69,0x6e,0x67,0x00,0x00,0x00,0x00,0xf3,0x00,0x02,0x00,0x03,0x00,0x00,0x00, -0x00,0x00,0x14,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x00,0x00,0x01,0x03,0x00,0x40,0x01,0x0e,0x01,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x01,0x00,0x01,0x03,0x00,0x40,0x01,0x0e,0x02,0x00,0x01, -0x83,0x31,0x40,0x01,0x8e,0x02,0x00,0x01,0x03,0x00,0x40,0x01,0x0e,0x03,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x03,0x00,0x01,0x03,0x02,0x40,0x01,0x0e,0x04,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x05,0x40,0x6b, -0x69,0x6e,0x64,0x00,0x00,0x06,0x40,0x62,0x61,0x73,0x69,0x63,0x00,0x00,0x09,0x40, -0x73,0x6b,0x69,0x6c,0x6c,0x5f,0x69,0x64,0x00,0x00,0x11,0x40,0x63,0x6f,0x6e,0x64, -0x69,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x75,0x72,0x6e,0x5f,0x61,0x00,0x00,0x11,0x40, -0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x5f,0x74,0x75,0x72,0x6e,0x5f,0x62, -0x00,0x00,0x0d,0x40,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x5f,0x68,0x70, -0x00,0x00,0x10,0x40,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x5f,0x6c,0x65, -0x76,0x65,0x6c,0x00,0x00,0x14,0x40,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e, -0x5f,0x73,0x77,0x69,0x74,0x63,0x68,0x5f,0x69,0x64,0x00,0x00,0x07,0x40,0x72,0x61, -0x74,0x69,0x6e,0x67,0x00,0x00,0x00,0x02,0x3c,0x00,0x02,0x00,0x05,0x00,0x00,0x00, -0x00,0x00,0x3c,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x01,0x00,0x01,0x83,0xf9,0x40,0x01,0x0e,0x02,0x00,0x01, -0x83,0xf9,0x40,0x01,0x8e,0x02,0x00,0x01,0x83,0x18,0x40,0x01,0x0e,0x03,0x00,0x01, -0x83,0x18,0x40,0x01,0x8e,0x03,0x00,0x01,0x83,0x18,0x40,0x01,0x0e,0x04,0x00,0x01, -0x83,0x18,0x40,0x01,0x8e,0x04,0x00,0x01,0x83,0x31,0x40,0x01,0x0e,0x05,0x00,0x01, -0x83,0x31,0x40,0x01,0x8e,0x05,0x00,0x01,0x83,0x31,0x40,0x01,0x0e,0x06,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x06,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x07,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x07,0x00,0x01,0x11,0x08,0x00,0x01,0x03,0x00,0xc0,0x01, -0xa0,0x40,0x04,0x01,0x0e,0x09,0x00,0x01,0x11,0x08,0x00,0x01,0x03,0x00,0xc0,0x01, -0xa0,0x40,0x04,0x01,0x8e,0x09,0x00,0x01,0x11,0x0b,0x00,0x01,0x93,0x0a,0x00,0x01, -0x13,0x0a,0x00,0x01,0x20,0x40,0x04,0x01,0xb7,0x80,0x00,0x01,0x8e,0x0b,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x0c,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x0c,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x0d,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x0d,0x00,0x01, -0x83,0xff,0x3f,0x01,0x0e,0x0e,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x0e,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x1e,0x00, -0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x40, -0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x40, -0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x68,0x75,0x65,0x00,0x00,0x06,0x40,0x6d, -0x61,0x78,0x68,0x70,0x00,0x00,0x06,0x40,0x6d,0x61,0x78,0x73,0x70,0x00,0x00,0x04, -0x40,0x73,0x74,0x72,0x00,0x00,0x04,0x40,0x64,0x65,0x78,0x00,0x00,0x04,0x40,0x61, -0x67,0x69,0x00,0x00,0x04,0x40,0x69,0x6e,0x74,0x00,0x00,0x04,0x40,0x61,0x74,0x6b, -0x00,0x00,0x05,0x40,0x70,0x64,0x65,0x66,0x00,0x00,0x05,0x40,0x6d,0x64,0x65,0x66, -0x00,0x00,0x04,0x40,0x65,0x76,0x61,0x00,0x00,0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61, -0x74,0x69,0x6f,0x6e,0x31,0x5f,0x69,0x64,0x00,0x00,0x0e,0x40,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x32,0x5f,0x69,0x64,0x00,0x00,0x05,0x54,0x61,0x62,0x6c, -0x65,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x0e,0x40,0x65,0x6c,0x65,0x6d,0x65, -0x6e,0x74,0x5f,0x72,0x61,0x6e,0x6b,0x73,0x00,0x00,0x0c,0x40,0x73,0x74,0x61,0x74, -0x65,0x5f,0x72,0x61,0x6e,0x6b,0x73,0x00,0x00,0x06,0x41,0x63,0x74,0x69,0x6f,0x6e, -0x00,0x00,0x05,0x45,0x6e,0x65,0x6d,0x79,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00, -0x08,0x40,0x61,0x63,0x74,0x69,0x6f,0x6e,0x73,0x00,0x00,0x04,0x40,0x65,0x78,0x70, -0x00,0x00,0x05,0x40,0x67,0x6f,0x6c,0x64,0x00,0x00,0x08,0x40,0x69,0x74,0x65,0x6d, -0x5f,0x69,0x64,0x00,0x00,0x0a,0x40,0x77,0x65,0x61,0x70,0x6f,0x6e,0x5f,0x69,0x64, -0x00,0x00,0x09,0x40,0x61,0x72,0x6d,0x6f,0x72,0x5f,0x69,0x64,0x00,0x00,0x0e,0x40, -0x74,0x72,0x65,0x61,0x73,0x75,0x72,0x65,0x5f,0x70,0x72,0x6f,0x62,0x00,0x00,0x00, -0x00,0xc5,0x00,0x01,0x00,0x04,0x00,0x03,0x00,0x00,0x00,0x18,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x40,0x80,0x00,0xc5,0x00,0x80,0x00,0x48,0x00,0x80,0x00, -0xc0,0x04,0x00,0x01,0x46,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x00,0x06,0x4d,0x65,0x6d,0x62,0x65,0x72,0x00,0x00,0x04,0x50, -0x61,0x67,0x65,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x07,0x6d, -0x65,0x6d,0x62,0x65,0x72,0x73,0x00,0x00,0x05,0x70,0x61,0x67,0x65,0x73,0x00,0x00, -0x00,0x00,0xaa,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x13,0x00,0x00,0x00, -0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x07,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x08,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x69,0x64,0x00,0x00,0x01,0x78,0x00, -0x00,0x01,0x79,0x00,0x00,0x06,0x68,0x69,0x64,0x64,0x65,0x6e,0x00,0x00,0x08,0x69, -0x6d,0x6d,0x6f,0x72,0x74,0x61,0x6c,0x00,0x00,0x00,0x00,0x76,0x00,0x02,0x00,0x03, -0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x00,0x26,0x00,0x00,0x00,0x03,0x00,0x40,0x01, -0x0e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x01,0x00,0x01,0x08,0x00,0x00,0x01,0x8e,0x01,0x00,0x01,0x08,0x00,0x00,0x01, -0x0e,0x02,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05, -0x00,0x09,0x40,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x69,0x64,0x00,0x00,0x02,0x40,0x78, -0x00,0x00,0x02,0x40,0x79,0x00,0x00,0x07,0x40,0x68,0x69,0x64,0x64,0x65,0x6e,0x00, -0x00,0x09,0x40,0x69,0x6d,0x6d,0x6f,0x72,0x74,0x61,0x6c,0x00,0x00,0x00,0x00,0xa1, -0x00,0x01,0x00,0x04,0x00,0x02,0x00,0x00,0x00,0x11,0x00,0x00,0x05,0x00,0x80,0x00, -0x05,0x00,0x00,0x01,0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x48,0x00,0x80,0x00, -0xc0,0x02,0x00,0x01,0x46,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01, -0xa0,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x80,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x80,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x06,0x00,0x09,0x43,0x6f,0x6e,0x64,0x69,0x74, -0x69,0x6f,0x6e,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x09,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x04,0x73, -0x70,0x61,0x6e,0x00,0x00,0x04,0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x01,0x50,0x00, -0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x25,0x00,0x00,0x00,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0d,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65, -0x73,0x73,0x6f,0x72,0x00,0x00,0x0a,0x74,0x75,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x69, -0x64,0x00,0x00,0x0b,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00, -0x00,0x0b,0x61,0x63,0x74,0x6f,0x72,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x0c, -0x73,0x77,0x69,0x74,0x63,0x68,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x06,0x74, -0x75,0x72,0x6e,0x5f,0x61,0x00,0x00,0x06,0x74,0x75,0x72,0x6e,0x5f,0x62,0x00,0x00, -0x0b,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x69,0x6e,0x64,0x65,0x78,0x00,0x00,0x08,0x65, -0x6e,0x65,0x6d,0x79,0x5f,0x68,0x70,0x00,0x00,0x08,0x61,0x63,0x74,0x6f,0x72,0x5f, -0x69,0x64,0x00,0x00,0x08,0x61,0x63,0x74,0x6f,0x72,0x5f,0x68,0x70,0x00,0x00,0x09, -0x73,0x77,0x69,0x74,0x63,0x68,0x5f,0x69,0x64,0x00,0x00,0x00,0x01,0x0a,0x00,0x02, -0x00,0x03,0x00,0x00,0x00,0x00,0x00,0x18,0x26,0x00,0x00,0x00,0x08,0x00,0x00,0x01, -0x0e,0x00,0x00,0x01,0x08,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x08,0x00,0x00,0x01, -0x0e,0x01,0x00,0x01,0x08,0x00,0x00,0x01,0x8e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x03,0x00,0x01,0x83,0x18,0x40,0x01,0x8e,0x03,0x00,0x01,0x03,0x00,0x40,0x01, -0x0e,0x04,0x00,0x01,0x83,0x18,0x40,0x01,0x8e,0x04,0x00,0x01,0x03,0x00,0x40,0x01, -0x0e,0x05,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0b, -0x00,0x0b,0x40,0x74,0x75,0x72,0x6e,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x0c, -0x40,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x0c,0x40, -0x61,0x63,0x74,0x6f,0x72,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x0d,0x40,0x73, -0x77,0x69,0x74,0x63,0x68,0x5f,0x76,0x61,0x6c,0x69,0x64,0x00,0x00,0x07,0x40,0x74, -0x75,0x72,0x6e,0x5f,0x61,0x00,0x00,0x07,0x40,0x74,0x75,0x72,0x6e,0x5f,0x62,0x00, -0x00,0x0c,0x40,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x69,0x6e,0x64,0x65,0x78,0x00,0x00, -0x09,0x40,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x68,0x70,0x00,0x00,0x09,0x40,0x61,0x63, -0x74,0x6f,0x72,0x5f,0x69,0x64,0x00,0x00,0x09,0x40,0x61,0x63,0x74,0x6f,0x72,0x5f, -0x68,0x70,0x00,0x00,0x0a,0x40,0x73,0x77,0x69,0x74,0x63,0x68,0x5f,0x69,0x64,0x00, -0x00,0x00,0x00,0xa9,0x00,0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x0f,0x00,0x00, -0x26,0x00,0x00,0x00,0x91,0x01,0x00,0x01,0x13,0x01,0x00,0x01,0x93,0x00,0x00,0x01, -0x13,0x00,0x00,0x01,0x20,0x00,0x01,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x03,0x00,0x01,0x91,0x01,0x00,0x01,0x93,0x03,0x00,0x01,0x20,0x00,0x01,0x01, -0xb7,0x80,0x00,0x01,0x0e,0x04,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x09,0x00,0x09,0x43,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x04,0x50,0x61,0x67,0x65,0x00,0x00,0x05,0x54,0x72,0x6f,0x6f,0x70,0x00,0x00, -0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x0a,0x40,0x63,0x6f, -0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x05,0x40,0x73,0x70,0x61,0x6e,0x00, -0x00,0x0c,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d,0x61,0x6e,0x64,0x00,0x00, -0x05,0x40,0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x00,0x91,0x00,0x02,0x00,0x04,0x00, -0x00,0x00,0x00,0x00,0x0d,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01, -0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x37,0x80,0x00,0x01, -0x0e,0x01,0x00,0x01,0x11,0x02,0x00,0x01,0x93,0x01,0x00,0x01,0x20,0x40,0x01,0x01, -0xb7,0x80,0x00,0x01,0x0e,0x03,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40, -0x6e,0x61,0x6d,0x65,0x00,0x00,0x08,0x40,0x6d,0x65,0x6d,0x62,0x65,0x72,0x73,0x00, -0x00,0x0f,0x42,0x61,0x74,0x74,0x6c,0x65,0x45,0x76,0x65,0x6e,0x74,0x50,0x61,0x67, -0x65,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x06, -0x40,0x70,0x61,0x67,0x65,0x73,0x00,0x00,0x00,0x03,0x01,0x00,0x01,0x00,0x04,0x00, -0x01,0x00,0x00,0x00,0x58,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01, -0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x08,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x09,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x09,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0a,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0b,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0c,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0c,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0d,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0d,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0e,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0e,0x00,0x01, -0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x1e, -0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61, -0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x02,0x69, -0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x61,0x6e,0x69,0x6d,0x61, -0x74,0x69,0x6f,0x6e,0x5f,0x69,0x64,0x00,0x00,0x0b,0x72,0x65,0x73,0x74,0x72,0x69, -0x63,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0d,0x6e,0x6f,0x6e,0x72,0x65,0x73,0x69,0x73, -0x74,0x61,0x6e,0x63,0x65,0x00,0x00,0x07,0x7a,0x65,0x72,0x6f,0x5f,0x68,0x70,0x00, -0x00,0x0c,0x63,0x61,0x6e,0x74,0x5f,0x67,0x65,0x74,0x5f,0x65,0x78,0x70,0x00,0x00, -0x0a,0x63,0x61,0x6e,0x74,0x5f,0x65,0x76,0x61,0x64,0x65,0x00,0x00,0x0b,0x73,0x6c, -0x69,0x70,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65,0x00,0x00,0x06,0x72,0x61,0x74,0x69, -0x6e,0x67,0x00,0x00,0x08,0x68,0x69,0x74,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x0a, -0x6d,0x61,0x78,0x68,0x70,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x0a,0x6d,0x61,0x78, -0x73,0x70,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x08,0x73,0x74,0x72,0x5f,0x72,0x61, -0x74,0x65,0x00,0x00,0x08,0x64,0x65,0x78,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x08, -0x61,0x67,0x69,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x08,0x69,0x6e,0x74,0x5f,0x72, -0x61,0x74,0x65,0x00,0x00,0x08,0x61,0x74,0x6b,0x5f,0x72,0x61,0x74,0x65,0x00,0x00, -0x09,0x70,0x64,0x65,0x66,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x09,0x6d,0x64,0x65, -0x66,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x03,0x65,0x76,0x61,0x00,0x00,0x0b,0x62, -0x61,0x74,0x74,0x6c,0x65,0x5f,0x6f,0x6e,0x6c,0x79,0x00,0x00,0x09,0x68,0x6f,0x6c, -0x64,0x5f,0x74,0x75,0x72,0x6e,0x00,0x00,0x11,0x61,0x75,0x74,0x6f,0x5f,0x72,0x65, -0x6c,0x65,0x61,0x73,0x65,0x5f,0x70,0x72,0x6f,0x62,0x00,0x00,0x12,0x73,0x68,0x6f, -0x63,0x6b,0x5f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x5f,0x70,0x72,0x6f,0x62,0x00, -0x00,0x11,0x67,0x75,0x61,0x72,0x64,0x5f,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f, -0x73,0x65,0x74,0x00,0x00,0x0e,0x70,0x6c,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65, -0x5f,0x73,0x65,0x74,0x00,0x00,0x0f,0x6d,0x69,0x6e,0x75,0x73,0x5f,0x73,0x74,0x61, -0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x00,0x02,0x8b,0x00,0x02,0x00,0x03,0x00, -0x00,0x00,0x00,0x00,0x3a,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01, -0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x01,0x00,0x01,0x08,0x00,0x00,0x01, -0x0e,0x02,0x00,0x01,0x08,0x00,0x00,0x01,0x8e,0x02,0x00,0x01,0x08,0x00,0x00,0x01, -0x0e,0x03,0x00,0x01,0x08,0x00,0x00,0x01,0x8e,0x03,0x00,0x01,0x08,0x00,0x00,0x01, -0x0e,0x04,0x00,0x01,0x03,0x02,0x40,0x01,0x8e,0x04,0x00,0x01,0x83,0x31,0x40,0x01, -0x0e,0x05,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x05,0x00,0x01,0x83,0x31,0x40,0x01, -0x0e,0x06,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x06,0x00,0x01,0x83,0x31,0x40,0x01, -0x0e,0x07,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x07,0x00,0x01,0x83,0x31,0x40,0x01, -0x0e,0x08,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x08,0x00,0x01,0x83,0x31,0x40,0x01, -0x0e,0x09,0x00,0x01,0x83,0x31,0x40,0x01,0x8e,0x09,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x0a,0x00,0x01,0x07,0x00,0x00,0x01,0x8e,0x0a,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x0b,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x0b,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x0c,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x0c,0x00,0x01,0x37,0x80,0x00,0x01, -0x0e,0x0d,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x0d,0x00,0x01,0x29,0x00,0x00,0x01, -0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x1c,0x00,0x03,0x40,0x69,0x64, -0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x40,0x61,0x6e,0x69,0x6d, -0x61,0x74,0x69,0x6f,0x6e,0x5f,0x69,0x64,0x00,0x00,0x0c,0x40,0x72,0x65,0x73,0x74, -0x72,0x69,0x63,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0e,0x40,0x6e,0x6f,0x6e,0x72,0x65, -0x73,0x69,0x73,0x74,0x61,0x6e,0x63,0x65,0x00,0x00,0x08,0x40,0x7a,0x65,0x72,0x6f, -0x5f,0x68,0x70,0x00,0x00,0x0d,0x40,0x63,0x61,0x6e,0x74,0x5f,0x67,0x65,0x74,0x5f, -0x65,0x78,0x70,0x00,0x00,0x0b,0x40,0x63,0x61,0x6e,0x74,0x5f,0x65,0x76,0x61,0x64, -0x65,0x00,0x00,0x0c,0x40,0x73,0x6c,0x69,0x70,0x5f,0x64,0x61,0x6d,0x61,0x67,0x65, -0x00,0x00,0x07,0x40,0x72,0x61,0x74,0x69,0x6e,0x67,0x00,0x00,0x09,0x40,0x68,0x69, -0x74,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x0b,0x40,0x6d,0x61,0x78,0x68,0x70,0x5f, -0x72,0x61,0x74,0x65,0x00,0x00,0x0b,0x40,0x6d,0x61,0x78,0x73,0x70,0x5f,0x72,0x61, -0x74,0x65,0x00,0x00,0x09,0x40,0x73,0x74,0x72,0x5f,0x72,0x61,0x74,0x65,0x00,0x00, -0x09,0x40,0x64,0x65,0x78,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x09,0x40,0x61,0x67, -0x69,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x09,0x40,0x69,0x6e,0x74,0x5f,0x72,0x61, -0x74,0x65,0x00,0x00,0x09,0x40,0x61,0x74,0x6b,0x5f,0x72,0x61,0x74,0x65,0x00,0x00, -0x0a,0x40,0x70,0x64,0x65,0x66,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x0a,0x40,0x6d, -0x64,0x65,0x66,0x5f,0x72,0x61,0x74,0x65,0x00,0x00,0x04,0x40,0x65,0x76,0x61,0x00, -0x00,0x0c,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f,0x6f,0x6e,0x6c,0x79,0x00,0x00, -0x0a,0x40,0x68,0x6f,0x6c,0x64,0x5f,0x74,0x75,0x72,0x6e,0x00,0x00,0x12,0x40,0x61, -0x75,0x74,0x6f,0x5f,0x72,0x65,0x6c,0x65,0x61,0x73,0x65,0x5f,0x70,0x72,0x6f,0x62, -0x00,0x00,0x13,0x40,0x73,0x68,0x6f,0x63,0x6b,0x5f,0x72,0x65,0x6c,0x65,0x61,0x73, -0x65,0x5f,0x70,0x72,0x6f,0x62,0x00,0x00,0x12,0x40,0x67,0x75,0x61,0x72,0x64,0x5f, -0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x5f,0x73,0x65,0x74,0x00,0x00,0x0f,0x40,0x70, -0x6c,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74,0x00,0x00,0x10, -0x40,0x6d,0x69,0x6e,0x75,0x73,0x5f,0x73,0x74,0x61,0x74,0x65,0x5f,0x73,0x65,0x74, -0x00,0x00,0x00,0x01,0x2f,0x00,0x01,0x00,0x04,0x00,0x03,0x00,0x00,0x00,0x24,0x00, -0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01,0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00, -0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01,0x43,0x40,0x80,0x00,0xc5,0x00,0x80,0x00, -0x48,0x00,0x80,0x00,0xc0,0x04,0x00,0x01,0x46,0x80,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x02,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x04,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0xc0,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00,0x05,0x46,0x72,0x61,0x6d,0x65,0x00, -0x00,0x06,0x54,0x69,0x6d,0x69,0x6e,0x67,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69, -0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63, -0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d, -0x65,0x00,0x00,0x0e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x6e,0x61, -0x6d,0x65,0x00,0x00,0x0d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x68, -0x75,0x65,0x00,0x00,0x08,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x09, -0x66,0x72,0x61,0x6d,0x65,0x5f,0x6d,0x61,0x78,0x00,0x00,0x06,0x66,0x72,0x61,0x6d, -0x65,0x73,0x00,0x00,0x07,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x00,0x00,0x00,0x00, -0x76,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x0a,0x00,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x0a,0x69,0x6e, -0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f, -0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x08,0x63,0x65,0x6c,0x6c,0x5f, -0x6d,0x61,0x78,0x00,0x00,0x09,0x63,0x65,0x6c,0x6c,0x5f,0x64,0x61,0x74,0x61,0x00, -0x00,0x00,0x00,0x65,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x00, -0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x91,0x00,0x00,0x01, -0x83,0xff,0xbf,0x01,0x83,0xff,0x3f,0x02,0x20,0x81,0x00,0x01,0x8e,0x01,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x09,0x40,0x63, -0x65,0x6c,0x6c,0x5f,0x6d,0x61,0x78,0x00,0x00,0x05,0x54,0x61,0x62,0x6c,0x65,0x00, -0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x0a,0x40,0x63,0x65,0x6c,0x6c,0x5f,0x64,0x61, -0x74,0x61,0x00,0x00,0x00,0x00,0xd5,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00, -0x16,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x08,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x05,0x66,0x72,0x61,0x6d,0x65,0x00,0x00,0x02,0x73,0x65,0x00,0x00,0x0b, -0x66,0x6c,0x61,0x73,0x68,0x5f,0x73,0x63,0x6f,0x70,0x65,0x00,0x00,0x0b,0x66,0x6c, -0x61,0x73,0x68,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x0e,0x66,0x6c,0x61,0x73, -0x68,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x09,0x63,0x6f,0x6e, -0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00,0xe5,0x00,0x02,0x00,0x08,0x00, -0x00,0x00,0x00,0x00,0x17,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01, -0x0e,0x00,0x00,0x01,0x11,0x01,0x00,0x01,0x93,0x00,0x00,0x01,0x3d,0x00,0x80,0x01, -0x83,0x27,0x40,0x02,0x20,0xc1,0x00,0x01,0x0e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x02,0x00,0x01,0x11,0x03,0x00,0x01,0x03,0x7f,0xc0,0x01,0x03,0x7f,0x40,0x02, -0x03,0x7f,0xc0,0x02,0x03,0x7f,0x40,0x03,0x20,0xc2,0x00,0x01,0x8e,0x03,0x00,0x01, -0x03,0x02,0x40,0x01,0x0e,0x04,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x04,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0a,0x00, -0x06,0x40,0x66,0x72,0x61,0x6d,0x65,0x00,0x00,0x09,0x41,0x75,0x64,0x69,0x6f,0x46, -0x69,0x6c,0x65,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00, -0x00,0x03,0x40,0x73,0x65,0x00,0x00,0x0c,0x40,0x66,0x6c,0x61,0x73,0x68,0x5f,0x73, -0x63,0x6f,0x70,0x65,0x00,0x00,0x05,0x43,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x0c,0x40, -0x66,0x6c,0x61,0x73,0x68,0x5f,0x63,0x6f,0x6c,0x6f,0x72,0x00,0x00,0x0f,0x40,0x66, -0x6c,0x61,0x73,0x68,0x5f,0x64,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0a, -0x40,0x63,0x6f,0x6e,0x64,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x00,0x00,0xf4,0x00, -0x02,0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x16,0x00,0x00,0x00,0x26,0x00,0x00,0x00, -0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01, -0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01,0x8e,0x01,0x00,0x01, -0x03,0x00,0x40,0x01,0x0e,0x02,0x00,0x01,0x03,0x00,0x40,0x01,0x8e,0x02,0x00,0x01, -0x11,0x04,0x00,0x01,0x93,0x03,0x00,0x01,0x13,0x03,0x00,0x01,0x20,0x40,0x02,0x01, -0xb7,0x80,0x00,0x01,0x0e,0x05,0x00,0x01,0x37,0x80,0x00,0x01,0x8e,0x05,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x0c,0x00, -0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0f,0x40, -0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00, -0x0e,0x40,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f,0x68,0x75,0x65,0x00, -0x00,0x09,0x40,0x70,0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x0a,0x40,0x66, -0x72,0x61,0x6d,0x65,0x5f,0x6d,0x61,0x78,0x00,0x00,0x05,0x46,0x72,0x61,0x6d,0x65, -0x00,0x00,0x09,0x41,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00,0x00,0x03,0x52, -0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x07,0x40,0x66,0x72,0x61,0x6d, -0x65,0x73,0x00,0x00,0x08,0x40,0x74,0x69,0x6d,0x69,0x6e,0x67,0x73,0x00,0x00,0x00, -0x01,0xe8,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x37,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x09,0x00,0x01, -0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x13, -0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61, -0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x02,0x69, -0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x74,0x69,0x6c,0x65,0x73, -0x65,0x74,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0e,0x61,0x75,0x74,0x6f,0x74,0x69, -0x6c,0x65,0x5f,0x6e,0x61,0x6d,0x65,0x73,0x00,0x00,0x0d,0x70,0x61,0x6e,0x6f,0x72, -0x61,0x6d,0x61,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x70,0x61,0x6e,0x6f,0x72, -0x61,0x6d,0x61,0x5f,0x68,0x75,0x65,0x00,0x00,0x08,0x66,0x6f,0x67,0x5f,0x6e,0x61, -0x6d,0x65,0x00,0x00,0x07,0x66,0x6f,0x67,0x5f,0x68,0x75,0x65,0x00,0x00,0x0b,0x66, -0x6f,0x67,0x5f,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x00,0x00,0x0e,0x66,0x6f,0x67, -0x5f,0x62,0x6c,0x65,0x6e,0x64,0x5f,0x74,0x79,0x70,0x65,0x00,0x00,0x08,0x66,0x6f, -0x67,0x5f,0x7a,0x6f,0x6f,0x6d,0x00,0x00,0x06,0x66,0x6f,0x67,0x5f,0x73,0x78,0x00, -0x00,0x06,0x66,0x6f,0x67,0x5f,0x73,0x79,0x00,0x00,0x0f,0x62,0x61,0x74,0x74,0x6c, -0x65,0x62,0x61,0x63,0x6b,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x08,0x70,0x61,0x73, -0x73,0x61,0x67,0x65,0x73,0x00,0x00,0x0a,0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x69, -0x65,0x73,0x00,0x00,0x0c,0x74,0x65,0x72,0x72,0x61,0x69,0x6e,0x5f,0x74,0x61,0x67, -0x73,0x00,0x00,0x00,0x01,0xe3,0x00,0x02,0x00,0x07,0x00,0x00,0x00,0x00,0x00,0x32, -0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01, -0x8e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01,0x3d,0x00,0x00,0x01, -0xb7,0x80,0x00,0x01,0x03,0x03,0xc0,0x01,0xb0,0xc0,0x00,0x01,0x0e,0x02,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x03,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x04,0x00,0x01, -0x83,0x1f,0x40,0x01,0x8e,0x04,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x05,0x00,0x01, -0x83,0x63,0x40,0x01,0x8e,0x05,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x06,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x06,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x07,0x00,0x01, -0x91,0x07,0x00,0x01,0x83,0xbf,0xc0,0x01,0xa0,0x00,0x04,0x01,0x8e,0x08,0x00,0x01, -0x91,0x07,0x00,0x01,0x83,0xbf,0xc0,0x01,0xa0,0x00,0x04,0x01,0x0e,0x09,0x00,0x01, -0x03,0x02,0x40,0x01,0x0d,0x09,0x80,0x01,0x83,0xff,0x3f,0x02,0x01,0x80,0x80,0x02, -0x20,0xc1,0x84,0x01,0x91,0x07,0x00,0x01,0x83,0xbf,0xc0,0x01,0xa0,0x00,0x04,0x01, -0x0e,0x0a,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x15,0x00,0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65, -0x00,0x00,0x0d,0x40,0x74,0x69,0x6c,0x65,0x73,0x65,0x74,0x5f,0x6e,0x61,0x6d,0x65, -0x00,0x00,0x01,0x2a,0x00,0x00,0x0f,0x40,0x61,0x75,0x74,0x6f,0x74,0x69,0x6c,0x65, -0x5f,0x6e,0x61,0x6d,0x65,0x73,0x00,0x00,0x0e,0x40,0x70,0x61,0x6e,0x6f,0x72,0x61, -0x6d,0x61,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x40,0x70,0x61,0x6e,0x6f,0x72, -0x61,0x6d,0x61,0x5f,0x68,0x75,0x65,0x00,0x00,0x09,0x40,0x66,0x6f,0x67,0x5f,0x6e, -0x61,0x6d,0x65,0x00,0x00,0x08,0x40,0x66,0x6f,0x67,0x5f,0x68,0x75,0x65,0x00,0x00, -0x0c,0x40,0x66,0x6f,0x67,0x5f,0x6f,0x70,0x61,0x63,0x69,0x74,0x79,0x00,0x00,0x0f, -0x40,0x66,0x6f,0x67,0x5f,0x62,0x6c,0x65,0x6e,0x64,0x5f,0x74,0x79,0x70,0x65,0x00, -0x00,0x09,0x40,0x66,0x6f,0x67,0x5f,0x7a,0x6f,0x6f,0x6d,0x00,0x00,0x07,0x40,0x66, -0x6f,0x67,0x5f,0x73,0x78,0x00,0x00,0x07,0x40,0x66,0x6f,0x67,0x5f,0x73,0x79,0x00, -0x00,0x10,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x62,0x61,0x63,0x6b,0x5f,0x6e,0x61, -0x6d,0x65,0x00,0x00,0x05,0x54,0x61,0x62,0x6c,0x65,0x00,0x00,0x03,0x6e,0x65,0x77, -0x00,0x00,0x09,0x40,0x70,0x61,0x73,0x73,0x61,0x67,0x65,0x73,0x00,0x00,0x0b,0x40, -0x70,0x72,0x69,0x6f,0x72,0x69,0x74,0x69,0x65,0x73,0x00,0x00,0x03,0x5b,0x5d,0x3d, -0x00,0x00,0x0d,0x40,0x74,0x65,0x72,0x72,0x61,0x69,0x6e,0x5f,0x74,0x61,0x67,0x73, -0x00,0x00,0x00,0x00,0xac,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x13,0x00, -0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x03,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x07,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x02,0x69,0x64,0x00,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00,0x00,0x07,0x74, -0x72,0x69,0x67,0x67,0x65,0x72,0x00,0x00,0x09,0x73,0x77,0x69,0x74,0x63,0x68,0x5f, -0x69,0x64,0x00,0x00,0x04,0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x00,0xa2,0x00,0x02, -0x00,0x04,0x00,0x00,0x00,0x00,0x00,0x0f,0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01, -0x0e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01, -0x0e,0x01,0x00,0x01,0x03,0x00,0x40,0x01,0x8e,0x01,0x00,0x01,0x91,0x02,0x00,0x01, -0x13,0x02,0x00,0x01,0x20,0x80,0x01,0x01,0xb7,0x80,0x00,0x01,0x8e,0x03,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x08,0x00, -0x03,0x40,0x69,0x64,0x00,0x00,0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x08,0x40, -0x74,0x72,0x69,0x67,0x67,0x65,0x72,0x00,0x00,0x0a,0x40,0x73,0x77,0x69,0x74,0x63, -0x68,0x5f,0x69,0x64,0x00,0x00,0x0c,0x45,0x76,0x65,0x6e,0x74,0x43,0x6f,0x6d,0x6d, -0x61,0x6e,0x64,0x00,0x00,0x03,0x52,0x50,0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00, -0x00,0x05,0x40,0x6c,0x69,0x73,0x74,0x00,0x00,0x00,0x04,0x05,0x00,0x01,0x00,0x04, -0x00,0x03,0x00,0x00,0x00,0x75,0x00,0x00,0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01, -0x43,0x00,0x80,0x00,0x45,0x00,0x80,0x00,0x05,0x00,0x80,0x00,0x05,0x00,0x00,0x01, -0x43,0x40,0x80,0x00,0xc5,0x00,0x80,0x00,0x48,0x00,0x80,0x00,0xc0,0x04,0x00,0x01, -0x46,0x80,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x02,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x03,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x04,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x05,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x06,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x07,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x08,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x09,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x09,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0a,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0a,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0b,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0b,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0c,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0c,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0d,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0d,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x0e,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x0e,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x0f,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x0f,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x10,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x10,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x11,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x11,0x00,0x01, -0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x12,0x00,0x01,0xa0,0xc0,0x80,0x00, -0x06,0x00,0x80,0x00,0x84,0x12,0x00,0x01,0xa0,0xc0,0x80,0x00,0x06,0x00,0x80,0x00, -0x04,0x13,0x00,0x01,0xa0,0xc0,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x27,0x00,0x05,0x57,0x6f,0x72,0x64,0x73,0x00,0x00,0x0b,0x54,0x65, -0x73,0x74,0x42,0x61,0x74,0x74,0x6c,0x65,0x72,0x00,0x00,0x0a,0x69,0x6e,0x69,0x74, -0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63, -0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x0c,0x6d,0x61,0x67,0x69,0x63,0x5f,0x6e, -0x75,0x6d,0x62,0x65,0x72,0x00,0x00,0x0d,0x70,0x61,0x72,0x74,0x79,0x5f,0x6d,0x65, -0x6d,0x62,0x65,0x72,0x73,0x00,0x00,0x08,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73, -0x00,0x00,0x08,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x73,0x00,0x00,0x09,0x76,0x61, -0x72,0x69,0x61,0x62,0x6c,0x65,0x73,0x00,0x00,0x0f,0x77,0x69,0x6e,0x64,0x6f,0x77, -0x73,0x6b,0x69,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0a,0x74,0x69,0x74,0x6c, -0x65,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x67,0x61,0x6d,0x65,0x6f,0x76,0x65, -0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x11,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f, -0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x00,0x09,0x74,0x69,0x74, -0x6c,0x65,0x5f,0x62,0x67,0x6d,0x00,0x00,0x0a,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f, -0x62,0x67,0x6d,0x00,0x00,0x0d,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f,0x65,0x6e,0x64, -0x5f,0x6d,0x65,0x00,0x00,0x0b,0x67,0x61,0x6d,0x65,0x6f,0x76,0x65,0x72,0x5f,0x6d, -0x65,0x00,0x00,0x09,0x63,0x75,0x72,0x73,0x6f,0x72,0x5f,0x73,0x65,0x00,0x00,0x0b, -0x64,0x65,0x63,0x69,0x73,0x69,0x6f,0x6e,0x5f,0x73,0x65,0x00,0x00,0x09,0x63,0x61, -0x6e,0x63,0x65,0x6c,0x5f,0x73,0x65,0x00,0x00,0x09,0x62,0x75,0x7a,0x7a,0x65,0x72, -0x5f,0x73,0x65,0x00,0x00,0x08,0x65,0x71,0x75,0x69,0x70,0x5f,0x73,0x65,0x00,0x00, -0x07,0x73,0x68,0x6f,0x70,0x5f,0x73,0x65,0x00,0x00,0x07,0x73,0x61,0x76,0x65,0x5f, -0x73,0x65,0x00,0x00,0x07,0x6c,0x6f,0x61,0x64,0x5f,0x73,0x65,0x00,0x00,0x0f,0x62, -0x61,0x74,0x74,0x6c,0x65,0x5f,0x73,0x74,0x61,0x72,0x74,0x5f,0x73,0x65,0x00,0x00, -0x09,0x65,0x73,0x63,0x61,0x70,0x65,0x5f,0x73,0x65,0x00,0x00,0x11,0x61,0x63,0x74, -0x6f,0x72,0x5f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x73,0x65,0x00,0x00, -0x11,0x65,0x6e,0x65,0x6d,0x79,0x5f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f, -0x73,0x65,0x00,0x00,0x05,0x77,0x6f,0x72,0x64,0x73,0x00,0x00,0x0d,0x74,0x65,0x73, -0x74,0x5f,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x73,0x00,0x00,0x0d,0x74,0x65,0x73, -0x74,0x5f,0x74,0x72,0x6f,0x6f,0x70,0x5f,0x69,0x64,0x00,0x00,0x0c,0x73,0x74,0x61, -0x72,0x74,0x5f,0x6d,0x61,0x70,0x5f,0x69,0x64,0x00,0x00,0x07,0x73,0x74,0x61,0x72, -0x74,0x5f,0x78,0x00,0x00,0x07,0x73,0x74,0x61,0x72,0x74,0x5f,0x79,0x00,0x00,0x0f, -0x62,0x61,0x74,0x74,0x6c,0x65,0x62,0x61,0x63,0x6b,0x5f,0x6e,0x61,0x6d,0x65,0x00, -0x00,0x0c,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00, -0x0b,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f,0x68,0x75,0x65,0x00,0x00,0x0b,0x65, -0x64,0x69,0x74,0x5f,0x6d,0x61,0x70,0x5f,0x69,0x64,0x00,0x00,0x00,0x01,0xc9,0x00, -0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x05,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x05,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x06,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x07,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x07,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x08,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x09,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x09,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x0a,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00,0x00,0x00,0x00,0x00, -0x00,0x00,0x00,0x16,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65, -0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72, -0x00,0x00,0x04,0x67,0x6f,0x6c,0x64,0x00,0x00,0x02,0x68,0x70,0x00,0x00,0x02,0x73, -0x70,0x00,0x00,0x03,0x73,0x74,0x72,0x00,0x00,0x03,0x64,0x65,0x78,0x00,0x00,0x03, -0x61,0x67,0x69,0x00,0x00,0x03,0x69,0x6e,0x74,0x00,0x00,0x03,0x61,0x74,0x6b,0x00, -0x00,0x04,0x70,0x64,0x65,0x66,0x00,0x00,0x04,0x6d,0x64,0x65,0x66,0x00,0x00,0x06, -0x77,0x65,0x61,0x70,0x6f,0x6e,0x00,0x00,0x06,0x61,0x72,0x6d,0x6f,0x72,0x31,0x00, -0x00,0x06,0x61,0x72,0x6d,0x6f,0x72,0x32,0x00,0x00,0x06,0x61,0x72,0x6d,0x6f,0x72, -0x33,0x00,0x00,0x06,0x61,0x72,0x6d,0x6f,0x72,0x34,0x00,0x00,0x06,0x61,0x74,0x74, -0x61,0x63,0x6b,0x00,0x00,0x05,0x73,0x6b,0x69,0x6c,0x6c,0x00,0x00,0x05,0x67,0x75, -0x61,0x72,0x64,0x00,0x00,0x04,0x69,0x74,0x65,0x6d,0x00,0x00,0x05,0x65,0x71,0x75, -0x69,0x70,0x00,0x00,0x00,0x01,0x6b,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00,0x00, -0x2a,0x00,0x00,0x00,0x26,0x00,0x00,0x00,0x3d,0x00,0x00,0x01,0x0e,0x00,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x00,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x01,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x01,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x02,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x02,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x03,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x03,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x04,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x04,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x05,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x05,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x06,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x06,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x07,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x07,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x08,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x08,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x09,0x00,0x01, -0x3d,0x00,0x00,0x01,0x8e,0x09,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01, -0x00,0x00,0x00,0x00,0x00,0x00,0x14,0x00,0x05,0x40,0x67,0x6f,0x6c,0x64,0x00,0x00, -0x03,0x40,0x68,0x70,0x00,0x00,0x03,0x40,0x73,0x70,0x00,0x00,0x04,0x40,0x73,0x74, -0x72,0x00,0x00,0x04,0x40,0x64,0x65,0x78,0x00,0x00,0x04,0x40,0x61,0x67,0x69,0x00, -0x00,0x04,0x40,0x69,0x6e,0x74,0x00,0x00,0x04,0x40,0x61,0x74,0x6b,0x00,0x00,0x05, -0x40,0x70,0x64,0x65,0x66,0x00,0x00,0x05,0x40,0x6d,0x64,0x65,0x66,0x00,0x00,0x07, -0x40,0x77,0x65,0x61,0x70,0x6f,0x6e,0x00,0x00,0x07,0x40,0x61,0x72,0x6d,0x6f,0x72, -0x31,0x00,0x00,0x07,0x40,0x61,0x72,0x6d,0x6f,0x72,0x32,0x00,0x00,0x07,0x40,0x61, -0x72,0x6d,0x6f,0x72,0x33,0x00,0x00,0x07,0x40,0x61,0x72,0x6d,0x6f,0x72,0x34,0x00, -0x00,0x07,0x40,0x61,0x74,0x74,0x61,0x63,0x6b,0x00,0x00,0x06,0x40,0x73,0x6b,0x69, -0x6c,0x6c,0x00,0x00,0x06,0x40,0x67,0x75,0x61,0x72,0x64,0x00,0x00,0x05,0x40,0x69, -0x74,0x65,0x6d,0x00,0x00,0x06,0x40,0x65,0x71,0x75,0x69,0x70,0x00,0x00,0x00,0x00, -0xea,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00,0x19,0x00,0x48,0x00,0x80,0x00, -0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x02,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x03,0x00,0x01, -0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x84,0x03,0x00,0x01,0xa0,0x40,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x04,0x00,0x01,0xa0,0x40,0x80,0x00,0x29,0x00,0x00,0x00, -0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x09,0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61, -0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61,0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65, -0x73,0x73,0x6f,0x72,0x00,0x00,0x08,0x61,0x63,0x74,0x6f,0x72,0x5f,0x69,0x64,0x00, -0x00,0x05,0x6c,0x65,0x76,0x65,0x6c,0x00,0x00,0x09,0x77,0x65,0x61,0x70,0x6f,0x6e, -0x5f,0x69,0x64,0x00,0x00,0x09,0x61,0x72,0x6d,0x6f,0x72,0x31,0x5f,0x69,0x64,0x00, -0x00,0x09,0x61,0x72,0x6d,0x6f,0x72,0x32,0x5f,0x69,0x64,0x00,0x00,0x09,0x61,0x72, -0x6d,0x6f,0x72,0x33,0x5f,0x69,0x64,0x00,0x00,0x09,0x61,0x72,0x6d,0x6f,0x72,0x34, -0x5f,0x69,0x64,0x00,0x00,0x00,0x00,0xb0,0x00,0x02,0x00,0x03,0x00,0x00,0x00,0x00, -0x00,0x10,0x00,0x00,0x26,0x00,0x00,0x00,0x03,0x00,0x40,0x01,0x0e,0x00,0x00,0x01, -0x03,0x00,0x40,0x01,0x8e,0x00,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x01,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x01,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x02,0x00,0x01, -0x83,0xff,0x3f,0x01,0x8e,0x02,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x03,0x00,0x01, -0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x07,0x00,0x09,0x40,0x61, -0x63,0x74,0x6f,0x72,0x5f,0x69,0x64,0x00,0x00,0x06,0x40,0x6c,0x65,0x76,0x65,0x6c, -0x00,0x00,0x0a,0x40,0x77,0x65,0x61,0x70,0x6f,0x6e,0x5f,0x69,0x64,0x00,0x00,0x0a, -0x40,0x61,0x72,0x6d,0x6f,0x72,0x31,0x5f,0x69,0x64,0x00,0x00,0x0a,0x40,0x61,0x72, -0x6d,0x6f,0x72,0x32,0x5f,0x69,0x64,0x00,0x00,0x0a,0x40,0x61,0x72,0x6d,0x6f,0x72, -0x33,0x5f,0x69,0x64,0x00,0x00,0x0a,0x40,0x61,0x72,0x6d,0x6f,0x72,0x34,0x5f,0x69, -0x64,0x00,0x00,0x00,0x04,0x75,0x00,0x02,0x00,0x06,0x00,0x00,0x00,0x00,0x00,0x8a, -0x26,0x00,0x00,0x00,0x83,0xff,0x3f,0x01,0x0e,0x00,0x00,0x01,0x03,0x00,0x40,0x01, -0xb7,0x80,0x00,0x01,0x8e,0x00,0x00,0x01,0x05,0x00,0x00,0x01,0x3d,0x00,0x80,0x01, -0x37,0x81,0x00,0x01,0x0e,0x01,0x00,0x01,0x05,0x00,0x00,0x01,0x3d,0x00,0x80,0x01, -0x37,0x81,0x00,0x01,0x8e,0x01,0x00,0x01,0x05,0x00,0x00,0x01,0x3d,0x00,0x80,0x01, -0x37,0x81,0x00,0x01,0x0e,0x02,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x02,0x00,0x01, -0x3d,0x00,0x00,0x01,0x0e,0x03,0x00,0x01,0x3d,0x00,0x00,0x01,0x8e,0x03,0x00,0x01, -0x3d,0x00,0x00,0x01,0x0e,0x04,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x20,0xc0,0x02,0x01,0x0e,0x06,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x20,0xc0,0x02,0x01,0x8e,0x06,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x20,0xc0,0x02,0x01,0x0e,0x07,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x20,0xc0,0x02,0x01,0x8e,0x07,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0xc1,0x02,0x01,0x0e,0x08,0x00,0x01, -0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0xc1,0x02,0x01,0x8e,0x08,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0xc1,0x02,0x01,0x0e,0x09,0x00,0x01, -0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0xc1,0x02,0x01,0x8e,0x09,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0xc1,0x02,0x01,0x0e,0x0a,0x00,0x01, -0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0xc1,0x02,0x01,0x8e,0x0a,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0xc1,0x02,0x01,0x0e,0x0b,0x00,0x01, -0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0xc1,0x02,0x01,0x8e,0x0b,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0xc1,0x02,0x01,0x0e,0x0c,0x00,0x01, -0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0xc1,0x02,0x01,0x8e,0x0c,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01, -0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02,0x20,0xc1,0x02,0x01,0x0e,0x0d,0x00,0x01, -0x11,0x05,0x00,0x01,0x93,0x04,0x00,0x01,0x3d,0x00,0x80,0x01,0x83,0x27,0x40,0x02, -0x20,0xc1,0x02,0x01,0x8e,0x0d,0x00,0x01,0x11,0x05,0x00,0x01,0x93,0x0e,0x00,0x01, -0x13,0x0e,0x00,0x01,0x20,0xc0,0x02,0x01,0x0e,0x0f,0x00,0x01,0x37,0x80,0x00,0x01, -0x8e,0x0f,0x00,0x01,0x03,0x00,0x40,0x01,0x0e,0x10,0x00,0x01,0x03,0x00,0x40,0x01, -0x8e,0x10,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x11,0x00,0x01,0x83,0xff,0x3f,0x01, -0x8e,0x11,0x00,0x01,0x3d,0x00,0x00,0x01,0x0e,0x12,0x00,0x01,0x3d,0x00,0x00,0x01, -0x8e,0x12,0x00,0x01,0x83,0xff,0x3f,0x01,0x0e,0x13,0x00,0x01,0x03,0x00,0x40,0x01, -0x8e,0x13,0x00,0x01,0x29,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00, -0x00,0x00,0x28,0x00,0x0d,0x40,0x6d,0x61,0x67,0x69,0x63,0x5f,0x6e,0x75,0x6d,0x62, -0x65,0x72,0x00,0x00,0x0e,0x40,0x70,0x61,0x72,0x74,0x79,0x5f,0x6d,0x65,0x6d,0x62, -0x65,0x72,0x73,0x00,0x00,0x09,0x40,0x65,0x6c,0x65,0x6d,0x65,0x6e,0x74,0x73,0x00, -0x00,0x09,0x40,0x73,0x77,0x69,0x74,0x63,0x68,0x65,0x73,0x00,0x00,0x0a,0x40,0x76, -0x61,0x72,0x69,0x61,0x62,0x6c,0x65,0x73,0x00,0x00,0x10,0x40,0x77,0x69,0x6e,0x64, -0x6f,0x77,0x73,0x6b,0x69,0x6e,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0b,0x40,0x74, -0x69,0x74,0x6c,0x65,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x0e,0x40,0x67,0x61,0x6d, -0x65,0x6f,0x76,0x65,0x72,0x5f,0x6e,0x61,0x6d,0x65,0x00,0x00,0x12,0x40,0x62,0x61, -0x74,0x74,0x6c,0x65,0x5f,0x74,0x72,0x61,0x6e,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00, -0x00,0x09,0x41,0x75,0x64,0x69,0x6f,0x46,0x69,0x6c,0x65,0x00,0x00,0x03,0x52,0x50, -0x47,0x00,0x00,0x03,0x6e,0x65,0x77,0x00,0x00,0x0a,0x40,0x74,0x69,0x74,0x6c,0x65, -0x5f,0x62,0x67,0x6d,0x00,0x00,0x0b,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f,0x62, -0x67,0x6d,0x00,0x00,0x0e,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f,0x65,0x6e,0x64, -0x5f,0x6d,0x65,0x00,0x00,0x0c,0x40,0x67,0x61,0x6d,0x65,0x6f,0x76,0x65,0x72,0x5f, -0x6d,0x65,0x00,0x00,0x0a,0x40,0x63,0x75,0x72,0x73,0x6f,0x72,0x5f,0x73,0x65,0x00, -0x00,0x0c,0x40,0x64,0x65,0x63,0x69,0x73,0x69,0x6f,0x6e,0x5f,0x73,0x65,0x00,0x00, -0x0a,0x40,0x63,0x61,0x6e,0x63,0x65,0x6c,0x5f,0x73,0x65,0x00,0x00,0x0a,0x40,0x62, -0x75,0x7a,0x7a,0x65,0x72,0x5f,0x73,0x65,0x00,0x00,0x09,0x40,0x65,0x71,0x75,0x69, -0x70,0x5f,0x73,0x65,0x00,0x00,0x08,0x40,0x73,0x68,0x6f,0x70,0x5f,0x73,0x65,0x00, -0x00,0x08,0x40,0x73,0x61,0x76,0x65,0x5f,0x73,0x65,0x00,0x00,0x08,0x40,0x6c,0x6f, -0x61,0x64,0x5f,0x73,0x65,0x00,0x00,0x10,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x5f, -0x73,0x74,0x61,0x72,0x74,0x5f,0x73,0x65,0x00,0x00,0x0a,0x40,0x65,0x73,0x63,0x61, -0x70,0x65,0x5f,0x73,0x65,0x00,0x00,0x12,0x40,0x61,0x63,0x74,0x6f,0x72,0x5f,0x63, -0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x73,0x65,0x00,0x00,0x12,0x40,0x65,0x6e, -0x65,0x6d,0x79,0x5f,0x63,0x6f,0x6c,0x6c,0x61,0x70,0x73,0x65,0x5f,0x73,0x65,0x00, -0x00,0x05,0x57,0x6f,0x72,0x64,0x73,0x00,0x00,0x06,0x53,0x79,0x73,0x74,0x65,0x6d, -0x00,0x00,0x06,0x40,0x77,0x6f,0x72,0x64,0x73,0x00,0x00,0x0e,0x40,0x74,0x65,0x73, -0x74,0x5f,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x73,0x00,0x00,0x0e,0x40,0x74,0x65, -0x73,0x74,0x5f,0x74,0x72,0x6f,0x6f,0x70,0x5f,0x69,0x64,0x00,0x00,0x0d,0x40,0x73, -0x74,0x61,0x72,0x74,0x5f,0x6d,0x61,0x70,0x5f,0x69,0x64,0x00,0x00,0x08,0x40,0x73, -0x74,0x61,0x72,0x74,0x5f,0x78,0x00,0x00,0x08,0x40,0x73,0x74,0x61,0x72,0x74,0x5f, -0x79,0x00,0x00,0x10,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x62,0x61,0x63,0x6b,0x5f, -0x6e,0x61,0x6d,0x65,0x00,0x00,0x0d,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f, -0x6e,0x61,0x6d,0x65,0x00,0x00,0x0c,0x40,0x62,0x61,0x74,0x74,0x6c,0x65,0x72,0x5f, -0x68,0x75,0x65,0x00,0x00,0x0c,0x40,0x65,0x64,0x69,0x74,0x5f,0x6d,0x61,0x70,0x5f, -0x69,0x64,0x00,0x00,0x00,0x00,0x83,0x00,0x01,0x00,0x04,0x00,0x01,0x00,0x00,0x00, -0x0d,0x00,0x00,0x00,0x48,0x00,0x80,0x00,0xc0,0x00,0x00,0x01,0x46,0x00,0x80,0x00, -0x06,0x00,0x80,0x00,0x04,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00, -0x84,0x01,0x00,0x01,0xa0,0x40,0x80,0x00,0x06,0x00,0x80,0x00,0x04,0x02,0x00,0x01, -0xa0,0x40,0x80,0x00,0x29,0x00,0x80,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x05, -0x00,0x0a,0x69,0x6e,0x69,0x74,0x69,0x61,0x6c,0x69,0x7a,0x65,0x00,0x00,0x0d,0x61, -0x74,0x74,0x72,0x5f,0x61,0x63,0x63,0x65,0x73,0x73,0x6f,0x72,0x00,0x00,0x04,0x6e, -0x61,0x6d,0x65,0x00,0x00,0x06,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x00,0x00,0x05,0x70, -0x69,0x74,0x63,0x68,0x00,0x00,0x00,0x00,0x68,0x00,0x05,0x00,0x06,0x00,0x00,0x00, -0x00,0x00,0x0c,0x00,0x26,0x00,0x30,0x00,0x97,0x01,0x40,0x00,0x97,0x01,0x40,0x00, -0x97,0x01,0x40,0x00,0x97,0x01,0x40,0x00,0x3d,0x00,0x80,0x00,0x83,0x31,0x40,0x01, -0x83,0x31,0xc0,0x01,0x0e,0x00,0x80,0x00,0x8e,0x00,0x00,0x01,0x0e,0x01,0x80,0x01, -0x29,0x00,0x80,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x00,0x00,0x03,0x00, -0x05,0x40,0x6e,0x61,0x6d,0x65,0x00,0x00,0x07,0x40,0x76,0x6f,0x6c,0x75,0x6d,0x65, -0x00,0x00,0x06,0x40,0x70,0x69,0x74,0x63,0x68,0x00,0x4c,0x56,0x41,0x52,0x00,0x00, -0x04,0x4c,0x00,0x00,0x00,0x2c,0x00,0x0b,0x66,0x6f,0x6c,0x64,0x65,0x72,0x5f,0x6e, -0x61,0x6d,0x65,0x00,0x08,0x66,0x69,0x6c,0x65,0x6e,0x61,0x6d,0x65,0x00,0x03,0x68, -0x75,0x65,0x00,0x04,0x70,0x61,0x74,0x68,0x00,0x03,0x6b,0x65,0x79,0x00,0x07,0x74, -0x69,0x6c,0x65,0x5f,0x69,0x64,0x00,0x01,0x78,0x00,0x01,0x79,0x00,0x04,0x72,0x65, -0x63,0x74,0x00,0x08,0x76,0x69,0x65,0x77,0x70,0x6f,0x72,0x74,0x00,0x05,0x76,0x61, -0x6c,0x75,0x65,0x00,0x08,0x63,0x72,0x69,0x74,0x69,0x63,0x61,0x6c,0x00,0x0d,0x64, -0x61,0x6d,0x61,0x67,0x65,0x5f,0x73,0x74,0x72,0x69,0x6e,0x67,0x00,0x06,0x62,0x69, -0x74,0x6d,0x61,0x70,0x00,0x09,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x00, -0x03,0x68,0x69,0x74,0x00,0x0e,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f, -0x6e,0x61,0x6d,0x65,0x00,0x0d,0x61,0x6e,0x69,0x6d,0x61,0x74,0x69,0x6f,0x6e,0x5f, -0x68,0x75,0x65,0x00,0x01,0x69,0x00,0x06,0x73,0x70,0x72,0x69,0x74,0x65,0x00,0x05, -0x61,0x6c,0x70,0x68,0x61,0x00,0x0b,0x66,0x72,0x61,0x6d,0x65,0x5f,0x69,0x6e,0x64, -0x65,0x78,0x00,0x09,0x63,0x65,0x6c,0x6c,0x5f,0x64,0x61,0x74,0x61,0x00,0x08,0x70, -0x6f,0x73,0x69,0x74,0x69,0x6f,0x6e,0x00,0x06,0x74,0x69,0x6d,0x69,0x6e,0x67,0x00, -0x07,0x73,0x70,0x72,0x69,0x74,0x65,0x73,0x00,0x07,0x70,0x61,0x74,0x74,0x65,0x72, -0x6e,0x00,0x02,0x73,0x65,0x00,0x02,0x73,0x78,0x00,0x02,0x73,0x79,0x00,0x06,0x63, -0x6f,0x6c,0x6f,0x72,0x31,0x00,0x06,0x63,0x6f,0x6c,0x6f,0x72,0x32,0x00,0x04,0x74, -0x79,0x70,0x65,0x00,0x02,0x6f,0x78,0x00,0x02,0x6f,0x79,0x00,0x03,0x6d,0x61,0x78, -0x00,0x05,0x77,0x69,0x64,0x74,0x68,0x00,0x06,0x68,0x65,0x69,0x67,0x68,0x74,0x00, -0x04,0x63,0x6f,0x64,0x65,0x00,0x06,0x69,0x6e,0x64,0x65,0x6e,0x74,0x00,0x0a,0x70, -0x61,0x72,0x61,0x6d,0x65,0x74,0x65,0x72,0x73,0x00,0x04,0x6e,0x61,0x6d,0x65,0x00, -0x06,0x76,0x6f,0x6c,0x75,0x6d,0x65,0x00,0x05,0x70,0x69,0x74,0x63,0x68,0x00,0x00, -0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0x00,0x03,0xff,0xff,0x00,0x00,0x00,0x03, -0x00,0x05,0x00,0x04,0x00,0x06,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0xff,0xff, -0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff, -0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0xff,0xff,0x00,0x00,0x00,0x01, -0x00,0x01,0x00,0x02,0x00,0x02,0xff,0xff,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02, -0x00,0x02,0xff,0xff,0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x01, -0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x02,0x00,0x02,0xff,0xff, -0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff, -0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x01,0x00,0x01,0xff,0xff, -0x00,0x00,0x00,0x01,0x00,0x01,0x00,0x05,0x00,0x02,0x00,0x02,0x00,0x03,0xff,0xff, -0x00,0x00,0x00,0x04,0x00,0x05,0x00,0x06,0x00,0x06,0x00,0x07,0x00,0x07,0x00,0x08, -0x00,0x08,0xff,0xff,0x00,0x00,0x00,0x09,0x00,0x01,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0x00,0x0a,0x00,0x01,0x00,0x0b,0x00,0x02,0xff,0xff,0x00,0x00,0x00,0x0c, -0x00,0x04,0x00,0x0d,0x00,0x05,0x00,0x0e,0x00,0x01,0x00,0x0f,0x00,0x02,0xff,0xff, -0x00,0x00,0x00,0x10,0x00,0x04,0x00,0x11,0x00,0x05,0x00,0x0d,0x00,0x06,0x00,0x12, -0x00,0x07,0x00,0x13,0x00,0x08,0x00,0x0e,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x10, -0x00,0x03,0x00,0x11,0x00,0x04,0x00,0x0d,0x00,0x05,0x00,0x12,0x00,0x06,0x00,0x13, -0x00,0x07,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x13,0x00,0x02,0xff,0xff, -0x00,0x00,0x00,0x13,0x00,0x02,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x14,0x00,0x02,0xff,0xff, -0x00,0x00,0x00,0x15,0x00,0x02,0x00,0x16,0x00,0x03,0x00,0x17,0x00,0x04,0x00,0x18, -0x00,0x05,0xff,0xff,0x00,0x00,0x00,0x15,0x00,0x02,0x00,0x16,0x00,0x03,0x00,0x17, -0x00,0x04,0x00,0x18,0x00,0x05,0x00,0x19,0x00,0x01,0x00,0x16,0x00,0x02,0x00,0x17, -0x00,0x03,0xff,0xff,0x00,0x00,0x00,0x12,0x00,0x05,0x00,0x13,0x00,0x06,0x00,0x1a, -0x00,0x07,0x00,0x18,0x00,0x01,0x00,0x0f,0x00,0x02,0xff,0xff,0x00,0x00,0x00,0x1b, -0x00,0x04,0x00,0x06,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x1c,0x00,0x03,0x00,0x12, -0x00,0x04,0x00,0x07,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x1d,0x00,0x03,0x00,0x12, -0x00,0x04,0x00,0x09,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x1e,0x00,0x03,0x00,0x1f, -0x00,0x04,0x00,0x12,0x00,0x05,0x00,0x13,0x00,0x06,0xff,0xff,0x00,0x00,0x00,0x13, -0x00,0x02,0x00,0x20,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x0d,0x00,0x03,0x00,0x12, -0x00,0x04,0x00,0x13,0x00,0x05,0x00,0x21,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x13, -0x00,0x03,0x00,0x22,0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x13,0x00,0x03,0x00,0x23, -0x00,0x01,0xff,0xff,0x00,0x00,0x00,0x12,0x00,0x03,0x00,0x13,0x00,0x04,0xff,0xff, -0x00,0x00,0x00,0x12,0x00,0x02,0x00,0x13,0x00,0x03,0x00,0x06,0x00,0x04,0x00,0x07, -0x00,0x05,0x00,0x24,0x00,0x01,0x00,0x25,0x00,0x02,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x06, -0x00,0x01,0x00,0x07,0x00,0x02,0xff,0xff,0x00,0x00,0x00,0x26,0x00,0x01,0x00,0x27, -0x00,0x02,0x00,0x28,0x00,0x03,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x26, -0x00,0x01,0x00,0x28,0x00,0x02,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x12, -0x00,0x02,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff,0x00,0x00,0xff,0xff, -0x00,0x00,0xff,0xff,0x00,0x00,0x00,0x29,0x00,0x01,0x00,0x2a,0x00,0x02,0x00,0x2b, -0x00,0x03,0xff,0xff,0x00,0x00,0x45,0x4e,0x44,0x00,0x00,0x00,0x00,0x08, -}; +#include "module_rpg.xxd" + diff --git a/binding-mruby/module_rpg.xxd b/binding-mruby/module_rpg.xxd new file mode 100644 index 0000000..a63144a --- /dev/null +++ b/binding-mruby/module_rpg.xxd @@ -0,0 +1,3275 @@ +mrbModuleRPG[] = { + 0x52, 0x49, 0x54, 0x45, 0x30, 0x30, 0x30, 0x34, 0x7e, 0x84, 0x00, 0x00, + 0x99, 0x5e, 0x4d, 0x41, 0x54, 0x5a, 0x30, 0x30, 0x30, 0x30, 0x49, 0x52, + 0x45, 0x50, 0x00, 0x00, 0x94, 0xf4, 0x30, 0x30, 0x30, 0x30, 0x00, 0x00, + 0x00, 0x30, 0x00, 0x01, 0x00, 0x02, 0x00, 0x01, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x80, 0x00, 0x05, 0x00, 0x80, 0x00, 0x44, 0x00, 0x80, 0x00, 0x45, + 0x00, 0x00, 0x00, 0x4a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x00, 0x02, 0x6b, 0x00, 0x01, + 0x00, 0x03, 0x00, 0x17, 0x00, 0x00, 0x00, 0x5d, 0x00, 0x80, 0x00, 0x05, + 0x00, 0x80, 0x00, 0x44, 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x42, 0x01, 0x00, 0x00, 0x93, 0x00, 0x80, 0x40, 0x43, + 0x00, 0x80, 0x00, 0xc5, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x80, 0x80, 0x43, 0x00, 0x80, 0x01, 0x45, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0xc0, 0x43, 0x00, 0x80, 0x01, 0xc5, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x81, 0x00, 0x43, + 0x00, 0x80, 0x02, 0x45, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x81, 0x40, 0x43, 0x00, 0x80, 0x02, 0xc5, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x81, 0x80, 0x43, 0x00, 0x80, 0x03, 0x45, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x81, 0xc0, 0x43, + 0x00, 0x80, 0x03, 0xc5, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x82, 0x00, 0x43, 0x00, 0x80, 0x04, 0x45, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x82, 0x40, 0x43, 0x00, 0x80, 0x04, 0xc5, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x82, 0x80, 0x43, + 0x00, 0x80, 0x05, 0x45, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x82, 0xc0, 0x43, 0x00, 0x80, 0x05, 0xc5, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x83, 0x00, 0x43, 0x00, 0x80, 0x06, 0x45, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x83, 0x40, 0x43, + 0x00, 0x80, 0x06, 0xc5, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x83, 0x80, 0x43, 0x00, 0x80, 0x07, 0x45, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x83, 0xc0, 0x43, 0x00, 0x80, 0x07, 0xc5, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x84, 0x00, 0x43, + 0x00, 0x80, 0x08, 0x45, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x84, 0x40, 0x43, 0x00, 0x80, 0x08, 0xc5, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x84, 0x80, 0x43, 0x00, 0x80, 0x09, 0x45, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x84, 0xc0, 0x43, + 0x00, 0x80, 0x09, 0xc5, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x85, 0x00, 0x43, 0x00, 0x80, 0x0a, 0x45, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x85, 0x40, 0x43, 0x00, 0x80, 0x0a, 0xc5, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x85, 0x80, 0x43, + 0x00, 0x80, 0x0b, 0x45, 0x00, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x17, 0x00, 0x05, 0x43, 0x61, 0x63, 0x68, 0x65, 0x00, + 0x00, 0x06, 0x53, 0x70, 0x72, 0x69, 0x74, 0x65, 0x00, 0x00, 0x07, 0x57, + 0x65, 0x61, 0x74, 0x68, 0x65, 0x72, 0x00, 0x00, 0x03, 0x4d, 0x61, 0x70, + 0x00, 0x00, 0x07, 0x4d, 0x61, 0x70, 0x49, 0x6e, 0x66, 0x6f, 0x00, 0x00, + 0x05, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x0c, 0x45, 0x76, 0x65, + 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x00, 0x00, 0x09, + 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x6f, 0x75, 0x74, 0x65, 0x00, 0x00, 0x0b, + 0x4d, 0x6f, 0x76, 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x00, + 0x00, 0x05, 0x41, 0x63, 0x74, 0x6f, 0x72, 0x00, 0x00, 0x05, 0x43, 0x6c, + 0x61, 0x73, 0x73, 0x00, 0x00, 0x05, 0x53, 0x6b, 0x69, 0x6c, 0x6c, 0x00, + 0x00, 0x04, 0x49, 0x74, 0x65, 0x6d, 0x00, 0x00, 0x06, 0x57, 0x65, 0x61, + 0x70, 0x6f, 0x6e, 0x00, 0x00, 0x05, 0x41, 0x72, 0x6d, 0x6f, 0x72, 0x00, + 0x00, 0x05, 0x45, 0x6e, 0x65, 0x6d, 0x79, 0x00, 0x00, 0x05, 0x54, 0x72, + 0x6f, 0x6f, 0x70, 0x00, 0x00, 0x05, 0x53, 0x74, 0x61, 0x74, 0x65, 0x00, + 0x00, 0x09, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x07, 0x54, 0x69, 0x6c, 0x65, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0b, + 0x43, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x00, + 0x00, 0x06, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, 0x00, 0x00, 0x09, 0x41, + 0x75, 0x64, 0x69, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x00, 0x00, 0x00, 0x01, + 0xd6, 0x00, 0x01, 0x00, 0x02, 0x00, 0x10, 0x00, 0x00, 0x00, 0x44, 0x00, + 0x00, 0x80, 0x40, 0x3f, 0x00, 0x80, 0x00, 0x0e, 0x00, 0x80, 0x00, 0x06, + 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x40, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x02, 0xc0, + 0x00, 0x80, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, + 0x01, 0x00, 0x04, 0xc0, 0x00, 0x80, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x06, 0xc0, 0x00, 0x81, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x08, 0xc0, + 0x00, 0x81, 0x40, 0x46, 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, + 0x01, 0x00, 0x0a, 0xc0, 0x00, 0x81, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x0c, 0xc0, 0x00, 0x81, 0xc0, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x0e, 0xc0, + 0x00, 0x82, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, + 0x01, 0x00, 0x10, 0xc0, 0x00, 0x82, 0x40, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x12, 0xc0, 0x00, 0x82, 0x80, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x14, 0xc0, + 0x00, 0x82, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, + 0x01, 0x00, 0x16, 0xc0, 0x00, 0x83, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x18, 0xc0, 0x00, 0x83, 0x40, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x1a, 0xc0, + 0x00, 0x83, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, 0x00, 0x80, 0x40, 0x47, + 0x01, 0x00, 0x1c, 0xc0, 0x00, 0x83, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x00, 0x80, 0x40, 0x47, 0x01, 0x00, 0x1e, 0xc0, 0x00, 0x84, 0x00, 0x46, + 0x00, 0x80, 0x08, 0x04, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x06, 0x40, 0x63, 0x61, 0x63, 0x68, 0x65, + 0x00, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x00, 0x00, 0x09, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x08, 0x61, 0x75, 0x74, 0x6f, 0x74, 0x69, 0x6c, + 0x65, 0x00, 0x00, 0x0a, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x62, 0x61, + 0x63, 0x6b, 0x00, 0x00, 0x07, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, + 0x00, 0x00, 0x09, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, + 0x00, 0x00, 0x03, 0x66, 0x6f, 0x67, 0x00, 0x00, 0x08, 0x67, 0x61, 0x6d, + 0x65, 0x6f, 0x76, 0x65, 0x72, 0x00, 0x00, 0x04, 0x69, 0x63, 0x6f, 0x6e, + 0x00, 0x00, 0x08, 0x70, 0x61, 0x6e, 0x6f, 0x72, 0x61, 0x6d, 0x61, 0x00, + 0x00, 0x07, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x00, 0x00, 0x07, + 0x74, 0x69, 0x6c, 0x65, 0x73, 0x65, 0x74, 0x00, 0x00, 0x05, 0x74, 0x69, + 0x74, 0x6c, 0x65, 0x00, 0x00, 0x0a, 0x77, 0x69, 0x6e, 0x64, 0x6f, 0x77, + 0x73, 0x6b, 0x69, 0x6e, 0x00, 0x00, 0x04, 0x74, 0x69, 0x6c, 0x65, 0x00, + 0x00, 0x05, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x00, 0x00, 0x00, 0x01, 0xae, + 0x00, 0x07, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4c, 0x00, 0x00, + 0x04, 0x10, 0x00, 0x26, 0x00, 0x40, 0x00, 0x97, 0x00, 0x40, 0x00, 0x97, + 0x01, 0xbf, 0xff, 0x83, 0x03, 0x80, 0x40, 0x01, 0x04, 0x00, 0x80, 0x01, + 0x03, 0x80, 0x00, 0xac, 0x02, 0x81, 0xc0, 0x01, 0x03, 0x80, 0x00, 0x8d, + 0x04, 0x01, 0x40, 0x01, 0x03, 0x80, 0x80, 0xa0, 0x03, 0x80, 0xc0, 0x20, + 0x03, 0xc0, 0x02, 0x18, 0x03, 0x80, 0x00, 0x8d, 0x04, 0x01, 0x40, 0x01, + 0x03, 0x81, 0x00, 0xa0, 0x03, 0x81, 0x40, 0x20, 0x03, 0xc0, 0x0a, 0x19, + 0x03, 0x80, 0x80, 0x01, 0x04, 0x00, 0x00, 0x3d, 0x03, 0x81, 0x80, 0xa0, + 0x03, 0xc0, 0x04, 0x19, 0x03, 0x80, 0x03, 0x91, 0x04, 0x01, 0x40, 0x01, + 0x03, 0x82, 0x00, 0xa0, 0x04, 0x00, 0x00, 0x8d, 0x04, 0x81, 0x40, 0x01, + 0x05, 0x01, 0xc0, 0x01, 0x04, 0x02, 0x41, 0x20, 0x00, 0x40, 0x04, 0x17, + 0x03, 0x80, 0x03, 0x91, 0x04, 0x40, 0x0f, 0x83, 0x04, 0xc0, 0x0f, 0x83, + 0x03, 0x82, 0x01, 0x20, 0x04, 0x00, 0x00, 0x8d, 0x04, 0x81, 0x40, 0x01, + 0x05, 0x01, 0xc0, 0x01, 0x04, 0x02, 0x41, 0x20, 0x03, 0x80, 0xc0, 0x01, + 0x04, 0x3f, 0xff, 0x83, 0x03, 0x82, 0x80, 0xb2, 0x03, 0xc0, 0x02, 0x19, + 0x03, 0x80, 0x00, 0x8d, 0x04, 0x01, 0x40, 0x01, 0x03, 0x81, 0x00, 0xa0, + 0x00, 0x40, 0x0e, 0x97, 0x03, 0x81, 0x40, 0x01, 0x04, 0x00, 0xc0, 0x01, + 0x03, 0x01, 0xc1, 0x37, 0x03, 0x80, 0x00, 0x8d, 0x04, 0x01, 0x80, 0x01, + 0x03, 0x80, 0x80, 0xa0, 0x03, 0x80, 0xc0, 0x20, 0x03, 0xc0, 0x02, 0x18, + 0x03, 0x80, 0x00, 0x8d, 0x04, 0x01, 0x80, 0x01, 0x03, 0x81, 0x00, 0xa0, + 0x03, 0x81, 0x40, 0x20, 0x03, 0xc0, 0x06, 0x99, 0x03, 0x80, 0x00, 0x8d, + 0x04, 0x01, 0x40, 0x01, 0x03, 0x81, 0x00, 0xa0, 0x03, 0x82, 0xc0, 0x20, + 0x04, 0x00, 0x00, 0x8d, 0x04, 0x81, 0x80, 0x01, 0x05, 0x01, 0xc0, 0x01, + 0x04, 0x02, 0x41, 0x20, 0x03, 0x80, 0x00, 0x8d, 0x04, 0x01, 0x80, 0x01, + 0x03, 0x81, 0x00, 0xa0, 0x04, 0x00, 0xc0, 0x01, 0x03, 0x83, 0x00, 0xa0, + 0x03, 0x80, 0x00, 0x8d, 0x04, 0x01, 0x80, 0x01, 0x03, 0x81, 0x00, 0xa0, + 0x03, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0d, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x06, 0x40, 0x63, 0x61, + 0x63, 0x68, 0x65, 0x00, 0x00, 0x08, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, + 0x65, 0x3f, 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, + 0x00, 0x09, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x3f, 0x00, + 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x06, 0x42, 0x69, 0x74, 0x6d, 0x61, + 0x70, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x03, 0x5b, 0x5d, + 0x3d, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x05, 0x63, 0x6c, 0x6f, + 0x6e, 0x65, 0x00, 0x00, 0x0a, 0x68, 0x75, 0x65, 0x5f, 0x63, 0x68, 0x61, + 0x6e, 0x67, 0x65, 0x00, 0x00, 0x00, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, + 0x02, 0x00, 0x00, 0x06, 0x02, 0x80, 0x00, 0x3d, 0x03, 0x00, 0x40, 0x01, + 0x03, 0x80, 0x80, 0x01, 0x02, 0x00, 0x01, 0xa0, 0x02, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x14, 0x47, 0x72, 0x61, 0x70, 0x68, + 0x69, 0x63, 0x73, 0x2f, 0x41, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, + 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, + 0x56, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, + 0x02, 0x80, 0x40, 0x01, 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x13, 0x47, 0x72, 0x61, 0x70, 0x68, + 0x69, 0x63, 0x73, 0x2f, 0x41, 0x75, 0x74, 0x6f, 0x74, 0x69, 0x6c, 0x65, + 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, + 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x58, + 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, + 0x02, 0x80, 0x40, 0x01, 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x15, 0x47, 0x72, 0x61, 0x70, 0x68, + 0x69, 0x63, 0x73, 0x2f, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x62, 0x61, + 0x63, 0x6b, 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0b, 0x6c, 0x6f, + 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, + 0x00, 0x59, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0x04, 0x00, 0x00, 0x26, 0x02, 0x00, 0x00, 0x06, 0x02, 0x80, 0x00, 0x3d, + 0x03, 0x00, 0x40, 0x01, 0x03, 0x80, 0x80, 0x01, 0x02, 0x00, 0x01, 0xa0, + 0x02, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x12, 0x47, + 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, 0x42, 0x61, 0x74, 0x74, + 0x6c, 0x65, 0x72, 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0b, 0x6c, + 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, + 0x00, 0x00, 0x5b, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, 0x02, 0x00, 0x00, 0x06, + 0x02, 0x80, 0x00, 0x3d, 0x03, 0x00, 0x40, 0x01, 0x03, 0x80, 0x80, 0x01, + 0x02, 0x00, 0x01, 0xa0, 0x02, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x14, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x43, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x73, 0x2f, 0x00, + 0x00, 0x00, 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, + 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x04, 0x00, + 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x04, 0x00, 0x00, 0x26, + 0x02, 0x00, 0x00, 0x06, 0x02, 0x80, 0x00, 0x3d, 0x03, 0x00, 0x40, 0x01, + 0x03, 0x80, 0x80, 0x01, 0x02, 0x00, 0x01, 0xa0, 0x02, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x0e, 0x47, 0x72, 0x61, 0x70, 0x68, + 0x69, 0x63, 0x73, 0x2f, 0x46, 0x6f, 0x67, 0x73, 0x2f, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x56, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, 0x02, 0x80, 0x40, 0x01, + 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x13, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x47, 0x61, 0x6d, 0x65, 0x6f, 0x76, 0x65, 0x72, 0x73, 0x2f, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, + 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x52, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, 0x02, 0x80, 0x40, 0x01, + 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x0f, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x49, 0x63, 0x6f, 0x6e, 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, 0x0b, + 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, + 0x00, 0x00, 0x00, 0x5a, 0x00, 0x04, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x07, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, 0x02, 0x00, 0x00, 0x06, + 0x02, 0x80, 0x00, 0x3d, 0x03, 0x00, 0x40, 0x01, 0x03, 0x80, 0x80, 0x01, + 0x02, 0x00, 0x01, 0xa0, 0x02, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x13, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x50, 0x61, 0x6e, 0x6f, 0x72, 0x61, 0x6d, 0x61, 0x73, 0x2f, 0x00, 0x00, + 0x00, 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, + 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x03, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, 0x02, 0x80, 0x40, 0x01, + 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x12, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x2f, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x55, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, 0x02, 0x80, 0x40, 0x01, + 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x12, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x54, 0x69, 0x6c, 0x65, 0x73, 0x65, 0x74, 0x73, 0x2f, 0x00, 0x00, 0x00, + 0x01, 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x53, 0x00, 0x03, 0x00, 0x07, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x00, 0x3d, 0x02, 0x80, 0x40, 0x01, + 0x01, 0x80, 0x01, 0x20, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x10, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, + 0x54, 0x69, 0x74, 0x6c, 0x65, 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, 0x00, + 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, + 0x00, 0x00, 0x00, 0x00, 0x58, 0x00, 0x03, 0x00, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x06, 0x00, 0x02, 0x00, 0x00, 0x26, 0x01, 0x80, 0x00, 0x06, + 0x02, 0x00, 0x00, 0x3d, 0x02, 0x80, 0x40, 0x01, 0x01, 0x80, 0x01, 0x20, + 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x15, 0x47, + 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x2f, 0x57, 0x69, 0x6e, 0x64, + 0x6f, 0x77, 0x73, 0x6b, 0x69, 0x6e, 0x73, 0x2f, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x0b, 0x6c, 0x6f, 0x61, 0x64, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, + 0x70, 0x00, 0x00, 0x00, 0x01, 0x90, 0x00, 0x09, 0x00, 0x0f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x41, 0x06, 0x00, 0x00, 0x26, 0x04, 0x80, 0x40, 0x01, + 0x05, 0x00, 0x80, 0x01, 0x05, 0x80, 0xc0, 0x01, 0x02, 0x82, 0x41, 0xb7, + 0x04, 0x80, 0x00, 0x0d, 0x05, 0x01, 0x40, 0x01, 0x04, 0x80, 0x40, 0xa0, + 0x04, 0x80, 0x80, 0x20, 0x04, 0xc0, 0x02, 0x18, 0x04, 0x80, 0x00, 0x0d, + 0x05, 0x01, 0x40, 0x01, 0x04, 0x80, 0xc0, 0xa0, 0x04, 0x81, 0x00, 0x20, + 0x04, 0xc0, 0x17, 0x19, 0x04, 0x80, 0x02, 0x91, 0x05, 0x40, 0x0f, 0x83, + 0x05, 0xc0, 0x0f, 0x83, 0x04, 0x81, 0x81, 0x20, 0x05, 0x00, 0x00, 0x0d, + 0x05, 0x81, 0x40, 0x01, 0x06, 0x02, 0x40, 0x01, 0x05, 0x01, 0xc1, 0x20, + 0x04, 0x80, 0x80, 0x01, 0x05, 0x40, 0xbf, 0x83, 0x04, 0x82, 0x00, 0xae, + 0x05, 0x40, 0x03, 0x83, 0x04, 0x82, 0x40, 0xa0, 0x05, 0x40, 0x0f, 0x83, + 0x04, 0x82, 0x80, 0xb0, 0x03, 0x02, 0x40, 0x01, 0x04, 0x80, 0x80, 0x01, + 0x05, 0x40, 0xbf, 0x83, 0x04, 0x82, 0x00, 0xae, 0x05, 0x40, 0x03, 0x83, + 0x04, 0x82, 0xc0, 0xb1, 0x05, 0x40, 0x0f, 0x83, 0x04, 0x82, 0x80, 0xb0, + 0x03, 0x82, 0x40, 0x01, 0x04, 0x80, 0x06, 0x11, 0x05, 0x01, 0x80, 0x01, + 0x05, 0x81, 0xc0, 0x01, 0x06, 0x40, 0x0f, 0x83, 0x06, 0xc0, 0x0f, 0x83, + 0x04, 0x81, 0x82, 0x20, 0x04, 0x02, 0x40, 0x01, 0x04, 0x80, 0x00, 0x0d, + 0x05, 0x01, 0x40, 0x01, 0x04, 0x80, 0xc0, 0xa0, 0x05, 0x3f, 0xff, 0x83, + 0x05, 0xbf, 0xff, 0x83, 0x06, 0x00, 0x00, 0x06, 0x06, 0x80, 0x40, 0x01, + 0x06, 0x03, 0x80, 0xa0, 0x06, 0x82, 0x00, 0x01, 0x04, 0x83, 0x42, 0x20, + 0x04, 0x80, 0x00, 0x0d, 0x05, 0x01, 0x40, 0x01, 0x04, 0x80, 0xc0, 0xa0, + 0x05, 0x00, 0xc0, 0x01, 0x04, 0x83, 0xc0, 0xa0, 0x04, 0x80, 0x00, 0x0d, + 0x05, 0x01, 0x40, 0x01, 0x04, 0x80, 0xc0, 0xa0, 0x04, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x06, 0x40, 0x63, + 0x61, 0x63, 0x68, 0x65, 0x00, 0x00, 0x08, 0x69, 0x6e, 0x63, 0x6c, 0x75, + 0x64, 0x65, 0x3f, 0x00, 0x00, 0x01, 0x21, 0x00, 0x00, 0x02, 0x5b, 0x5d, + 0x00, 0x00, 0x09, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x64, 0x3f, + 0x00, 0x00, 0x06, 0x42, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x03, + 0x6e, 0x65, 0x77, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, 0x00, 0x01, + 0x2d, 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x01, 0x2a, 0x00, 0x00, 0x01, + 0x2f, 0x00, 0x00, 0x04, 0x52, 0x65, 0x63, 0x74, 0x00, 0x00, 0x03, 0x62, + 0x6c, 0x74, 0x00, 0x00, 0x07, 0x74, 0x69, 0x6c, 0x65, 0x73, 0x65, 0x74, + 0x00, 0x00, 0x0a, 0x68, 0x75, 0x65, 0x5f, 0x63, 0x68, 0x61, 0x6e, 0x67, + 0x65, 0x00, 0x00, 0x00, 0x00, 0x48, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x80, 0x3f, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x91, 0x01, 0x00, 0x80, 0x20, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x06, 0x40, 0x63, 0x61, 0x63, 0x68, 0x65, 0x00, 0x00, 0x02, 0x47, + 0x43, 0x00, 0x00, 0x05, 0x73, 0x74, 0x61, 0x72, 0x74, 0x00, 0x00, 0x00, + 0x02, 0xa7, 0x00, 0x01, 0x00, 0x03, 0x00, 0x17, 0x00, 0x00, 0x00, 0x4b, + 0x00, 0x80, 0x40, 0x37, 0x00, 0x80, 0x00, 0x10, 0x00, 0x80, 0x40, 0x3f, + 0x00, 0x80, 0x00, 0x90, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x02, 0xc0, + 0x00, 0x80, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x04, 0xc0, + 0x00, 0x81, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x06, 0xc0, + 0x00, 0x81, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x08, 0xc0, + 0x00, 0x81, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x0a, 0xc0, + 0x00, 0x81, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x0c, 0xc0, + 0x00, 0x82, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x0e, 0xc0, + 0x00, 0x82, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x10, 0xc0, + 0x00, 0x82, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x12, 0xc0, + 0x00, 0x82, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x14, 0xc0, + 0x00, 0x83, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x16, 0xc0, + 0x00, 0x83, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x18, 0xc0, + 0x00, 0x83, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x1a, 0xc0, + 0x00, 0x83, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x1c, 0xc0, + 0x00, 0x84, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x1e, 0xc0, + 0x00, 0x84, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x20, 0xc0, + 0x00, 0x84, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x22, 0xc0, + 0x00, 0x84, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x24, 0xc0, + 0x00, 0x85, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x26, 0xc0, + 0x00, 0x85, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x28, 0xc0, + 0x00, 0x85, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x2a, 0xc0, + 0x00, 0x85, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x2c, 0xc0, + 0x00, 0x86, 0x00, 0x46, 0x00, 0x80, 0x0c, 0x04, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x0d, 0x40, 0x40, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x00, + 0x00, 0x12, 0x40, 0x40, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, + 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x00, 0x0a, 0x69, + 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x07, + 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x00, 0x06, 0x77, 0x68, + 0x69, 0x74, 0x65, 0x6e, 0x00, 0x00, 0x06, 0x61, 0x70, 0x70, 0x65, 0x61, + 0x72, 0x00, 0x00, 0x06, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x00, 0x00, + 0x08, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x00, 0x00, 0x06, + 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x00, 0x00, 0x09, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0e, 0x6c, 0x6f, 0x6f, + 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x0e, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x64, 0x61, + 0x6d, 0x61, 0x67, 0x65, 0x00, 0x00, 0x11, 0x64, 0x69, 0x73, 0x70, 0x6f, + 0x73, 0x65, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x16, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x6c, + 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x08, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x6f, 0x6e, + 0x00, 0x00, 0x09, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x6f, 0x66, 0x66, + 0x00, 0x00, 0x06, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x3f, 0x00, 0x00, 0x07, + 0x65, 0x66, 0x66, 0x65, 0x63, 0x74, 0x3f, 0x00, 0x00, 0x06, 0x75, 0x70, + 0x64, 0x61, 0x74, 0x65, 0x00, 0x00, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, + 0x65, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x15, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, + 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x15, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x73, 0x65, 0x74, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, + 0x00, 0x18, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x69, + 0x6e, 0x67, 0x00, 0x00, 0x02, 0x78, 0x3d, 0x00, 0x00, 0x02, 0x79, 0x3d, + 0x00, 0x00, 0x00, 0x00, 0xfd, 0x00, 0x03, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x17, 0x00, 0x00, 0x10, 0x00, 0x26, 0x00, 0x40, 0x00, 0x97, + 0x00, 0x40, 0x00, 0x97, 0x00, 0x80, 0x00, 0x05, 0x02, 0x00, 0x00, 0x25, + 0x02, 0x00, 0x40, 0x01, 0x02, 0x80, 0x00, 0x05, 0x01, 0x80, 0x00, 0xa4, + 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x00, 0x0e, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x80, 0x00, 0x8e, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x01, 0x0e, + 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x01, 0x8e, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x80, 0x02, 0x0e, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x02, 0x8e, + 0x01, 0x80, 0x00, 0x08, 0x01, 0x80, 0x03, 0x0e, 0x01, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x11, 0x40, 0x5f, + 0x77, 0x68, 0x69, 0x74, 0x65, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x61, 0x70, 0x70, 0x65, + 0x61, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x11, 0x40, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x13, 0x40, 0x5f, + 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x5f, 0x64, 0x75, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x64, 0x61, + 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x14, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x07, 0x40, 0x5f, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x00, + 0x00, 0x00, 0x80, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x0a, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x06, + 0x01, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x06, 0x01, 0x00, 0x40, 0x20, + 0x01, 0x00, 0x00, 0x06, 0x01, 0x00, 0x80, 0x20, 0x01, 0x80, 0x00, 0x25, + 0x01, 0x00, 0x3f, 0xa4, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x0e, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, + 0x65, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x00, 0x00, 0x11, 0x64, + 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x16, 0x64, 0x69, 0x73, 0x70, 0x6f, + 0x73, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x00, 0x02, + 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x06, 0x01, 0x00, 0x40, 0x20, + 0x01, 0xc0, 0x7f, 0x03, 0x02, 0x40, 0x7f, 0x03, 0x02, 0xc0, 0x7f, 0x03, + 0x03, 0x40, 0x3f, 0x83, 0x01, 0x00, 0x82, 0x20, 0x01, 0x40, 0x7f, 0x03, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc0, 0xa0, + 0x01, 0x40, 0x07, 0x83, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0b, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x00, 0x00, 0x05, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3d, 0x00, 0x00, + 0x11, 0x40, 0x5f, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6e, 0x5f, 0x64, 0x75, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x61, + 0x70, 0x70, 0x65, 0x61, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, + 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x13, 0x40, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x5f, + 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, + 0xf7, 0x00, 0x02, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x00, 0x06, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x06, + 0x01, 0x00, 0x40, 0x20, 0x01, 0xbf, 0xff, 0x83, 0x02, 0x3f, 0xff, 0x83, + 0x02, 0xbf, 0xff, 0x83, 0x03, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x82, 0x20, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc0, 0xa0, 0x01, 0x40, 0x07, 0x83, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x8e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x0b, 0x62, 0x6c, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, + 0x3d, 0x00, 0x00, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x03, + 0x73, 0x65, 0x74, 0x00, 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x3d, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, + 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x11, 0x40, 0x5f, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6e, 0x5f, 0x64, 0x75, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x65, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, + 0x70, 0x73, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x00, 0x00, 0xf7, 0x00, 0x02, 0x00, 0x08, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0x00, 0xa0, + 0x01, 0x00, 0x00, 0x06, 0x01, 0x00, 0x40, 0x20, 0x01, 0xbf, 0xff, 0x83, + 0x02, 0x3f, 0xff, 0x83, 0x02, 0xbf, 0xff, 0x83, 0x03, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x82, 0x20, 0x01, 0x40, 0x7f, 0x03, 0x01, 0x80, 0x00, 0x06, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc0, 0xa0, 0x01, 0x40, 0x0f, 0x83, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x08, 0x00, 0x0b, 0x62, 0x6c, 0x65, 0x6e, 0x64, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x3d, 0x00, 0x00, 0x05, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, 0x00, 0x00, 0x08, 0x6f, 0x70, + 0x61, 0x63, 0x69, 0x74, 0x79, 0x3d, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x65, + 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x77, 0x68, 0x69, 0x74, 0x65, + 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x11, 0x40, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x5f, 0x64, 0x75, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x63, + 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0xf7, 0x00, 0x02, 0x00, + 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x40, 0x00, 0x03, 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x06, 0x01, 0x00, 0x40, 0x20, + 0x01, 0xc0, 0x7f, 0x03, 0x02, 0x40, 0x1f, 0x83, 0x02, 0xc0, 0x1f, 0x83, + 0x03, 0x40, 0x7f, 0x03, 0x01, 0x00, 0x82, 0x20, 0x01, 0x40, 0x7f, 0x03, + 0x01, 0x80, 0x00, 0x06, 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc0, 0xa0, + 0x01, 0x40, 0x17, 0x83, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0b, 0x62, 0x6c, + 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x00, 0x00, 0x05, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3d, 0x00, 0x00, + 0x13, 0x40, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x5f, + 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, + 0x5f, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x61, 0x70, 0x70, + 0x65, 0x61, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x11, 0x40, 0x5f, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, + 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x04, + 0x4f, 0x00, 0x06, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x00, 0xcc, 0x00, + 0x04, 0x00, 0x00, 0x26, 0x03, 0x00, 0x00, 0x06, 0x03, 0x00, 0x00, 0x20, + 0x03, 0x00, 0x40, 0x01, 0x03, 0x80, 0x01, 0x11, 0x03, 0x00, 0x40, 0xa0, + 0x03, 0x40, 0x02, 0x99, 0x03, 0x00, 0x40, 0x01, 0x03, 0x00, 0xc0, 0x20, + 0x03, 0x01, 0x00, 0x20, 0x02, 0x01, 0x80, 0x01, 0x00, 0x40, 0x01, 0x97, + 0x03, 0x00, 0x40, 0x01, 0x03, 0x01, 0x00, 0x20, 0x02, 0x01, 0x80, 0x01, + 0x03, 0x00, 0x02, 0x91, 0x03, 0xc0, 0x4f, 0x83, 0x04, 0x40, 0x17, 0x83, + 0x03, 0x01, 0x81, 0x20, 0x02, 0x81, 0x80, 0x01, 0x03, 0x00, 0x00, 0x3d, + 0x03, 0x81, 0x40, 0x01, 0x03, 0x81, 0xc0, 0x20, 0x04, 0x01, 0x80, 0x01, + 0x03, 0x82, 0x00, 0xa0, 0x03, 0x40, 0x0f, 0x83, 0x03, 0x81, 0x40, 0x01, + 0x03, 0x81, 0xc0, 0x20, 0x04, 0x01, 0x80, 0x01, 0x03, 0x82, 0x40, 0xa0, + 0x03, 0x01, 0x40, 0x01, 0x03, 0x01, 0xc0, 0x20, 0x03, 0x02, 0x80, 0x20, + 0x03, 0xbf, 0xff, 0x83, 0x04, 0x3f, 0xff, 0x83, 0x04, 0xbf, 0xff, 0x83, + 0x03, 0x02, 0xc1, 0xa0, 0x03, 0x01, 0x40, 0x01, 0x03, 0xbf, 0xff, 0x03, + 0x04, 0x40, 0x05, 0x83, 0x04, 0x03, 0x40, 0xaf, 0x04, 0xc0, 0x4f, 0x83, + 0x05, 0x40, 0x11, 0x83, 0x05, 0x81, 0x00, 0x01, 0x06, 0x40, 0x00, 0x03, + 0x03, 0x03, 0x03, 0x20, 0x03, 0x01, 0x40, 0x01, 0x03, 0xc0, 0x00, 0x03, + 0x04, 0x40, 0x05, 0x83, 0x04, 0x03, 0x40, 0xaf, 0x04, 0xc0, 0x4f, 0x83, + 0x05, 0x40, 0x11, 0x83, 0x05, 0x81, 0x00, 0x01, 0x06, 0x40, 0x00, 0x03, + 0x03, 0x03, 0x03, 0x20, 0x03, 0x01, 0x40, 0x01, 0x03, 0xbf, 0xff, 0x03, + 0x04, 0x40, 0x05, 0x83, 0x04, 0x03, 0x80, 0xad, 0x04, 0xc0, 0x4f, 0x83, + 0x05, 0x40, 0x11, 0x83, 0x05, 0x81, 0x00, 0x01, 0x06, 0x40, 0x00, 0x03, + 0x03, 0x03, 0x03, 0x20, 0x03, 0x01, 0x40, 0x01, 0x03, 0xc0, 0x00, 0x03, + 0x04, 0x40, 0x05, 0x83, 0x04, 0x03, 0x80, 0xad, 0x04, 0xc0, 0x4f, 0x83, + 0x05, 0x40, 0x11, 0x83, 0x05, 0x81, 0x00, 0x01, 0x06, 0x40, 0x00, 0x03, + 0x03, 0x03, 0x03, 0x20, 0x03, 0x00, 0x40, 0x01, 0x03, 0x80, 0x01, 0x11, + 0x03, 0x00, 0x40, 0xa0, 0x03, 0x40, 0x01, 0x99, 0x03, 0x00, 0x40, 0x01, + 0x03, 0xbf, 0xff, 0x83, 0x03, 0x03, 0xc0, 0xb3, 0x03, 0x40, 0x04, 0x19, + 0x03, 0x01, 0x40, 0x01, 0x03, 0x01, 0xc0, 0x20, 0x03, 0x02, 0x80, 0x20, + 0x03, 0xc0, 0x57, 0x83, 0x04, 0x40, 0x7f, 0x03, 0x04, 0xc0, 0x47, 0x83, + 0x03, 0x02, 0xc1, 0xa0, 0x00, 0x40, 0x03, 0x97, 0x03, 0x01, 0x40, 0x01, + 0x03, 0x01, 0xc0, 0x20, 0x03, 0x02, 0x80, 0x20, 0x03, 0xc0, 0x7f, 0x03, + 0x04, 0x40, 0x7f, 0x03, 0x04, 0xc0, 0x7f, 0x03, 0x03, 0x02, 0xc1, 0xa0, + 0x03, 0x01, 0x40, 0x01, 0x03, 0xbf, 0xff, 0x83, 0x04, 0x40, 0x05, 0x83, + 0x04, 0xc0, 0x4f, 0x83, 0x05, 0x40, 0x11, 0x83, 0x05, 0x81, 0x00, 0x01, + 0x06, 0x40, 0x00, 0x03, 0x03, 0x03, 0x03, 0x20, 0x01, 0x40, 0x1d, 0x99, + 0x03, 0x40, 0x09, 0x83, 0x03, 0x81, 0x40, 0x01, 0x03, 0x81, 0xc0, 0x20, + 0x04, 0x01, 0x80, 0x01, 0x03, 0x82, 0x40, 0xa0, 0x03, 0x01, 0x40, 0x01, + 0x03, 0x01, 0xc0, 0x20, 0x03, 0x02, 0x80, 0x20, 0x03, 0xbf, 0xff, 0x83, + 0x04, 0x3f, 0xff, 0x83, 0x04, 0xbf, 0xff, 0x83, 0x03, 0x02, 0xc1, 0xa0, + 0x03, 0x01, 0x40, 0x01, 0x03, 0xbf, 0xff, 0x03, 0x04, 0x3f, 0xff, 0x03, + 0x04, 0xc0, 0x4f, 0x83, 0x05, 0x40, 0x09, 0x83, 0x05, 0x80, 0x00, 0xbd, + 0x06, 0x40, 0x00, 0x03, 0x03, 0x03, 0x03, 0x20, 0x03, 0x01, 0x40, 0x01, + 0x03, 0xc0, 0x00, 0x03, 0x04, 0x3f, 0xff, 0x03, 0x04, 0xc0, 0x4f, 0x83, + 0x05, 0x40, 0x09, 0x83, 0x05, 0x80, 0x00, 0xbd, 0x06, 0x40, 0x00, 0x03, + 0x03, 0x03, 0x03, 0x20, 0x03, 0x01, 0x40, 0x01, 0x03, 0xbf, 0xff, 0x03, + 0x04, 0x40, 0x00, 0x03, 0x04, 0xc0, 0x4f, 0x83, 0x05, 0x40, 0x09, 0x83, + 0x05, 0x80, 0x00, 0xbd, 0x06, 0x40, 0x00, 0x03, 0x03, 0x03, 0x03, 0x20, + 0x03, 0x01, 0x40, 0x01, 0x03, 0xc0, 0x00, 0x03, 0x04, 0x40, 0x00, 0x03, + 0x04, 0xc0, 0x4f, 0x83, 0x05, 0x40, 0x09, 0x83, 0x05, 0x80, 0x00, 0xbd, + 0x06, 0x40, 0x00, 0x03, 0x03, 0x03, 0x03, 0x20, 0x03, 0x01, 0x40, 0x01, + 0x03, 0x01, 0xc0, 0x20, 0x03, 0x02, 0x80, 0x20, 0x03, 0xc0, 0x7f, 0x03, + 0x04, 0x40, 0x7f, 0x03, 0x04, 0xc0, 0x7f, 0x03, 0x03, 0x02, 0xc1, 0xa0, + 0x03, 0x01, 0x40, 0x01, 0x03, 0xbf, 0xff, 0x83, 0x04, 0x3f, 0xff, 0x83, + 0x04, 0xc0, 0x4f, 0x83, 0x05, 0x40, 0x09, 0x83, 0x05, 0x80, 0x00, 0xbd, + 0x06, 0x40, 0x00, 0x03, 0x03, 0x03, 0x03, 0x20, 0x03, 0x00, 0x00, 0x42, + 0x03, 0x00, 0x08, 0x13, 0x03, 0x80, 0x00, 0x06, 0x03, 0x84, 0x40, 0x20, + 0x03, 0x01, 0x80, 0xa0, 0x03, 0x00, 0x09, 0x0e, 0x03, 0x01, 0x40, 0x01, + 0x03, 0x80, 0x09, 0x0d, 0x04, 0x01, 0x80, 0x01, 0x03, 0x84, 0xc0, 0xa0, + 0x03, 0x40, 0x27, 0x83, 0x03, 0x80, 0x09, 0x0d, 0x04, 0x01, 0x80, 0x01, + 0x03, 0x85, 0x00, 0xa0, 0x03, 0x40, 0x09, 0x83, 0x03, 0x80, 0x09, 0x0d, + 0x04, 0x01, 0x80, 0x01, 0x03, 0x85, 0x40, 0xa0, 0x03, 0x00, 0x00, 0x06, + 0x03, 0x05, 0x80, 0x20, 0x03, 0x80, 0x09, 0x0d, 0x04, 0x01, 0x80, 0x01, + 0x03, 0x85, 0xc0, 0xa0, 0x03, 0x00, 0x00, 0x06, 0x03, 0x06, 0x00, 0x20, + 0x03, 0x80, 0x00, 0x06, 0x03, 0x86, 0x40, 0x20, 0x04, 0x40, 0x00, 0x83, + 0x03, 0x86, 0x80, 0xb1, 0x03, 0x03, 0x40, 0xae, 0x03, 0x80, 0x09, 0x0d, + 0x04, 0x01, 0x80, 0x01, 0x03, 0x86, 0xc0, 0xa0, 0x03, 0x45, 0xdb, 0x83, + 0x03, 0x80, 0x09, 0x0d, 0x04, 0x01, 0x80, 0x01, 0x03, 0x87, 0x00, 0xa0, + 0x03, 0x40, 0x13, 0x83, 0x03, 0x00, 0x0e, 0x8e, 0x03, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x0b, 0x41, 0x72, 0x69, 0x61, 0x6c, + 0x20, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x00, 0x00, 0x08, 0x43, 0x52, 0x49, + 0x54, 0x49, 0x43, 0x41, 0x4c, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x0e, 0x64, + 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, + 0x65, 0x00, 0x00, 0x05, 0x69, 0x73, 0x5f, 0x61, 0x3f, 0x00, 0x00, 0x07, + 0x4e, 0x75, 0x6d, 0x65, 0x72, 0x69, 0x63, 0x00, 0x00, 0x03, 0x61, 0x62, + 0x73, 0x00, 0x00, 0x04, 0x74, 0x6f, 0x5f, 0x73, 0x00, 0x00, 0x06, 0x42, + 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, + 0x00, 0x04, 0x66, 0x6f, 0x6e, 0x74, 0x00, 0x00, 0x05, 0x6e, 0x61, 0x6d, + 0x65, 0x3d, 0x00, 0x00, 0x05, 0x73, 0x69, 0x7a, 0x65, 0x3d, 0x00, 0x00, + 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, + 0x00, 0x00, 0x09, 0x64, 0x72, 0x61, 0x77, 0x5f, 0x74, 0x65, 0x78, 0x74, + 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x01, 0x3c, + 0x00, 0x00, 0x06, 0x53, 0x70, 0x72, 0x69, 0x74, 0x65, 0x00, 0x00, 0x08, + 0x76, 0x69, 0x65, 0x77, 0x70, 0x6f, 0x72, 0x74, 0x00, 0x00, 0x0f, 0x40, + 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x70, 0x72, 0x69, + 0x74, 0x65, 0x00, 0x00, 0x07, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x3d, + 0x00, 0x00, 0x03, 0x6f, 0x78, 0x3d, 0x00, 0x00, 0x03, 0x6f, 0x79, 0x3d, + 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x02, 0x78, 0x3d, 0x00, 0x00, 0x01, + 0x79, 0x00, 0x00, 0x02, 0x6f, 0x79, 0x00, 0x00, 0x01, 0x2f, 0x00, 0x00, + 0x02, 0x79, 0x3d, 0x00, 0x00, 0x02, 0x7a, 0x3d, 0x00, 0x00, 0x11, 0x40, + 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x02, 0x57, 0x00, 0x09, 0x00, + 0x0e, 0x00, 0x01, 0x00, 0x00, 0x00, 0x47, 0x00, 0x04, 0x00, 0x00, 0x26, + 0x04, 0x80, 0x00, 0x06, 0x04, 0x80, 0x00, 0x20, 0x00, 0x80, 0x00, 0x8e, + 0x04, 0x80, 0x00, 0x8d, 0x05, 0x00, 0x00, 0x05, 0x04, 0x80, 0x80, 0xb2, + 0x04, 0xc0, 0x01, 0x19, 0x04, 0x80, 0x00, 0x05, 0x04, 0x80, 0x00, 0x29, + 0x01, 0x00, 0x01, 0x8e, 0x04, 0x80, 0x00, 0x8d, 0x04, 0x81, 0x00, 0x20, + 0x04, 0x80, 0x02, 0x8e, 0x04, 0x80, 0x00, 0x8d, 0x04, 0x81, 0x80, 0x20, + 0x02, 0x02, 0x40, 0x01, 0x04, 0x80, 0x00, 0x8d, 0x04, 0x81, 0xc0, 0x20, + 0x02, 0x82, 0x40, 0x01, 0x04, 0x80, 0x04, 0x91, 0x04, 0x80, 0x04, 0x13, + 0x05, 0x01, 0x00, 0x01, 0x05, 0x81, 0x40, 0x01, 0x04, 0x82, 0x81, 0x20, + 0x03, 0x02, 0x40, 0x01, 0x04, 0x80, 0x05, 0x8f, 0x05, 0x01, 0x80, 0x01, + 0x04, 0x83, 0x00, 0xa0, 0x04, 0xc0, 0x04, 0x19, 0x04, 0x80, 0x05, 0x8f, + 0x05, 0x01, 0x80, 0x01, 0x05, 0x82, 0x40, 0x01, 0x06, 0x02, 0x80, 0x01, + 0x05, 0x83, 0x40, 0xa0, 0x05, 0x83, 0x80, 0xad, 0x04, 0x83, 0xc1, 0x20, + 0x00, 0x40, 0x02, 0x97, 0x04, 0xc0, 0x00, 0x03, 0x05, 0x00, 0x05, 0x8f, + 0x05, 0x81, 0x80, 0x01, 0x06, 0x02, 0x40, 0x01, 0x05, 0x03, 0xc1, 0x20, + 0x04, 0x82, 0x40, 0x37, 0x04, 0x80, 0x08, 0x0e, 0x04, 0x80, 0x00, 0x8d, + 0x04, 0x84, 0x40, 0x20, 0x05, 0x40, 0x01, 0x03, 0x04, 0x84, 0x80, 0xa0, + 0x04, 0xc0, 0x02, 0x18, 0x04, 0x80, 0x09, 0x8f, 0x05, 0x00, 0x40, 0x01, + 0x04, 0x83, 0x00, 0xa0, 0x04, 0x85, 0x00, 0x20, 0x04, 0xc0, 0x06, 0x99, + 0x04, 0xbf, 0xff, 0x83, 0x05, 0x40, 0x07, 0x03, 0x04, 0x82, 0x40, 0x41, + 0x05, 0x00, 0x01, 0x40, 0x04, 0x85, 0x40, 0x21, 0x04, 0x80, 0x09, 0x8f, + 0x05, 0x00, 0x40, 0x01, 0x04, 0x83, 0x00, 0xa0, 0x04, 0xc0, 0x00, 0x99, + 0x00, 0x40, 0x01, 0x97, 0x04, 0x80, 0x09, 0x8f, 0x05, 0x00, 0x40, 0x01, + 0x04, 0x85, 0x80, 0xa0, 0x04, 0x80, 0x00, 0x06, 0x04, 0x85, 0xc0, 0x20, + 0x04, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x11, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0b, 0x40, 0x5f, + 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x02, + 0x3d, 0x3d, 0x00, 0x00, 0x0f, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x68, 0x69, 0x74, 0x00, 0x00, 0x09, 0x66, + 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x14, 0x40, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0e, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x05, 0x43, 0x61, 0x63, 0x68, 0x65, + 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x09, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x12, 0x40, 0x40, 0x5f, + 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, + 0x75, 0x6e, 0x74, 0x00, 0x00, 0x08, 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, + 0x65, 0x3f, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x01, 0x2b, 0x00, + 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, + 0x74, 0x65, 0x73, 0x00, 0x00, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x0d, 0x40, 0x40, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x00, + 0x00, 0x01, 0x21, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, + 0x04, 0x70, 0x75, 0x73, 0x68, 0x00, 0x00, 0x10, 0x75, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x14, 0x00, 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0xc0, 0x16, + 0x01, 0x00, 0x00, 0x42, 0x01, 0x00, 0x00, 0x13, 0x01, 0x80, 0x00, 0x06, + 0x01, 0x80, 0x80, 0x20, 0x01, 0x00, 0x40, 0xa0, 0x01, 0x02, 0x00, 0x16, + 0x01, 0x01, 0x80, 0x15, 0x01, 0x82, 0x00, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc0, 0xa0, 0x01, 0x00, 0x00, 0x08, 0x01, 0x82, 0x00, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x81, 0x00, 0xa0, 0x01, 0x00, 0x02, 0x8d, + 0x01, 0x82, 0x00, 0x15, 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x06, 0x53, 0x70, + 0x72, 0x69, 0x74, 0x65, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, + 0x08, 0x76, 0x69, 0x65, 0x77, 0x70, 0x6f, 0x72, 0x74, 0x00, 0x00, 0x07, + 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x3d, 0x00, 0x00, 0x08, 0x76, 0x69, + 0x73, 0x69, 0x62, 0x6c, 0x65, 0x3d, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, + 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x04, 0x70, 0x75, 0x73, 0x68, 0x00, + 0x00, 0x00, 0x01, 0xec, 0x00, 0x08, 0x00, 0x0d, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x39, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, 0x04, 0x00, 0x40, 0x01, + 0x04, 0x80, 0x00, 0x8d, 0x04, 0x00, 0x00, 0xb2, 0x04, 0x40, 0x01, 0x19, + 0x04, 0x00, 0x00, 0x05, 0x04, 0x00, 0x00, 0x29, 0x04, 0x00, 0x00, 0x06, + 0x04, 0x00, 0x80, 0x20, 0x00, 0x80, 0x00, 0x8e, 0x04, 0x00, 0x00, 0x8d, + 0x04, 0x80, 0x00, 0x05, 0x04, 0x00, 0x00, 0xb2, 0x04, 0x40, 0x01, 0x19, + 0x04, 0x00, 0x00, 0x05, 0x04, 0x00, 0x00, 0x29, 0x04, 0x3f, 0xff, 0x83, + 0x04, 0x00, 0x01, 0x8e, 0x04, 0x00, 0x00, 0x8d, 0x04, 0x01, 0x00, 0x20, + 0x01, 0x82, 0x00, 0x01, 0x04, 0x00, 0x00, 0x8d, 0x04, 0x01, 0x40, 0x20, + 0x02, 0x02, 0x00, 0x01, 0x04, 0x00, 0x03, 0x91, 0x04, 0x00, 0x03, 0x13, + 0x04, 0x80, 0xc0, 0x01, 0x05, 0x01, 0x00, 0x01, 0x04, 0x02, 0x01, 0x20, + 0x02, 0x82, 0x00, 0x01, 0x04, 0x00, 0x04, 0x8f, 0x04, 0x81, 0x40, 0x01, + 0x04, 0x02, 0x80, 0xa0, 0x04, 0x40, 0x04, 0x19, 0x04, 0x00, 0x04, 0x8f, + 0x04, 0x81, 0x40, 0x01, 0x05, 0x02, 0x00, 0x01, 0x05, 0x82, 0x40, 0x01, + 0x05, 0x02, 0xc0, 0xa0, 0x05, 0x03, 0x00, 0xad, 0x04, 0x03, 0x41, 0x20, + 0x00, 0x40, 0x02, 0x97, 0x04, 0x40, 0x00, 0x03, 0x04, 0x80, 0x04, 0x8f, + 0x05, 0x01, 0x40, 0x01, 0x05, 0x82, 0x00, 0x01, 0x04, 0x83, 0x41, 0x20, + 0x04, 0x02, 0x00, 0x37, 0x04, 0x00, 0x07, 0x0e, 0x04, 0x3f, 0xff, 0x83, + 0x04, 0xc0, 0x07, 0x03, 0x04, 0x02, 0x00, 0x41, 0x04, 0x80, 0x01, 0x40, + 0x04, 0x03, 0xc0, 0x21, 0x04, 0x00, 0x00, 0x06, 0x04, 0x04, 0x00, 0x20, + 0x04, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x10, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, + 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x16, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x6c, 0x6f, + 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x16, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x6e, 0x64, 0x65, + 0x78, 0x00, 0x00, 0x0e, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, + 0x05, 0x43, 0x61, 0x63, 0x68, 0x65, 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, + 0x00, 0x00, 0x09, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x12, 0x40, 0x40, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, + 0x6e, 0x63, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x00, 0x08, + 0x69, 0x6e, 0x63, 0x6c, 0x75, 0x64, 0x65, 0x3f, 0x00, 0x00, 0x02, 0x5b, + 0x5d, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, + 0x00, 0x18, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, + 0x65, 0x73, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x15, + 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, + 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, + 0x00, 0xbb, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, + 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x80, 0x16, 0x01, 0x00, 0x00, 0x42, + 0x01, 0x00, 0x00, 0x13, 0x01, 0x80, 0x00, 0x06, 0x01, 0x80, 0x80, 0x20, + 0x01, 0x00, 0x40, 0xa0, 0x01, 0x01, 0xc0, 0x16, 0x01, 0x01, 0x40, 0x15, + 0x01, 0x81, 0xc0, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc0, 0xa0, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x81, 0xc0, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x81, 0x00, 0xa0, 0x01, 0x00, 0x02, 0x8d, 0x01, 0x81, 0xc0, 0x15, + 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x06, 0x53, 0x70, 0x72, 0x69, 0x74, 0x65, + 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x08, 0x76, 0x69, 0x65, + 0x77, 0x70, 0x6f, 0x72, 0x74, 0x00, 0x00, 0x07, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x3d, 0x00, 0x00, 0x08, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, + 0x65, 0x3d, 0x00, 0x00, 0x18, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, + 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, + 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x04, 0x70, 0x75, 0x73, 0x68, + 0x00, 0x00, 0x00, 0x00, 0x9c, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x11, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x0d, + 0x01, 0x80, 0x00, 0x05, 0x01, 0x00, 0x40, 0xa0, 0x01, 0x40, 0x05, 0x19, + 0x01, 0x00, 0x00, 0x0d, 0x01, 0x00, 0x80, 0x20, 0x01, 0x00, 0xc0, 0x20, + 0x01, 0x00, 0x00, 0x0d, 0x01, 0x00, 0xc0, 0x20, 0x01, 0x00, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x0e, + 0x00, 0x40, 0x00, 0x97, 0x01, 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0f, 0x40, 0x5f, + 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, + 0x65, 0x00, 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x06, 0x62, 0x69, 0x74, + 0x6d, 0x61, 0x70, 0x00, 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, + 0x65, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, + 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, + 0x01, 0x26, 0x00, 0x03, 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x80, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x05, + 0x01, 0x80, 0x40, 0xa0, 0x01, 0xc0, 0x10, 0x99, 0x01, 0x80, 0x00, 0x0d, + 0x02, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x80, 0xa0, 0x01, 0x00, 0xc0, 0x01, + 0x02, 0x00, 0x00, 0x05, 0x01, 0x80, 0x40, 0xa0, 0x01, 0xc0, 0x09, 0x19, + 0x01, 0x80, 0x01, 0x8f, 0x02, 0x00, 0x80, 0x01, 0x02, 0x01, 0x00, 0x20, + 0x02, 0x80, 0xc0, 0x01, 0x03, 0x01, 0x00, 0x01, 0x02, 0x80, 0x80, 0xa0, + 0x02, 0x81, 0x40, 0xaf, 0x01, 0x81, 0x81, 0x20, 0x01, 0x80, 0x01, 0x8f, + 0x02, 0x00, 0x80, 0x01, 0x02, 0x01, 0x00, 0x20, 0x01, 0x80, 0x80, 0xa0, + 0x02, 0x3f, 0xff, 0x83, 0x01, 0x81, 0xc0, 0xb2, 0x01, 0xc0, 0x01, 0x99, + 0x01, 0x80, 0x80, 0x01, 0x01, 0x81, 0x00, 0x20, 0x01, 0x82, 0x00, 0x20, + 0x01, 0x80, 0x00, 0x0d, 0x02, 0x00, 0x01, 0x40, 0x01, 0x82, 0x40, 0x21, + 0x01, 0x80, 0x00, 0x05, 0x01, 0x80, 0x00, 0x0e, 0x01, 0x80, 0x00, 0x05, + 0x01, 0x80, 0x05, 0x0e, 0x00, 0x40, 0x00, 0x97, 0x01, 0x80, 0x00, 0x05, + 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, + 0x00, 0x13, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x02, + 0x21, 0x3d, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x12, 0x40, 0x40, + 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, 0x63, + 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x00, 0x06, 0x62, 0x69, 0x74, 0x6d, 0x61, + 0x70, 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, + 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6f, + 0x73, 0x65, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x0b, + 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x00, 0x00, 0x38, 0x00, 0x01, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x05, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, 0x00, 0x80, 0x80, 0x16, + 0x01, 0x00, 0x80, 0x15, 0x01, 0x00, 0x00, 0x20, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, 0x00, 0x07, 0x64, 0x69, + 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x00, 0x00, 0x01, 0x30, 0x00, 0x03, + 0x00, 0x08, 0x00, 0x01, 0x00, 0x00, 0x00, 0x28, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x80, 0x00, 0x0d, 0x02, 0x00, 0x00, 0x05, 0x01, 0x80, 0x40, 0xa0, + 0x01, 0xc0, 0x10, 0x99, 0x01, 0x80, 0x00, 0x0d, 0x02, 0x3f, 0xff, 0x83, + 0x01, 0x80, 0x80, 0xa0, 0x01, 0x00, 0xc0, 0x01, 0x02, 0x00, 0x00, 0x05, + 0x01, 0x80, 0x40, 0xa0, 0x01, 0xc0, 0x09, 0x19, 0x01, 0x80, 0x01, 0x8f, + 0x02, 0x00, 0x80, 0x01, 0x02, 0x01, 0x00, 0x20, 0x02, 0x80, 0xc0, 0x01, + 0x03, 0x01, 0x00, 0x01, 0x02, 0x80, 0x80, 0xa0, 0x02, 0x81, 0x40, 0xaf, + 0x01, 0x81, 0x81, 0x20, 0x01, 0x80, 0x01, 0x8f, 0x02, 0x00, 0x80, 0x01, + 0x02, 0x01, 0x00, 0x20, 0x01, 0x80, 0x80, 0xa0, 0x02, 0x3f, 0xff, 0x83, + 0x01, 0x81, 0xc0, 0xb2, 0x01, 0xc0, 0x01, 0x99, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x81, 0x00, 0x20, 0x01, 0x82, 0x00, 0x20, 0x01, 0x80, 0x00, 0x0d, + 0x02, 0x00, 0x01, 0x40, 0x01, 0x82, 0x40, 0x21, 0x01, 0x80, 0x00, 0x05, + 0x01, 0x80, 0x00, 0x0e, 0x01, 0x80, 0x00, 0x05, 0x01, 0x80, 0x05, 0x0e, + 0x00, 0x40, 0x00, 0x97, 0x01, 0x80, 0x00, 0x05, 0x01, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x18, 0x40, 0x5f, + 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, + 0x02, 0x21, 0x3d, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x12, 0x40, + 0x40, 0x5f, 0x72, 0x65, 0x66, 0x65, 0x72, 0x65, 0x6e, 0x63, 0x65, 0x5f, + 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x00, 0x06, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, + 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, + 0x6f, 0x73, 0x65, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, + 0x10, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x80, 0x80, 0x16, 0x01, 0x00, 0x80, 0x15, 0x01, 0x00, 0x00, 0x20, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x00, 0x00, + 0x00, 0x5c, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x0d, 0x01, 0x40, 0x01, 0x19, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x40, 0x02, 0x17, 0x01, 0x00, 0x00, 0x07, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x07, 0x40, 0x5f, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x00, 0x0d, + 0x40, 0x5f, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x75, 0x6e, + 0x74, 0x00, 0x00, 0x00, 0x00, 0x6e, 0x00, 0x02, 0x00, 0x08, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x0d, + 0x01, 0x40, 0x05, 0x19, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x06, 0x01, 0x00, 0x40, 0x20, 0x01, 0xbf, 0xff, 0x83, + 0x02, 0x3f, 0xff, 0x83, 0x02, 0xbf, 0xff, 0x83, 0x03, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x82, 0x20, 0x00, 0x40, 0x00, 0x97, 0x01, 0x00, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x03, + 0x00, 0x07, 0x40, 0x5f, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x00, 0x05, + 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x00, 0x00, 0x30, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x0d, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x07, 0x40, 0x5f, 0x62, 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x00, 0x00, + 0x00, 0xff, 0x00, 0x02, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x0d, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x00, 0x40, 0xb5, 0x01, 0x40, 0x01, 0x98, 0x01, 0x00, 0x01, 0x0d, + 0x01, 0xbf, 0xff, 0x83, 0x01, 0x00, 0x40, 0xb5, 0x01, 0x40, 0x01, 0x98, + 0x01, 0x00, 0x01, 0x8d, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x00, 0x40, 0xb5, + 0x01, 0x40, 0x01, 0x98, 0x01, 0x00, 0x02, 0x0d, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x00, 0x40, 0xb5, 0x01, 0x40, 0x01, 0x98, 0x01, 0x00, 0x02, 0x8d, + 0x01, 0xbf, 0xff, 0x83, 0x01, 0x00, 0x40, 0xb5, 0x01, 0x40, 0x01, 0x98, + 0x01, 0x00, 0x03, 0x0d, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x00, 0x40, 0xb5, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x11, 0x40, 0x5f, 0x77, 0x68, 0x69, 0x74, 0x65, 0x6e, 0x5f, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x01, 0x3e, 0x00, + 0x00, 0x11, 0x40, 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x5f, 0x64, + 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, + 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, + 0x61, 0x70, 0x73, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, + 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x14, + 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x05, + 0x29, 0x00, 0x03, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0xd8, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x02, 0x00, 0x00, 0x25, 0x01, 0x80, 0x3f, 0xa4, + 0x01, 0x80, 0x00, 0x0d, 0x02, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x40, 0xb5, + 0x01, 0xc0, 0x07, 0x19, 0x01, 0x80, 0x00, 0x0d, 0x01, 0x80, 0x80, 0xaf, + 0x01, 0x80, 0x00, 0x0e, 0x01, 0xc0, 0x3f, 0x83, 0x02, 0x40, 0x07, 0x83, + 0x02, 0x80, 0x00, 0x0d, 0x02, 0x00, 0x80, 0xae, 0x02, 0xc0, 0x04, 0x83, + 0x02, 0x00, 0xc0, 0xb0, 0x01, 0x80, 0x80, 0xae, 0x02, 0x00, 0x00, 0x06, + 0x02, 0x01, 0x00, 0x20, 0x02, 0x80, 0xc0, 0x01, 0x02, 0x01, 0x40, 0xa0, + 0x01, 0x80, 0x03, 0x0d, 0x02, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x40, 0xb5, + 0x01, 0xc0, 0x05, 0x99, 0x01, 0x80, 0x03, 0x0d, 0x01, 0x80, 0x80, 0xaf, + 0x01, 0x80, 0x03, 0x0e, 0x01, 0xc0, 0x07, 0x83, 0x02, 0x00, 0x03, 0x0d, + 0x01, 0x80, 0x80, 0xae, 0x02, 0x40, 0x07, 0x83, 0x01, 0x80, 0xc0, 0xb0, + 0x02, 0x00, 0x00, 0x06, 0x02, 0x80, 0xc0, 0x01, 0x02, 0x01, 0xc0, 0xa0, + 0x01, 0x80, 0x04, 0x0d, 0x02, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x40, 0xb5, + 0x01, 0xc0, 0x06, 0x99, 0x01, 0x80, 0x04, 0x0d, 0x01, 0x80, 0x80, 0xaf, + 0x01, 0x80, 0x04, 0x0e, 0x01, 0xc0, 0x7f, 0x83, 0x02, 0x40, 0x0f, 0x83, + 0x02, 0x80, 0x04, 0x0d, 0x02, 0x00, 0x80, 0xae, 0x02, 0xc0, 0x04, 0x83, + 0x02, 0x00, 0xc0, 0xb0, 0x01, 0x80, 0x80, 0xae, 0x02, 0x00, 0x00, 0x06, + 0x02, 0x80, 0xc0, 0x01, 0x02, 0x01, 0xc0, 0xa0, 0x01, 0x80, 0x04, 0x8d, + 0x02, 0x3f, 0xff, 0x83, 0x01, 0x80, 0x40, 0xb5, 0x01, 0xc0, 0x06, 0x99, + 0x01, 0x80, 0x04, 0x8d, 0x01, 0x80, 0x80, 0xaf, 0x01, 0x80, 0x04, 0x8e, + 0x01, 0xc0, 0x7f, 0x83, 0x02, 0x40, 0x17, 0x83, 0x02, 0x80, 0x04, 0x8d, + 0x02, 0x00, 0x80, 0xae, 0x02, 0xc0, 0x02, 0x83, 0x02, 0x00, 0xc0, 0xb0, + 0x01, 0x80, 0x80, 0xae, 0x02, 0x00, 0x00, 0x06, 0x02, 0x80, 0xc0, 0x01, + 0x02, 0x01, 0xc0, 0xa0, 0x01, 0x80, 0x05, 0x0d, 0x02, 0x3f, 0xff, 0x83, + 0x01, 0x80, 0x40, 0xb5, 0x01, 0xc0, 0x24, 0x19, 0x01, 0x80, 0x05, 0x0d, + 0x01, 0x80, 0x80, 0xaf, 0x01, 0x80, 0x05, 0x0e, 0x01, 0x80, 0x05, 0x0d, + 0x02, 0x40, 0x12, 0x83, 0x02, 0xc0, 0x13, 0x03, 0x02, 0x01, 0x00, 0x41, + 0x02, 0x80, 0xc0, 0x01, 0x02, 0x02, 0xc0, 0xa0, 0x02, 0x40, 0x00, 0x98, + 0x00, 0x40, 0x03, 0x17, 0x02, 0x00, 0x06, 0x0d, 0x02, 0x81, 0x00, 0x01, + 0x02, 0x83, 0x40, 0x20, 0x02, 0x80, 0x82, 0x2f, 0x02, 0x03, 0x80, 0xa0, + 0x00, 0x40, 0x13, 0x97, 0x02, 0x40, 0x11, 0x83, 0x02, 0xc0, 0x12, 0x03, + 0x02, 0x01, 0x00, 0x41, 0x02, 0x80, 0xc0, 0x01, 0x02, 0x02, 0xc0, 0xa0, + 0x02, 0x40, 0x00, 0x98, 0x00, 0x40, 0x03, 0x17, 0x02, 0x00, 0x06, 0x0d, + 0x02, 0x81, 0x00, 0x01, 0x02, 0x83, 0x40, 0x20, 0x02, 0x80, 0x81, 0x2f, + 0x02, 0x03, 0x80, 0xa0, 0x00, 0x40, 0x0d, 0x17, 0x02, 0x40, 0x10, 0x83, + 0x02, 0xc0, 0x11, 0x03, 0x02, 0x01, 0x00, 0x41, 0x02, 0x80, 0xc0, 0x01, + 0x02, 0x02, 0xc0, 0xa0, 0x02, 0x40, 0x00, 0x98, 0x00, 0x40, 0x03, 0x17, + 0x02, 0x00, 0x06, 0x0d, 0x02, 0x81, 0x00, 0x01, 0x02, 0x83, 0x40, 0x20, + 0x02, 0x83, 0xc1, 0x2d, 0x02, 0x03, 0x80, 0xa0, 0x00, 0x40, 0x06, 0x97, + 0x02, 0x40, 0x0d, 0x83, 0x02, 0xc0, 0x10, 0x03, 0x02, 0x01, 0x00, 0x41, + 0x02, 0x80, 0xc0, 0x01, 0x02, 0x02, 0xc0, 0xa0, 0x02, 0x40, 0x00, 0x98, + 0x00, 0x40, 0x03, 0x17, 0x02, 0x00, 0x06, 0x0d, 0x02, 0x81, 0x00, 0x01, + 0x02, 0x83, 0x40, 0x20, 0x02, 0x83, 0xc2, 0x2d, 0x02, 0x03, 0x80, 0xa0, + 0x00, 0x40, 0x00, 0x17, 0x01, 0xc0, 0x7f, 0x83, 0x02, 0x40, 0x05, 0x83, + 0x02, 0x80, 0x05, 0x0d, 0x02, 0x00, 0x80, 0xae, 0x02, 0xc0, 0x0f, 0x83, + 0x02, 0x00, 0xc0, 0xb0, 0x01, 0x80, 0x80, 0xae, 0x02, 0x00, 0x06, 0x0d, + 0x02, 0x80, 0xc0, 0x01, 0x02, 0x01, 0xc0, 0xa0, 0x01, 0x80, 0x05, 0x0d, + 0x02, 0x3f, 0xff, 0x83, 0x01, 0x84, 0x00, 0xb2, 0x01, 0xc0, 0x01, 0x19, + 0x01, 0x80, 0x00, 0x06, 0x01, 0x84, 0x40, 0x20, 0x01, 0x80, 0x09, 0x0d, + 0x02, 0x00, 0x00, 0x05, 0x01, 0x84, 0xc0, 0xa0, 0x01, 0xc0, 0x03, 0x19, + 0x01, 0x80, 0x0a, 0x11, 0x01, 0x85, 0x40, 0x20, 0x02, 0x40, 0x00, 0x83, + 0x01, 0x85, 0x80, 0xa0, 0x02, 0x3f, 0xff, 0x83, 0x01, 0x84, 0x00, 0xb2, + 0x01, 0xc0, 0x02, 0x99, 0x01, 0x80, 0x0b, 0x8d, 0x01, 0x80, 0x80, 0xaf, + 0x01, 0x80, 0x0b, 0x8e, 0x01, 0x80, 0x00, 0x06, 0x01, 0x86, 0x00, 0x20, + 0x01, 0x80, 0x0c, 0x8d, 0x02, 0x00, 0x00, 0x05, 0x01, 0x84, 0xc0, 0xa0, + 0x01, 0xc0, 0x03, 0x19, 0x01, 0x80, 0x0a, 0x11, 0x01, 0x85, 0x40, 0x20, + 0x02, 0x40, 0x00, 0x83, 0x01, 0x85, 0x80, 0xa0, 0x02, 0x3f, 0xff, 0x83, + 0x01, 0x84, 0x00, 0xb2, 0x01, 0xc0, 0x05, 0x19, 0x01, 0x80, 0x00, 0x06, + 0x01, 0x86, 0x80, 0x20, 0x01, 0x80, 0x0d, 0x8d, 0x01, 0x83, 0xc0, 0xad, + 0x01, 0x80, 0x0d, 0x8e, 0x01, 0x80, 0x0d, 0x8d, 0x02, 0x00, 0x0c, 0x8d, + 0x02, 0x07, 0x00, 0x20, 0x01, 0x85, 0x80, 0xa0, 0x01, 0x80, 0x0d, 0x8e, + 0x01, 0x80, 0x0e, 0x8d, 0x01, 0xc0, 0x0e, 0x19, 0x01, 0x80, 0x0f, 0x0d, + 0x01, 0x83, 0xc0, 0xad, 0x02, 0x40, 0x0f, 0x83, 0x01, 0x85, 0x80, 0xa0, + 0x01, 0x80, 0x0f, 0x0e, 0x01, 0x80, 0x0f, 0x0d, 0x02, 0x40, 0x07, 0x83, + 0x01, 0x87, 0xc0, 0xb3, 0x01, 0xc0, 0x03, 0x99, 0x01, 0xc0, 0x07, 0x83, + 0x02, 0x00, 0x0f, 0x0d, 0x01, 0x80, 0x80, 0xae, 0x02, 0x40, 0x02, 0x83, + 0x01, 0x80, 0xc0, 0xb0, 0x01, 0x00, 0xc0, 0x01, 0x00, 0x40, 0x02, 0x97, + 0x01, 0x80, 0x0f, 0x0d, 0x01, 0x80, 0x88, 0x2f, 0x02, 0x40, 0x02, 0x83, + 0x01, 0x80, 0xc0, 0xb0, 0x01, 0x00, 0xc0, 0x01, 0x01, 0x80, 0x00, 0x06, + 0x01, 0x81, 0x00, 0x20, 0x02, 0x40, 0x7f, 0x03, 0x02, 0xc0, 0x7f, 0x03, + 0x03, 0x40, 0x7f, 0x03, 0x03, 0x80, 0x80, 0x01, 0x01, 0x88, 0x02, 0x20, + 0x01, 0x80, 0x10, 0x8f, 0x01, 0x88, 0x80, 0x20, 0x01, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x23, 0x00, 0x11, 0x40, 0x5f, + 0x77, 0x68, 0x69, 0x74, 0x65, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x01, 0x3e, 0x00, 0x00, 0x01, 0x2d, 0x00, + 0x00, 0x01, 0x2a, 0x00, 0x00, 0x05, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, + 0x00, 0x06, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x3d, 0x00, 0x00, 0x11, 0x40, + 0x5f, 0x61, 0x70, 0x70, 0x65, 0x61, 0x72, 0x5f, 0x64, 0x75, 0x72, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3d, 0x00, 0x00, 0x11, 0x40, 0x5f, 0x65, 0x73, 0x63, 0x61, + 0x70, 0x65, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x13, 0x40, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, + 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x11, + 0x40, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x64, 0x75, 0x72, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x03, 0x3d, 0x3d, 0x3d, 0x00, + 0x00, 0x0f, 0x40, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x73, + 0x70, 0x72, 0x69, 0x74, 0x65, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x02, + 0x79, 0x3d, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, + 0x00, 0x0e, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x5f, 0x64, 0x61, + 0x6d, 0x61, 0x67, 0x65, 0x00, 0x00, 0x0b, 0x40, 0x5f, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x02, 0x21, 0x3d, 0x00, + 0x00, 0x08, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, 0x63, 0x73, 0x00, 0x00, + 0x0b, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x00, 0x00, 0x01, 0x25, 0x00, 0x00, 0x14, 0x40, 0x5f, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x10, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x10, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x15, 0x75, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x16, 0x40, 0x5f, 0x6c, 0x6f, + 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x00, 0x00, 0x09, 0x66, 0x72, 0x61, + 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x07, 0x40, 0x5f, 0x62, + 0x6c, 0x69, 0x6e, 0x6b, 0x00, 0x00, 0x0d, 0x40, 0x5f, 0x62, 0x6c, 0x69, + 0x6e, 0x6b, 0x5f, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x00, 0x00, 0x01, 0x3c, + 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0d, 0x40, 0x40, 0x5f, + 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x00, 0x00, + 0x05, 0x63, 0x6c, 0x65, 0x61, 0x72, 0x00, 0x00, 0x00, 0x01, 0x4b, 0x00, + 0x06, 0x00, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x03, 0x00, 0x00, 0x0d, 0x03, 0xbf, 0xff, 0x83, + 0x03, 0x00, 0x40, 0xb5, 0x03, 0x40, 0x0c, 0x19, 0x03, 0x00, 0x01, 0x0d, + 0x03, 0x00, 0xc0, 0x20, 0x03, 0x80, 0x00, 0x0d, 0x03, 0x01, 0x00, 0xae, + 0x01, 0x01, 0x80, 0x01, 0x03, 0x00, 0x01, 0x0d, 0x03, 0x01, 0x40, 0x20, + 0x03, 0x80, 0x80, 0x01, 0x03, 0x01, 0x80, 0xa0, 0x03, 0x01, 0xc0, 0x20, + 0x01, 0x81, 0x80, 0x01, 0x03, 0x00, 0x01, 0x0d, 0x03, 0x02, 0x00, 0x20, + 0x02, 0x01, 0x80, 0x01, 0x03, 0x00, 0x00, 0x06, 0x03, 0x80, 0x05, 0x0d, + 0x04, 0x00, 0xc0, 0x01, 0x04, 0x81, 0x00, 0x01, 0x03, 0x02, 0x41, 0xa0, + 0x03, 0x00, 0x01, 0x0d, 0x03, 0x02, 0xc0, 0x20, 0x03, 0x80, 0x01, 0x40, + 0x03, 0x03, 0x00, 0x21, 0x00, 0x40, 0x01, 0x17, 0x03, 0x00, 0x00, 0x06, + 0x03, 0x03, 0x40, 0x20, 0x03, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0e, 0x00, 0x14, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x01, 0x3e, 0x00, 0x00, 0x0b, 0x40, 0x5f, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x09, 0x66, + 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x01, 0x2d, + 0x00, 0x00, 0x06, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, 0x02, + 0x5b, 0x5d, 0x00, 0x00, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x64, 0x61, + 0x74, 0x61, 0x00, 0x00, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x15, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, + 0x73, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, + 0x00, 0x07, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, 0x73, 0x00, 0x00, 0x04, + 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x11, 0x64, 0x69, 0x73, 0x70, 0x6f, + 0x73, 0x65, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x00, 0x00, 0x8c, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0e, 0x00, 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x40, 0x16, + 0x01, 0x01, 0x40, 0x15, 0x01, 0x00, 0x00, 0x20, 0x01, 0x80, 0x80, 0x15, + 0x01, 0x00, 0x40, 0xb2, 0x01, 0x40, 0x02, 0x99, 0x01, 0x00, 0x00, 0x06, + 0x01, 0x81, 0x40, 0x15, 0x02, 0x00, 0x01, 0x8d, 0x01, 0x00, 0x81, 0x20, + 0x00, 0x40, 0x00, 0x97, 0x01, 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x05, 0x66, 0x72, + 0x61, 0x6d, 0x65, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x18, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, + 0x63, 0x65, 0x73, 0x73, 0x5f, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, 0x00, + 0x00, 0x0f, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x68, 0x69, 0x74, 0x00, 0x00, 0x00, 0x01, 0x03, 0x00, 0x06, + 0x00, 0x0b, 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x00, 0x00, 0x0d, 0x03, 0x00, 0x00, 0x8d, 0x03, 0x00, 0x80, 0x20, + 0x03, 0x80, 0x80, 0x01, 0x03, 0x00, 0xc0, 0xa0, 0x03, 0x01, 0x00, 0x20, + 0x01, 0x81, 0x80, 0x01, 0x03, 0x00, 0x00, 0x8d, 0x03, 0x01, 0x40, 0x20, + 0x02, 0x01, 0x80, 0x01, 0x03, 0x00, 0x00, 0x06, 0x03, 0x80, 0x03, 0x8d, + 0x04, 0x00, 0xc0, 0x01, 0x04, 0x81, 0x00, 0x01, 0x03, 0x01, 0x81, 0xa0, + 0x03, 0x00, 0x00, 0x8d, 0x03, 0x02, 0x00, 0x20, 0x03, 0x80, 0x01, 0x40, + 0x03, 0x02, 0x40, 0x21, 0x03, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0a, 0x00, 0x16, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, + 0x6e, 0x64, 0x65, 0x78, 0x00, 0x00, 0x10, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, + 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x06, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, 0x02, 0x5b, + 0x5d, 0x00, 0x00, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, + 0x61, 0x00, 0x00, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x15, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x73, 0x65, 0x74, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, + 0x00, 0x00, 0x18, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, + 0x74, 0x65, 0x73, 0x00, 0x00, 0x07, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, + 0x73, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, + 0x7a, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x40, 0x16, 0x01, 0x01, 0x40, 0x15, + 0x01, 0x00, 0x00, 0x20, 0x01, 0x80, 0x80, 0x15, 0x01, 0x00, 0x40, 0xb2, + 0x01, 0x40, 0x02, 0x99, 0x01, 0x00, 0x00, 0x06, 0x01, 0x81, 0x40, 0x15, + 0x02, 0x00, 0x00, 0x07, 0x01, 0x00, 0x81, 0x20, 0x00, 0x40, 0x00, 0x97, + 0x01, 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x18, 0x61, 0x6e, 0x69, 0x6d, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x70, 0x72, 0x6f, 0x63, 0x65, 0x73, 0x73, + 0x5f, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0x3d, + 0x00, 0x08, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x07, 0x00, 0x00, + 0x06, 0x00, 0x00, 0x26, 0x04, 0x3f, 0xff, 0x83, 0x04, 0xc0, 0x07, 0x03, + 0x04, 0x02, 0x00, 0x41, 0x04, 0x80, 0x01, 0x40, 0x04, 0x00, 0x00, 0x21, + 0x04, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x00, 0x04, 0xb9, 0x00, + 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x40, 0x16, 0x01, 0x00, 0x40, 0x15, + 0x01, 0x81, 0x40, 0x15, 0x01, 0x00, 0x00, 0xa0, 0x01, 0x01, 0x80, 0x16, + 0x01, 0x00, 0x80, 0x15, 0x01, 0x81, 0x40, 0x15, 0x02, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x01, 0x20, 0x01, 0x01, 0xc0, 0x16, 0x01, 0x01, 0x80, 0x15, + 0x01, 0x80, 0x00, 0x05, 0x01, 0x00, 0x40, 0xb2, 0x01, 0x40, 0x01, 0x98, + 0x01, 0x01, 0xc0, 0x15, 0x01, 0x80, 0x00, 0x05, 0x01, 0x00, 0x40, 0xb2, + 0x01, 0x40, 0x01, 0x98, 0x01, 0x01, 0xc0, 0x15, 0x01, 0xbf, 0xff, 0x03, + 0x01, 0x00, 0x40, 0xb2, 0x01, 0x40, 0x05, 0x19, 0x01, 0x01, 0x80, 0x15, + 0x01, 0x80, 0x00, 0x05, 0x01, 0x00, 0x80, 0xa0, 0x01, 0x40, 0x02, 0x19, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc0, 0xa0, 0x01, 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x29, + 0x01, 0x00, 0x00, 0x07, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc0, 0xa0, 0x01, 0x01, 0x80, 0x15, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x81, 0xc0, 0x15, 0x02, 0x40, 0x02, 0x03, 0x01, 0x81, 0x80, 0xa0, + 0x02, 0x40, 0x5f, 0x83, 0x01, 0x81, 0xc0, 0xb0, 0x02, 0x01, 0xc0, 0x15, + 0x02, 0xc0, 0x02, 0x03, 0x02, 0x02, 0x00, 0xb1, 0x02, 0xc0, 0x5f, 0x83, + 0x02, 0x01, 0xc0, 0xb0, 0x02, 0xc0, 0x5f, 0x83, 0x03, 0x40, 0x5f, 0x83, + 0x01, 0x01, 0x42, 0x20, 0x01, 0x00, 0xc0, 0x15, 0x01, 0xc0, 0x01, 0x03, + 0x01, 0x00, 0x40, 0xb2, 0x01, 0x40, 0x10, 0x99, 0x01, 0x00, 0x00, 0x06, + 0x01, 0x02, 0x40, 0x20, 0x01, 0x80, 0x00, 0x05, 0x01, 0x00, 0x80, 0xa0, + 0x01, 0x40, 0x09, 0x99, 0x01, 0x00, 0x00, 0x06, 0x01, 0x02, 0x40, 0x20, + 0x01, 0x02, 0x80, 0x20, 0x01, 0x02, 0xc0, 0x20, 0x01, 0xc0, 0x00, 0x83, + 0x01, 0x02, 0x00, 0xb1, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x83, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x06, 0x01, 0x02, 0x40, 0x20, + 0x01, 0x02, 0x80, 0x20, 0x01, 0x03, 0x40, 0x20, 0x01, 0xc0, 0x4f, 0x83, + 0x01, 0x03, 0x80, 0xae, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x83, 0xc0, 0xa0, 0x00, 0x40, 0x04, 0x17, 0x01, 0x40, 0x9f, 0x83, + 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x83, 0x00, 0xa0, + 0x01, 0x40, 0x77, 0x83, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x83, 0xc0, 0xa0, 0x00, 0x40, 0x1c, 0x17, 0x01, 0x00, 0x00, 0x06, + 0x01, 0x04, 0x00, 0x20, 0x01, 0x80, 0x00, 0x06, 0x01, 0x84, 0x40, 0x20, + 0x01, 0x03, 0x80, 0xae, 0x01, 0x80, 0x00, 0x06, 0x01, 0x81, 0x00, 0x20, + 0x01, 0x82, 0xc0, 0x20, 0x02, 0x40, 0x00, 0x83, 0x01, 0x82, 0x00, 0xb1, + 0x01, 0x04, 0x80, 0xac, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x83, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x06, 0x01, 0x04, 0xc0, 0x20, + 0x01, 0x80, 0x00, 0x06, 0x01, 0x85, 0x00, 0x20, 0x01, 0x03, 0x80, 0xae, + 0x01, 0x80, 0x00, 0x06, 0x01, 0x81, 0x00, 0x20, 0x01, 0x83, 0x40, 0x20, + 0x02, 0x40, 0x00, 0x83, 0x01, 0x82, 0x00, 0xb1, 0x01, 0x04, 0x80, 0xac, + 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x83, 0xc0, 0xa0, + 0x01, 0x00, 0xc0, 0x15, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x00, 0x40, 0xb2, + 0x01, 0x40, 0x05, 0x19, 0x01, 0x01, 0x80, 0x15, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x84, 0xc0, 0x20, 0x02, 0x00, 0x00, 0x06, 0x02, 0x01, 0x00, 0x20, + 0x02, 0x03, 0x40, 0x20, 0x02, 0xc0, 0x01, 0x83, 0x02, 0x02, 0x00, 0xb1, + 0x01, 0x83, 0x80, 0xae, 0x01, 0x03, 0xc0, 0xa0, 0x01, 0x00, 0xc0, 0x15, + 0x01, 0xc0, 0x00, 0x83, 0x01, 0x00, 0x40, 0xb2, 0x01, 0x40, 0x05, 0x19, + 0x01, 0x01, 0x80, 0x15, 0x01, 0x80, 0x80, 0x01, 0x01, 0x84, 0xc0, 0x20, + 0x02, 0x00, 0x00, 0x06, 0x02, 0x01, 0x00, 0x20, 0x02, 0x03, 0x40, 0x20, + 0x02, 0xc0, 0x01, 0x83, 0x02, 0x02, 0x00, 0xb1, 0x01, 0x84, 0x80, 0xac, + 0x01, 0x03, 0xc0, 0xa0, 0x01, 0x01, 0x80, 0x15, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x84, 0x00, 0x20, 0x02, 0x00, 0x80, 0x15, 0x02, 0x81, 0x40, 0x15, + 0x03, 0x40, 0x00, 0x03, 0x02, 0x00, 0x01, 0x20, 0x01, 0x84, 0x80, 0xac, + 0x01, 0x03, 0x00, 0xa0, 0x01, 0x01, 0x80, 0x15, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x84, 0xc0, 0x20, 0x02, 0x00, 0x80, 0x15, 0x02, 0x81, 0x40, 0x15, + 0x03, 0x40, 0x00, 0x83, 0x02, 0x00, 0x01, 0x20, 0x01, 0x84, 0x80, 0xac, + 0x01, 0x03, 0xc0, 0xa0, 0x01, 0x43, 0xe7, 0x83, 0x01, 0x81, 0x80, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x85, 0x40, 0xa0, 0x01, 0x40, 0x2f, 0x83, + 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x85, 0x80, 0xa0, + 0x01, 0x40, 0x2f, 0x83, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x85, 0xc0, 0xa0, 0x01, 0x00, 0x80, 0x15, 0x01, 0x81, 0x40, 0x15, + 0x02, 0x40, 0x01, 0x03, 0x01, 0x00, 0x01, 0x20, 0x01, 0x80, 0x00, 0x02, + 0x01, 0x02, 0x00, 0xb1, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x86, 0x00, 0xa0, 0x01, 0x00, 0x80, 0x15, 0x01, 0x81, 0x40, 0x15, + 0x02, 0x40, 0x01, 0x03, 0x01, 0x00, 0x01, 0x20, 0x01, 0x80, 0x00, 0x02, + 0x01, 0x02, 0x00, 0xb1, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x86, 0x40, 0xa0, 0x01, 0x00, 0x80, 0x15, 0x01, 0x81, 0x40, 0x15, + 0x02, 0x40, 0x01, 0x83, 0x01, 0x00, 0x01, 0x20, 0x01, 0x81, 0x80, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x86, 0x80, 0xa0, 0x01, 0x00, 0x80, 0x15, + 0x01, 0x81, 0x40, 0x15, 0x02, 0x40, 0x02, 0x03, 0x01, 0x00, 0x01, 0x20, + 0x01, 0xc0, 0x00, 0x03, 0x01, 0x00, 0x40, 0xb2, 0x01, 0x81, 0x80, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x86, 0xc0, 0xa0, 0x01, 0x00, 0x80, 0x15, + 0x01, 0x81, 0x40, 0x15, 0x02, 0x40, 0x02, 0x83, 0x01, 0x00, 0x01, 0x20, + 0x01, 0x80, 0x00, 0x06, 0x01, 0x87, 0x00, 0x20, 0x01, 0x01, 0xc0, 0xb0, + 0x01, 0x80, 0x00, 0x82, 0x01, 0x02, 0x00, 0xb1, 0x01, 0x81, 0x80, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x87, 0x40, 0xa0, 0x01, 0x00, 0x80, 0x15, + 0x01, 0x81, 0x40, 0x15, 0x02, 0x40, 0x03, 0x03, 0x01, 0x00, 0x01, 0x20, + 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x87, 0x80, 0xa0, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x02, 0x02, 0x00, 0x16, 0x31, + 0x2e, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x65, 0x2b, 0x30, 0x32, 0x02, 0x00, 0x16, + 0x32, 0x2e, 0x35, 0x35, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, + 0x30, 0x30, 0x30, 0x30, 0x30, 0x30, 0x65, 0x2b, 0x30, 0x32, 0x00, 0x00, + 0x00, 0x1f, 0x00, 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, + 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x08, 0x76, 0x69, 0x73, 0x69, 0x62, + 0x6c, 0x65, 0x3d, 0x00, 0x00, 0x08, 0x73, 0x72, 0x63, 0x5f, 0x72, 0x65, + 0x63, 0x74, 0x00, 0x00, 0x03, 0x73, 0x65, 0x74, 0x00, 0x00, 0x01, 0x25, + 0x00, 0x00, 0x01, 0x2a, 0x00, 0x00, 0x01, 0x2f, 0x00, 0x00, 0x08, 0x76, + 0x69, 0x65, 0x77, 0x70, 0x6f, 0x72, 0x74, 0x00, 0x00, 0x04, 0x72, 0x65, + 0x63, 0x74, 0x00, 0x00, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x00, 0x00, + 0x02, 0x78, 0x3d, 0x00, 0x00, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, + 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x02, 0x79, 0x3d, 0x00, 0x00, 0x01, + 0x78, 0x00, 0x00, 0x02, 0x6f, 0x78, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, + 0x01, 0x79, 0x00, 0x00, 0x02, 0x6f, 0x79, 0x00, 0x00, 0x02, 0x7a, 0x3d, + 0x00, 0x00, 0x03, 0x6f, 0x78, 0x3d, 0x00, 0x00, 0x03, 0x6f, 0x79, 0x3d, + 0x00, 0x00, 0x07, 0x7a, 0x6f, 0x6f, 0x6d, 0x5f, 0x78, 0x3d, 0x00, 0x00, + 0x07, 0x7a, 0x6f, 0x6f, 0x6d, 0x5f, 0x79, 0x3d, 0x00, 0x00, 0x06, 0x61, + 0x6e, 0x67, 0x6c, 0x65, 0x3d, 0x00, 0x00, 0x07, 0x6d, 0x69, 0x72, 0x72, + 0x6f, 0x72, 0x3d, 0x00, 0x00, 0x07, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, + 0x79, 0x00, 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x3d, + 0x00, 0x00, 0x0b, 0x62, 0x6c, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, + 0x65, 0x3d, 0x00, 0x00, 0x00, 0x02, 0x48, 0x00, 0x05, 0x00, 0x0b, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x63, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, + 0x02, 0x80, 0x40, 0x01, 0x02, 0x80, 0x00, 0x20, 0x03, 0x3f, 0xff, 0x83, + 0x02, 0x80, 0x40, 0xb2, 0x02, 0xc0, 0x04, 0x18, 0x02, 0x80, 0x40, 0x01, + 0x02, 0x80, 0x00, 0x20, 0x03, 0x40, 0x00, 0x03, 0x02, 0x80, 0x40, 0xb2, + 0x02, 0xc0, 0x01, 0x99, 0x02, 0x80, 0x80, 0x01, 0x03, 0x00, 0x00, 0x07, + 0x02, 0x80, 0x40, 0xb2, 0x02, 0xc0, 0x04, 0x18, 0x02, 0x80, 0x40, 0x01, + 0x02, 0x80, 0x00, 0x20, 0x03, 0x40, 0x00, 0x83, 0x02, 0x80, 0x40, 0xb2, + 0x02, 0xc0, 0x01, 0x99, 0x02, 0x80, 0x80, 0x01, 0x03, 0x00, 0x00, 0x08, + 0x02, 0x80, 0x40, 0xb2, 0x02, 0xc0, 0x24, 0x99, 0x02, 0x80, 0x40, 0x01, + 0x02, 0x80, 0x80, 0x20, 0x02, 0x80, 0xc0, 0x20, 0x03, 0x00, 0x00, 0x3d, + 0x02, 0x81, 0x00, 0xa0, 0x02, 0xc0, 0x06, 0x99, 0x02, 0x80, 0x40, 0x01, + 0x02, 0x80, 0x80, 0x20, 0x02, 0x01, 0x40, 0x01, 0x02, 0x80, 0x02, 0x91, + 0x03, 0x00, 0x00, 0xbd, 0x03, 0x81, 0x00, 0x01, 0x03, 0x80, 0xc0, 0x20, + 0x03, 0x01, 0xc0, 0xac, 0x03, 0x81, 0x00, 0x01, 0x03, 0x82, 0x00, 0x20, + 0x04, 0x01, 0x00, 0x01, 0x04, 0x02, 0x40, 0x20, 0x02, 0x81, 0x81, 0xa0, + 0x02, 0x80, 0x40, 0x01, 0x02, 0x82, 0x80, 0x20, 0x03, 0x40, 0x00, 0x03, + 0x03, 0x81, 0x40, 0x01, 0x03, 0x02, 0xc0, 0xa0, 0x03, 0x40, 0x00, 0x98, + 0x00, 0x40, 0x04, 0x97, 0x03, 0x00, 0x00, 0x06, 0x03, 0x80, 0x40, 0x01, + 0x03, 0x83, 0x40, 0x20, 0x04, 0x00, 0x40, 0x01, 0x04, 0x03, 0x80, 0x20, + 0x04, 0xc0, 0x00, 0x83, 0x04, 0x03, 0xc0, 0xb0, 0x03, 0x03, 0x01, 0x20, + 0x00, 0x40, 0x12, 0x17, 0x03, 0x40, 0x00, 0x83, 0x03, 0x81, 0x40, 0x01, + 0x03, 0x02, 0xc0, 0xa0, 0x03, 0x40, 0x00, 0x98, 0x00, 0x40, 0x08, 0x97, + 0x03, 0x00, 0x00, 0x06, 0x03, 0x04, 0x00, 0x20, 0x03, 0x80, 0x00, 0x05, + 0x03, 0x01, 0x00, 0xa0, 0x03, 0x40, 0x05, 0x19, 0x03, 0x00, 0x00, 0x06, + 0x03, 0x04, 0x00, 0x20, 0x03, 0x80, 0x40, 0x01, 0x03, 0x83, 0x40, 0x20, + 0x04, 0x00, 0x40, 0x01, 0x04, 0x03, 0x80, 0x20, 0x04, 0xc0, 0x00, 0x83, + 0x04, 0x03, 0xc0, 0xb0, 0x03, 0x03, 0x01, 0x20, 0x00, 0x40, 0x00, 0x97, + 0x03, 0x00, 0x00, 0x05, 0x00, 0x40, 0x07, 0x17, 0x03, 0x40, 0x01, 0x03, + 0x03, 0x81, 0x40, 0x01, 0x03, 0x02, 0xc0, 0xa0, 0x03, 0x40, 0x00, 0x98, + 0x00, 0x40, 0x04, 0x17, 0x03, 0x00, 0x00, 0x06, 0x03, 0x80, 0x00, 0x05, + 0x04, 0x00, 0x40, 0x01, 0x04, 0x03, 0x80, 0x20, 0x04, 0xc0, 0x00, 0x83, + 0x04, 0x03, 0xc0, 0xb0, 0x03, 0x03, 0x01, 0x20, 0x00, 0x40, 0x00, 0x97, + 0x03, 0x00, 0x00, 0x05, 0x02, 0x81, 0x80, 0x01, 0x00, 0x40, 0x00, 0x97, + 0x02, 0x80, 0x00, 0x05, 0x02, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x2f, + 0x53, 0x45, 0x2f, 0x00, 0x00, 0x00, 0x11, 0x00, 0x09, 0x63, 0x6f, 0x6e, + 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, + 0x00, 0x02, 0x73, 0x65, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x05, 0x41, 0x75, 0x64, 0x69, 0x6f, + 0x00, 0x00, 0x07, 0x73, 0x65, 0x5f, 0x70, 0x6c, 0x61, 0x79, 0x00, 0x00, + 0x01, 0x2b, 0x00, 0x00, 0x06, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x00, + 0x00, 0x05, 0x70, 0x69, 0x74, 0x63, 0x68, 0x00, 0x00, 0x0b, 0x66, 0x6c, + 0x61, 0x73, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x00, 0x00, 0x03, + 0x3d, 0x3d, 0x3d, 0x00, 0x00, 0x05, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x00, + 0x00, 0x0b, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, + 0x72, 0x00, 0x00, 0x0e, 0x66, 0x6c, 0x61, 0x73, 0x68, 0x5f, 0x64, 0x75, + 0x72, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x01, 0x2a, 0x00, 0x00, + 0x08, 0x76, 0x69, 0x65, 0x77, 0x70, 0x6f, 0x72, 0x74, 0x00, 0x00, 0x00, + 0x00, 0xd7, 0x00, 0x05, 0x00, 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x1e, + 0x02, 0x00, 0x00, 0x26, 0x02, 0x80, 0x40, 0x01, 0x03, 0x00, 0x00, 0x06, + 0x03, 0x00, 0x40, 0x20, 0x02, 0x80, 0x00, 0xae, 0x01, 0x81, 0x40, 0x01, + 0x03, 0x3f, 0xff, 0x83, 0x02, 0x80, 0x80, 0xa0, 0x02, 0xc0, 0x09, 0x19, + 0x02, 0x80, 0x01, 0x8d, 0x03, 0x00, 0x00, 0x05, 0x02, 0x80, 0x80, 0xa0, + 0x02, 0xc0, 0x02, 0x99, 0x02, 0xbf, 0xff, 0x83, 0x03, 0x40, 0x07, 0x03, + 0x02, 0x81, 0x40, 0x41, 0x03, 0x00, 0x01, 0x40, 0x02, 0x81, 0x00, 0x21, + 0x02, 0x80, 0x02, 0x8d, 0x03, 0x00, 0x00, 0x05, 0x02, 0x80, 0x80, 0xa0, + 0x02, 0xc0, 0x02, 0x99, 0x02, 0xbf, 0xff, 0x83, 0x03, 0x40, 0x07, 0x03, + 0x02, 0x81, 0x40, 0x41, 0x03, 0x00, 0x03, 0x40, 0x02, 0x81, 0x00, 0x21, + 0x03, 0x02, 0x00, 0x25, 0x02, 0x80, 0x3f, 0xa4, 0x02, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x2d, 0x00, + 0x00, 0x01, 0x78, 0x00, 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x13, 0x40, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, + 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, + 0x68, 0x00, 0x00, 0x18, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, + 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x01, 0x00, + 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x81, 0x00, 0x16, 0x01, 0x80, 0x00, 0x0d, 0x02, 0x01, 0x00, 0x15, + 0x01, 0x80, 0x40, 0xa0, 0x02, 0x00, 0xc0, 0x01, 0x02, 0x00, 0x80, 0x20, + 0x02, 0x80, 0xc0, 0x15, 0x02, 0x00, 0xc0, 0xac, 0x01, 0x01, 0x00, 0x01, + 0x01, 0x81, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x13, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, + 0x73, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, + 0x01, 0x2b, 0x00, 0x00, 0x02, 0x78, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x77, + 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x00, 0x16, 0x01, 0x80, 0x00, 0x0d, + 0x02, 0x01, 0x00, 0x15, 0x01, 0x80, 0x40, 0xa0, 0x02, 0x00, 0xc0, 0x01, + 0x02, 0x00, 0x80, 0x20, 0x02, 0x80, 0xc0, 0x15, 0x02, 0x00, 0xc0, 0xac, + 0x01, 0x01, 0x00, 0x01, 0x01, 0x81, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x18, 0x40, 0x5f, + 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, + 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x01, 0x2b, 0x00, + 0x00, 0x02, 0x78, 0x3d, 0x00, 0x00, 0x00, 0x00, 0xd7, 0x00, 0x05, 0x00, + 0x08, 0x00, 0x02, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x02, 0x80, 0x40, 0x01, 0x03, 0x00, 0x00, 0x06, 0x03, 0x00, 0x40, 0x20, + 0x02, 0x80, 0x00, 0xae, 0x01, 0x81, 0x40, 0x01, 0x03, 0x3f, 0xff, 0x83, + 0x02, 0x80, 0x80, 0xa0, 0x02, 0xc0, 0x09, 0x19, 0x02, 0x80, 0x01, 0x8d, + 0x03, 0x00, 0x00, 0x05, 0x02, 0x80, 0x80, 0xa0, 0x02, 0xc0, 0x02, 0x99, + 0x02, 0xbf, 0xff, 0x83, 0x03, 0x40, 0x07, 0x03, 0x02, 0x81, 0x40, 0x41, + 0x03, 0x00, 0x01, 0x40, 0x02, 0x81, 0x00, 0x21, 0x02, 0x80, 0x02, 0x8d, + 0x03, 0x00, 0x00, 0x05, 0x02, 0x80, 0x80, 0xa0, 0x02, 0xc0, 0x02, 0x99, + 0x02, 0xbf, 0xff, 0x83, 0x03, 0x40, 0x07, 0x03, 0x02, 0x81, 0x40, 0x41, + 0x03, 0x00, 0x03, 0x40, 0x02, 0x81, 0x00, 0x21, 0x03, 0x02, 0x00, 0x25, + 0x02, 0x80, 0x3f, 0xa4, 0x02, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x2d, 0x00, 0x00, 0x01, 0x79, 0x00, + 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x13, 0x40, 0x5f, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, + 0x65, 0x73, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x18, + 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, + 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x01, 0x00, 0x07, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0c, 0x00, 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x00, 0x16, + 0x01, 0x80, 0x00, 0x0d, 0x02, 0x01, 0x00, 0x15, 0x01, 0x80, 0x40, 0xa0, + 0x02, 0x00, 0xc0, 0x01, 0x02, 0x00, 0x80, 0x20, 0x02, 0x80, 0xc0, 0x15, + 0x02, 0x00, 0xc0, 0xac, 0x01, 0x01, 0x00, 0x01, 0x01, 0x81, 0x00, 0xa0, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x13, 0x40, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x02, + 0x5b, 0x5d, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, + 0x02, 0x79, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x77, 0x00, 0x01, 0x00, 0x07, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x81, 0x00, 0x16, 0x01, 0x80, 0x00, 0x0d, 0x02, 0x01, 0x00, 0x15, + 0x01, 0x80, 0x40, 0xa0, 0x02, 0x00, 0xc0, 0x01, 0x02, 0x00, 0x80, 0x20, + 0x02, 0x80, 0xc0, 0x15, 0x02, 0x00, 0xc0, 0xac, 0x01, 0x01, 0x00, 0x01, + 0x01, 0x81, 0x00, 0xa0, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x18, 0x40, 0x5f, 0x6c, 0x6f, 0x6f, 0x70, + 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, + 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, + 0x00, 0x01, 0x79, 0x00, 0x00, 0x01, 0x2b, 0x00, 0x00, 0x02, 0x79, 0x3d, + 0x00, 0x00, 0x00, 0x01, 0x02, 0x00, 0x01, 0x00, 0x04, 0x00, 0x07, 0x00, + 0x00, 0x00, 0x22, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x02, 0xc0, + 0x00, 0x80, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x04, 0xc0, + 0x00, 0x80, 0x80, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x06, 0xc0, + 0x00, 0x80, 0xc0, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x08, 0xc0, + 0x00, 0x81, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x0a, 0xc0, + 0x00, 0x81, 0x40, 0x46, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x0c, 0xc0, + 0x00, 0x81, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, + 0x00, 0x81, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, + 0x00, 0x81, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, + 0x00, 0x81, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, + 0x00, 0x81, 0xc0, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0c, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6f, + 0x73, 0x65, 0x00, 0x00, 0x05, 0x74, 0x79, 0x70, 0x65, 0x3d, 0x00, 0x00, + 0x03, 0x6f, 0x78, 0x3d, 0x00, 0x00, 0x03, 0x6f, 0x79, 0x3d, 0x00, 0x00, + 0x04, 0x6d, 0x61, 0x78, 0x3d, 0x00, 0x00, 0x06, 0x75, 0x70, 0x64, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x0b, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x72, 0x65, + 0x61, 0x64, 0x65, 0x72, 0x00, 0x00, 0x04, 0x74, 0x79, 0x70, 0x65, 0x00, + 0x00, 0x03, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x02, 0x6f, 0x78, 0x00, 0x00, + 0x02, 0x6f, 0x79, 0x00, 0x00, 0x00, 0x01, 0xf4, 0x00, 0x07, 0x00, 0x0e, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x57, 0x00, 0x00, 0x00, 0x10, 0x00, 0x26, + 0x00, 0x40, 0x00, 0x97, 0x00, 0x40, 0x00, 0x97, 0x00, 0x80, 0x00, 0x05, + 0x03, 0xbf, 0xff, 0x83, 0x03, 0x80, 0x00, 0x0e, 0x03, 0xbf, 0xff, 0x83, + 0x03, 0x80, 0x00, 0x8e, 0x03, 0xbf, 0xff, 0x83, 0x03, 0x80, 0x01, 0x0e, + 0x03, 0xbf, 0xff, 0x83, 0x03, 0x80, 0x01, 0x8e, 0x03, 0x80, 0x02, 0x11, + 0x04, 0x40, 0x7f, 0x03, 0x04, 0xc0, 0x7f, 0x03, 0x05, 0x40, 0x7f, 0x03, + 0x05, 0xc0, 0x7f, 0x03, 0x03, 0x81, 0x42, 0x20, 0x01, 0x81, 0xc0, 0x01, + 0x03, 0x80, 0x02, 0x11, 0x04, 0x40, 0x7f, 0x03, 0x04, 0xc0, 0x7f, 0x03, + 0x05, 0x40, 0x7f, 0x03, 0x05, 0xc0, 0x3f, 0x83, 0x03, 0x81, 0x42, 0x20, + 0x02, 0x01, 0xc0, 0x01, 0x03, 0x80, 0x03, 0x11, 0x04, 0x40, 0x03, 0x03, + 0x04, 0xc0, 0x1b, 0x83, 0x03, 0x81, 0x41, 0x20, 0x03, 0x80, 0x03, 0x8e, + 0x03, 0xbf, 0xff, 0x83, 0x04, 0x40, 0x02, 0x83, 0x03, 0x81, 0xc0, 0x41, + 0x04, 0x00, 0x01, 0x40, 0x03, 0x82, 0x00, 0x21, 0x03, 0x80, 0x03, 0x11, + 0x04, 0x40, 0x10, 0x83, 0x04, 0xc0, 0x1f, 0x83, 0x03, 0x81, 0x41, 0x20, + 0x03, 0x80, 0x04, 0x8e, 0x03, 0xbf, 0xff, 0x83, 0x04, 0x40, 0x0f, 0x03, + 0x03, 0x81, 0xc0, 0x41, 0x04, 0x00, 0x03, 0x40, 0x03, 0x82, 0x00, 0x21, + 0x03, 0x80, 0x03, 0x11, 0x04, 0x40, 0x02, 0x83, 0x04, 0xc0, 0x02, 0x83, + 0x03, 0x81, 0x41, 0x20, 0x03, 0x80, 0x05, 0x0e, 0x03, 0x80, 0x05, 0x0d, + 0x04, 0x3f, 0xff, 0x83, 0x04, 0xc0, 0x00, 0x03, 0x05, 0x40, 0x02, 0x83, + 0x05, 0xc0, 0x01, 0x83, 0x06, 0x01, 0x00, 0x01, 0x03, 0x82, 0xc2, 0xa0, + 0x03, 0x80, 0x05, 0x0d, 0x04, 0x40, 0x00, 0x03, 0x04, 0xbf, 0xff, 0x83, + 0x05, 0x40, 0x01, 0x83, 0x05, 0xc0, 0x02, 0x83, 0x06, 0x01, 0x00, 0x01, + 0x03, 0x82, 0xc2, 0xa0, 0x03, 0x80, 0x05, 0x0d, 0x04, 0x40, 0x00, 0x03, + 0x04, 0xc0, 0x00, 0x83, 0x05, 0x40, 0x01, 0x83, 0x05, 0xc0, 0x00, 0x83, + 0x06, 0x00, 0xc0, 0x01, 0x03, 0x82, 0xc2, 0xa0, 0x03, 0x80, 0x05, 0x0d, + 0x04, 0x40, 0x00, 0x83, 0x04, 0xc0, 0x00, 0x03, 0x05, 0x40, 0x00, 0x83, + 0x05, 0xc0, 0x01, 0x83, 0x06, 0x00, 0xc0, 0x01, 0x03, 0x82, 0xc2, 0xa0, + 0x03, 0x81, 0xc0, 0x37, 0x03, 0x80, 0x06, 0x0e, 0x03, 0xc0, 0x00, 0x03, + 0x04, 0x40, 0x13, 0x83, 0x03, 0x81, 0xc0, 0x41, 0x04, 0x00, 0x05, 0x40, + 0x03, 0x82, 0x00, 0x21, 0x03, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x05, 0x40, 0x74, 0x79, 0x70, 0x65, 0x00, + 0x00, 0x04, 0x40, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x03, 0x40, 0x6f, 0x78, + 0x00, 0x00, 0x03, 0x40, 0x6f, 0x79, 0x00, 0x00, 0x05, 0x43, 0x6f, 0x6c, + 0x6f, 0x72, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x06, 0x42, + 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x0c, 0x40, 0x72, 0x61, 0x69, + 0x6e, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x04, 0x65, + 0x61, 0x63, 0x68, 0x00, 0x00, 0x0d, 0x40, 0x73, 0x74, 0x6f, 0x72, 0x6d, + 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x0c, 0x40, 0x73, + 0x6e, 0x6f, 0x77, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, + 0x09, 0x66, 0x69, 0x6c, 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x74, 0x00, 0x00, + 0x08, 0x40, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x00, + 0x00, 0x75, 0x00, 0x01, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0e, + 0x02, 0x00, 0x00, 0x26, 0x00, 0x81, 0x40, 0x16, 0x01, 0x00, 0x00, 0x0d, + 0x01, 0xc0, 0x02, 0x83, 0x02, 0x01, 0x40, 0x15, 0x01, 0x80, 0x80, 0xae, + 0x02, 0x01, 0x40, 0x15, 0x02, 0xc0, 0x03, 0x83, 0x02, 0x00, 0xc0, 0xb0, + 0x02, 0xc0, 0x00, 0x03, 0x03, 0x40, 0x03, 0x83, 0x03, 0x80, 0xc0, 0x15, + 0x01, 0x00, 0x42, 0xa0, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x0c, 0x40, 0x72, 0x61, 0x69, 0x6e, 0x5f, + 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x09, 0x66, 0x69, 0x6c, + 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x74, 0x00, 0x00, 0x01, 0x2d, 0x00, 0x00, + 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0xce, 0x00, 0x01, 0x00, 0x09, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x81, 0x40, 0x16, 0x01, 0x00, 0x00, 0x0d, 0x01, 0xc0, 0x10, 0x03, + 0x02, 0x01, 0x40, 0x15, 0x01, 0x80, 0x80, 0xae, 0x02, 0x01, 0x40, 0x15, + 0x02, 0xc0, 0x00, 0x83, 0x02, 0x00, 0xc0, 0xb0, 0x02, 0xc0, 0x00, 0x03, + 0x03, 0x40, 0x00, 0x83, 0x03, 0x81, 0x00, 0x15, 0x01, 0x00, 0x42, 0xa0, + 0x01, 0x00, 0x00, 0x0d, 0x01, 0xc0, 0x0f, 0x83, 0x02, 0x01, 0x40, 0x15, + 0x01, 0x80, 0x80, 0xae, 0x02, 0x01, 0x40, 0x15, 0x02, 0xc0, 0x00, 0x83, + 0x02, 0x00, 0xc0, 0xb0, 0x02, 0xc0, 0x00, 0x03, 0x03, 0x40, 0x00, 0x83, + 0x03, 0x80, 0xc0, 0x15, 0x01, 0x00, 0x42, 0xa0, 0x01, 0x00, 0x00, 0x0d, + 0x01, 0xc0, 0x0f, 0x03, 0x02, 0x01, 0x40, 0x15, 0x01, 0x80, 0x80, 0xae, + 0x02, 0x01, 0x40, 0x15, 0x02, 0xc0, 0x00, 0x83, 0x02, 0x00, 0xc0, 0xb0, + 0x02, 0xc0, 0x00, 0x03, 0x03, 0x40, 0x00, 0x83, 0x03, 0x81, 0x00, 0x15, + 0x01, 0x00, 0x42, 0xa0, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x0d, 0x40, 0x73, 0x74, 0x6f, 0x72, 0x6d, + 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x09, 0x66, 0x69, + 0x6c, 0x6c, 0x5f, 0x72, 0x65, 0x63, 0x74, 0x00, 0x00, 0x01, 0x2d, 0x00, + 0x00, 0x01, 0x2a, 0x00, 0x00, 0x00, 0x00, 0xae, 0x00, 0x01, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x81, 0x40, 0x16, 0x01, 0x00, 0x00, 0x11, 0x01, 0x80, 0x40, 0x15, + 0x01, 0x00, 0x40, 0xa0, 0x01, 0x01, 0x80, 0x16, 0x01, 0x41, 0xf3, 0x83, + 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0x80, 0xa0, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x81, 0x80, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc0, 0xa0, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x81, 0x80, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x81, 0x00, 0xa0, 0x01, 0x00, 0x02, 0x8d, + 0x01, 0x81, 0x80, 0x15, 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x06, 0x53, 0x70, + 0x72, 0x69, 0x74, 0x65, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, + 0x02, 0x7a, 0x3d, 0x00, 0x00, 0x08, 0x76, 0x69, 0x73, 0x69, 0x62, 0x6c, + 0x65, 0x3d, 0x00, 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, + 0x3d, 0x00, 0x00, 0x08, 0x40, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, + 0x00, 0x00, 0x04, 0x70, 0x75, 0x73, 0x68, 0x00, 0x00, 0x00, 0x00, 0x90, + 0x00, 0x03, 0x00, 0x05, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x80, 0x00, 0x0d, 0x02, 0x00, 0x01, 0x40, + 0x01, 0x80, 0x40, 0x21, 0x01, 0x80, 0x01, 0x0d, 0x01, 0x80, 0xc0, 0x20, + 0x01, 0x80, 0x02, 0x0d, 0x01, 0x80, 0xc0, 0x20, 0x01, 0x80, 0x02, 0x8d, + 0x01, 0x80, 0xc0, 0x20, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x08, 0x40, 0x73, 0x70, 0x72, 0x69, 0x74, + 0x65, 0x73, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x0c, + 0x40, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, + 0x00, 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x00, + 0x0d, 0x40, 0x73, 0x74, 0x6f, 0x72, 0x6d, 0x5f, 0x62, 0x69, 0x74, 0x6d, + 0x61, 0x70, 0x00, 0x00, 0x0c, 0x40, 0x73, 0x6e, 0x6f, 0x77, 0x5f, 0x62, + 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x80, 0x80, 0x16, 0x01, 0x00, 0x80, 0x15, 0x01, 0x00, 0x00, 0x20, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x07, 0x64, 0x69, 0x73, 0x70, 0x6f, 0x73, 0x65, 0x00, 0x00, 0x00, + 0x00, 0xfa, 0x00, 0x06, 0x00, 0x0a, 0x00, 0x01, 0x00, 0x00, 0x00, 0x26, + 0x02, 0x00, 0x00, 0x26, 0x03, 0x00, 0x00, 0x0d, 0x03, 0x80, 0x40, 0x01, + 0x03, 0x00, 0x40, 0xb2, 0x03, 0x40, 0x01, 0x19, 0x03, 0x00, 0x00, 0x05, + 0x03, 0x00, 0x00, 0x29, 0x00, 0x80, 0x00, 0x0e, 0x03, 0x00, 0x00, 0x0d, + 0x03, 0xc0, 0x00, 0x03, 0x04, 0x01, 0x80, 0x01, 0x03, 0x80, 0x80, 0xa0, + 0x03, 0xc0, 0x00, 0x98, 0x00, 0x40, 0x01, 0x17, 0x01, 0x80, 0x01, 0x8d, + 0x00, 0x40, 0x08, 0x17, 0x03, 0xc0, 0x00, 0x83, 0x04, 0x01, 0x80, 0x01, + 0x03, 0x80, 0x80, 0xa0, 0x03, 0xc0, 0x00, 0x98, 0x00, 0x40, 0x01, 0x17, + 0x01, 0x80, 0x02, 0x0d, 0x00, 0x40, 0x04, 0x97, 0x03, 0xc0, 0x01, 0x03, + 0x04, 0x01, 0x80, 0x01, 0x03, 0x80, 0x80, 0xa0, 0x03, 0xc0, 0x00, 0x98, + 0x00, 0x40, 0x01, 0x17, 0x01, 0x80, 0x02, 0x8d, 0x00, 0x40, 0x01, 0x17, + 0x01, 0x80, 0x00, 0x05, 0x00, 0x40, 0x00, 0x17, 0x03, 0x40, 0x00, 0x03, + 0x03, 0xc0, 0x13, 0x83, 0x03, 0x01, 0x80, 0x41, 0x03, 0x80, 0x01, 0x40, + 0x03, 0x01, 0x80, 0x21, 0x03, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x05, 0x40, 0x74, 0x79, 0x70, 0x65, 0x00, + 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x03, 0x3d, 0x3d, 0x3d, 0x00, 0x00, + 0x0c, 0x40, 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, + 0x70, 0x00, 0x00, 0x0d, 0x40, 0x73, 0x74, 0x6f, 0x72, 0x6d, 0x5f, 0x62, + 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x0c, 0x40, 0x73, 0x6e, 0x6f, + 0x77, 0x5f, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x00, 0x04, 0x65, + 0x61, 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, 0xa8, 0x00, 0x01, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x81, 0x00, 0x16, 0x01, 0x00, 0x00, 0x0d, 0x01, 0x81, 0x00, 0x15, + 0x01, 0x00, 0x40, 0xa0, 0x01, 0x01, 0x40, 0x16, 0x01, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x80, 0xa0, 0x01, 0x40, 0x05, 0x99, 0x01, 0x01, 0x00, 0x15, + 0x01, 0x80, 0x02, 0x0d, 0x01, 0x00, 0xc0, 0xb4, 0x01, 0x81, 0x40, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x81, 0x40, 0xa0, 0x01, 0x00, 0xc0, 0x15, + 0x01, 0x81, 0x40, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x81, 0x80, 0xa0, + 0x00, 0x40, 0x00, 0x97, 0x01, 0x00, 0x00, 0x05, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x08, 0x40, 0x73, + 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x02, 0x5b, 0x5d, 0x00, + 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x02, 0x3c, 0x3d, 0x00, 0x00, 0x04, + 0x40, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x08, 0x76, 0x69, 0x73, 0x69, 0x62, + 0x6c, 0x65, 0x3d, 0x00, 0x00, 0x07, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, + 0x3d, 0x00, 0x00, 0x00, 0x00, 0x67, 0x00, 0x04, 0x00, 0x07, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x0c, 0x02, 0x00, 0x00, 0x26, 0x02, 0x00, 0x00, 0x0d, + 0x02, 0x80, 0x40, 0x01, 0x02, 0x00, 0x40, 0xb2, 0x02, 0x40, 0x01, 0x19, + 0x02, 0x00, 0x00, 0x05, 0x02, 0x00, 0x00, 0x29, 0x00, 0x80, 0x00, 0x0e, + 0x02, 0x00, 0x01, 0x0d, 0x02, 0x80, 0x01, 0x40, 0x02, 0x00, 0xc0, 0x21, + 0x02, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x03, 0x40, 0x6f, 0x78, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, + 0x08, 0x40, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x04, + 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, + 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x80, 0xc0, 0x16, 0x01, 0x00, 0x00, 0x0d, 0x01, 0x80, 0xc0, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x80, 0x40, 0xa0, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x40, 0x6f, + 0x78, 0x00, 0x00, 0x03, 0x6f, 0x78, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x67, + 0x00, 0x04, 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x02, 0x00, 0x00, 0x0d, 0x02, 0x80, 0x40, 0x01, + 0x02, 0x00, 0x40, 0xb2, 0x02, 0x40, 0x01, 0x19, 0x02, 0x00, 0x00, 0x05, + 0x02, 0x00, 0x00, 0x29, 0x00, 0x80, 0x00, 0x0e, 0x02, 0x00, 0x01, 0x0d, + 0x02, 0x80, 0x01, 0x40, 0x02, 0x00, 0xc0, 0x21, 0x02, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x03, 0x40, 0x6f, + 0x79, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x08, 0x40, 0x73, 0x70, + 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, + 0x00, 0x00, 0x00, 0x00, 0x42, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x07, 0x00, 0x02, 0x00, 0x00, 0x26, 0x00, 0x80, 0xc0, 0x16, + 0x01, 0x00, 0x00, 0x0d, 0x01, 0x80, 0xc0, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x80, 0x40, 0xa0, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x02, 0x00, 0x03, 0x40, 0x6f, 0x79, 0x00, 0x00, 0x03, + 0x6f, 0x79, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x8d, 0x00, 0x05, 0x00, 0x08, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x15, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x02, 0x80, 0x00, 0x0d, 0x03, 0x00, 0x40, 0x01, 0x02, 0x80, 0x40, 0xb2, + 0x02, 0xc0, 0x01, 0x19, 0x02, 0x80, 0x00, 0x05, 0x02, 0x80, 0x00, 0x29, + 0x02, 0x80, 0x40, 0x01, 0x03, 0x3f, 0xff, 0x83, 0x02, 0x81, 0x41, 0x37, + 0x02, 0x80, 0x80, 0x20, 0x03, 0x40, 0x13, 0x83, 0x02, 0x81, 0x41, 0x37, + 0x02, 0x80, 0xc0, 0x20, 0x02, 0x80, 0x00, 0x0e, 0x02, 0xc0, 0x00, 0x03, + 0x03, 0x40, 0x13, 0x83, 0x02, 0x81, 0x40, 0x41, 0x03, 0x00, 0x01, 0x40, + 0x02, 0x81, 0x00, 0x21, 0x02, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x04, 0x40, 0x6d, 0x61, 0x78, 0x00, 0x00, + 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x03, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x03, + 0x6d, 0x69, 0x6e, 0x00, 0x00, 0x04, 0x65, 0x61, 0x63, 0x68, 0x00, 0x00, + 0x00, 0x00, 0x8e, 0x00, 0x01, 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, + 0x12, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, 0x00, 0x80, 0xc0, 0x16, + 0x01, 0x00, 0x00, 0x0d, 0x01, 0x80, 0xc0, 0x15, 0x01, 0x00, 0x40, 0xa0, + 0x01, 0x01, 0x00, 0x16, 0x01, 0x80, 0x00, 0x05, 0x01, 0x00, 0x80, 0xa0, + 0x01, 0x40, 0x03, 0x99, 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x02, 0x0d, + 0x01, 0x00, 0xc0, 0xb4, 0x01, 0x81, 0x00, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x81, 0x40, 0xa0, 0x00, 0x40, 0x00, 0x97, 0x01, 0x00, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, + 0x00, 0x08, 0x40, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, + 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x02, 0x21, 0x3d, 0x00, 0x00, 0x02, 0x3c, + 0x3d, 0x00, 0x00, 0x04, 0x40, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x08, 0x76, + 0x69, 0x73, 0x69, 0x62, 0x6c, 0x65, 0x3d, 0x00, 0x00, 0x00, 0x00, 0x69, + 0x00, 0x06, 0x00, 0x09, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x03, 0x00, 0x00, 0x0d, 0x03, 0xbf, 0xff, 0x83, + 0x03, 0x00, 0x40, 0xb2, 0x03, 0x40, 0x01, 0x19, 0x03, 0x00, 0x00, 0x05, + 0x03, 0x00, 0x00, 0x29, 0x03, 0x40, 0x00, 0x03, 0x03, 0x80, 0x01, 0x0d, + 0x03, 0x01, 0x80, 0x41, 0x03, 0x80, 0x01, 0x40, 0x03, 0x00, 0xc0, 0x21, + 0x03, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x05, 0x40, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x02, 0x3d, 0x3d, + 0x00, 0x00, 0x04, 0x40, 0x6d, 0x61, 0x78, 0x00, 0x00, 0x04, 0x65, 0x61, + 0x63, 0x68, 0x00, 0x00, 0x00, 0x02, 0x75, 0x00, 0x01, 0x00, 0x06, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x7d, 0x00, 0x00, 0x00, 0x02, 0x00, 0x00, 0x26, + 0x00, 0x80, 0x80, 0x16, 0x01, 0x00, 0x00, 0x0d, 0x01, 0x80, 0x80, 0x15, + 0x01, 0x00, 0x40, 0xa0, 0x01, 0x00, 0xc0, 0x16, 0x01, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x80, 0xb2, 0x01, 0x40, 0x01, 0x19, 0x01, 0x00, 0x00, 0x05, + 0x01, 0x00, 0x40, 0x29, 0x01, 0x00, 0x01, 0x8d, 0x01, 0xc0, 0x00, 0x03, + 0x01, 0x00, 0x80, 0xb2, 0x01, 0x40, 0x07, 0x99, 0x01, 0x00, 0xc0, 0x15, + 0x01, 0x80, 0x80, 0x01, 0x01, 0x81, 0x00, 0x20, 0x01, 0x81, 0x41, 0x2f, + 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x81, 0xc0, 0x20, 0x01, 0x82, 0x08, 0x2d, 0x01, 0x02, 0x40, 0xa0, + 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x80, 0x01, 0x01, 0x82, 0x80, 0x20, + 0x01, 0x81, 0x44, 0x2f, 0x01, 0x02, 0xc0, 0xa0, 0x01, 0x00, 0x01, 0x8d, + 0x01, 0xc0, 0x00, 0x83, 0x01, 0x00, 0x80, 0xb2, 0x01, 0x40, 0x07, 0x99, + 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x80, 0x01, 0x01, 0x81, 0x00, 0x20, + 0x01, 0x81, 0x44, 0x2f, 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0xc0, 0x15, + 0x01, 0x80, 0x80, 0x01, 0x01, 0x81, 0xc0, 0x20, 0x01, 0x82, 0x08, 0x2d, + 0x01, 0x02, 0x40, 0xa0, 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x82, 0x80, 0x20, 0x01, 0x81, 0x46, 0x2f, 0x01, 0x02, 0xc0, 0xa0, + 0x01, 0x00, 0x01, 0x8d, 0x01, 0xc0, 0x01, 0x03, 0x01, 0x00, 0x80, 0xb2, + 0x01, 0x40, 0x07, 0x99, 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x80, 0x01, + 0x01, 0x81, 0x00, 0x20, 0x01, 0x81, 0x41, 0x2f, 0x01, 0x01, 0x80, 0xa0, + 0x01, 0x00, 0xc0, 0x15, 0x01, 0x80, 0x80, 0x01, 0x01, 0x81, 0xc0, 0x20, + 0x01, 0x82, 0x04, 0x2d, 0x01, 0x02, 0x40, 0xa0, 0x01, 0x00, 0xc0, 0x15, + 0x01, 0x80, 0x80, 0x01, 0x01, 0x82, 0x80, 0x20, 0x01, 0x81, 0x44, 0x2f, + 0x01, 0x02, 0xc0, 0xa0, 0x01, 0x00, 0xc0, 0x15, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x80, 0x06, 0x0d, 0x01, 0x01, 0x40, 0xae, 0x01, 0x01, 0x00, 0x16, + 0x01, 0x00, 0xc0, 0x15, 0x01, 0x01, 0xc0, 0x20, 0x01, 0x80, 0x06, 0x8d, + 0x01, 0x01, 0x40, 0xae, 0x01, 0x01, 0x40, 0x16, 0x01, 0x00, 0xc0, 0x15, + 0x01, 0x02, 0x80, 0x20, 0x01, 0xc0, 0x1f, 0x83, 0x01, 0x03, 0x80, 0xb3, + 0x01, 0x40, 0x01, 0x98, 0x01, 0x01, 0x00, 0x15, 0x01, 0xbf, 0xe6, 0x83, + 0x01, 0x03, 0x80, 0xb3, 0x01, 0x40, 0x01, 0x98, 0x01, 0x01, 0x00, 0x15, + 0x01, 0xc1, 0x76, 0x83, 0x01, 0x03, 0xc0, 0xb5, 0x01, 0x40, 0x01, 0x98, + 0x01, 0x01, 0x40, 0x15, 0x01, 0xbf, 0x69, 0x83, 0x01, 0x03, 0x80, 0xb3, + 0x01, 0x40, 0x01, 0x98, 0x01, 0x01, 0x40, 0x15, 0x01, 0xc0, 0xf9, 0x83, + 0x01, 0x03, 0xc0, 0xb5, 0x01, 0x40, 0x0c, 0x19, 0x01, 0x00, 0x00, 0x06, + 0x01, 0xc1, 0x8f, 0x83, 0x01, 0x04, 0x00, 0xa0, 0x01, 0x01, 0x59, 0x2f, + 0x01, 0x80, 0x06, 0x0d, 0x01, 0x02, 0x00, 0xac, 0x01, 0x80, 0xc0, 0x15, + 0x02, 0x00, 0x80, 0x01, 0x01, 0x81, 0x80, 0xa0, 0x01, 0x00, 0x00, 0x06, + 0x01, 0xc1, 0x8f, 0x83, 0x01, 0x04, 0x00, 0xa0, 0x01, 0xc0, 0x63, 0x83, + 0x01, 0x01, 0x40, 0xae, 0x01, 0x80, 0x06, 0x8d, 0x01, 0x02, 0x00, 0xac, + 0x01, 0x80, 0xc0, 0x15, 0x02, 0x00, 0x80, 0x01, 0x01, 0x82, 0x40, 0xa0, + 0x01, 0x40, 0x7f, 0x03, 0x01, 0x80, 0xc0, 0x15, 0x02, 0x00, 0x80, 0x01, + 0x01, 0x82, 0xc0, 0xa0, 0x00, 0x40, 0x00, 0x97, 0x01, 0x00, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, + 0x00, 0x08, 0x40, 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x73, 0x00, 0x00, + 0x02, 0x5b, 0x5d, 0x00, 0x00, 0x02, 0x3d, 0x3d, 0x00, 0x00, 0x05, 0x40, + 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x01, 0x78, 0x00, 0x00, 0x01, 0x2d, + 0x00, 0x00, 0x02, 0x78, 0x3d, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x01, + 0x2b, 0x00, 0x00, 0x02, 0x79, 0x3d, 0x00, 0x00, 0x07, 0x6f, 0x70, 0x61, + 0x63, 0x69, 0x74, 0x79, 0x00, 0x00, 0x08, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x3d, 0x00, 0x00, 0x03, 0x40, 0x6f, 0x78, 0x00, 0x00, 0x03, + 0x40, 0x6f, 0x79, 0x00, 0x00, 0x01, 0x3c, 0x00, 0x00, 0x01, 0x3e, 0x00, + 0x00, 0x04, 0x72, 0x61, 0x6e, 0x64, 0x00, 0x00, 0x00, 0x01, 0x45, 0x00, + 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x25, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x0a, 0x74, 0x69, 0x6c, 0x65, 0x73, + 0x65, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x05, 0x77, 0x69, 0x64, 0x74, + 0x68, 0x00, 0x00, 0x06, 0x68, 0x65, 0x69, 0x67, 0x68, 0x74, 0x00, 0x00, + 0x0c, 0x61, 0x75, 0x74, 0x6f, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x62, 0x67, + 0x6d, 0x00, 0x00, 0x03, 0x62, 0x67, 0x6d, 0x00, 0x00, 0x0c, 0x61, 0x75, + 0x74, 0x6f, 0x70, 0x6c, 0x61, 0x79, 0x5f, 0x62, 0x67, 0x73, 0x00, 0x00, + 0x03, 0x62, 0x67, 0x73, 0x00, 0x00, 0x0e, 0x65, 0x6e, 0x63, 0x6f, 0x75, + 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x00, 0x00, 0x0e, + 0x65, 0x6e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x73, 0x74, + 0x65, 0x70, 0x00, 0x00, 0x04, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x06, + 0x65, 0x76, 0x65, 0x6e, 0x74, 0x73, 0x00, 0x00, 0x00, 0x01, 0x42, 0x00, + 0x04, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x20, 0x00, 0x00, 0x00, + 0x04, 0x00, 0x00, 0x26, 0x02, 0x40, 0x00, 0x03, 0x02, 0x00, 0x00, 0x0e, + 0x00, 0x80, 0x00, 0x8e, 0x01, 0x00, 0x01, 0x0e, 0x02, 0x00, 0x00, 0x08, + 0x02, 0x00, 0x01, 0x8e, 0x02, 0x00, 0x02, 0x91, 0x02, 0x00, 0x02, 0x13, + 0x02, 0x01, 0x80, 0x20, 0x02, 0x00, 0x03, 0x8e, 0x02, 0x00, 0x00, 0x08, + 0x02, 0x00, 0x04, 0x0e, 0x02, 0x00, 0x02, 0x91, 0x02, 0x00, 0x02, 0x13, + 0x02, 0x80, 0x00, 0x3d, 0x03, 0x40, 0x27, 0x83, 0x02, 0x01, 0x81, 0x20, + 0x02, 0x00, 0x04, 0x8e, 0x02, 0x01, 0x00, 0x37, 0x02, 0x00, 0x05, 0x0e, + 0x02, 0x40, 0x0e, 0x83, 0x02, 0x00, 0x05, 0x8e, 0x02, 0x00, 0x06, 0x11, + 0x02, 0x80, 0x40, 0x01, 0x03, 0x00, 0x80, 0x01, 0x03, 0xc0, 0x01, 0x03, + 0x02, 0x01, 0x81, 0xa0, 0x02, 0x00, 0x06, 0x8e, 0x02, 0x01, 0x00, 0x3f, + 0x02, 0x00, 0x07, 0x0e, 0x02, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x0b, 0x40, 0x74, 0x69, + 0x6c, 0x65, 0x73, 0x65, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x06, 0x40, + 0x77, 0x69, 0x64, 0x74, 0x68, 0x00, 0x00, 0x07, 0x40, 0x68, 0x65, 0x69, + 0x67, 0x68, 0x74, 0x00, 0x00, 0x0d, 0x40, 0x61, 0x75, 0x74, 0x6f, 0x70, + 0x6c, 0x61, 0x79, 0x5f, 0x62, 0x67, 0x6d, 0x00, 0x00, 0x09, 0x41, 0x75, + 0x64, 0x69, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x00, 0x00, 0x03, 0x52, 0x50, + 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x04, 0x40, 0x62, + 0x67, 0x6d, 0x00, 0x00, 0x0d, 0x40, 0x61, 0x75, 0x74, 0x6f, 0x70, 0x6c, + 0x61, 0x79, 0x5f, 0x62, 0x67, 0x73, 0x00, 0x00, 0x04, 0x40, 0x62, 0x67, + 0x73, 0x00, 0x00, 0x0f, 0x40, 0x65, 0x6e, 0x63, 0x6f, 0x75, 0x6e, 0x74, + 0x65, 0x72, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x00, 0x00, 0x0f, 0x40, 0x65, + 0x6e, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x65, + 0x70, 0x00, 0x00, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x00, 0x05, + 0x40, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x07, 0x40, 0x65, 0x76, 0x65, + 0x6e, 0x74, 0x73, 0x00, 0x00, 0x00, 0x00, 0xcb, 0x00, 0x01, 0x00, 0x04, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x70, 0x61, + 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x05, 0x6f, 0x72, + 0x64, 0x65, 0x72, 0x00, 0x00, 0x08, 0x65, 0x78, 0x70, 0x61, 0x6e, 0x64, + 0x65, 0x64, 0x00, 0x00, 0x08, 0x73, 0x63, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, + 0x78, 0x00, 0x00, 0x08, 0x73, 0x63, 0x72, 0x6f, 0x6c, 0x6c, 0x5f, 0x79, + 0x00, 0x00, 0x00, 0x00, 0x97, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, + 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x70, 0x61, + 0x72, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x06, 0x40, 0x6f, + 0x72, 0x64, 0x65, 0x72, 0x00, 0x00, 0x09, 0x40, 0x65, 0x78, 0x70, 0x61, + 0x6e, 0x64, 0x65, 0x64, 0x00, 0x00, 0x09, 0x40, 0x73, 0x63, 0x72, 0x6f, + 0x6c, 0x6c, 0x5f, 0x78, 0x00, 0x00, 0x09, 0x40, 0x73, 0x63, 0x72, 0x6f, + 0x6c, 0x6c, 0x5f, 0x79, 0x00, 0x00, 0x00, 0x00, 0xb6, 0x00, 0x01, 0x00, + 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x00, 0x43, 0x00, 0x80, 0x00, 0x45, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x02, 0xc0, 0x00, 0x80, 0x40, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x80, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x80, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x80, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x80, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x80, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x04, 0x50, 0x61, 0x67, 0x65, 0x00, 0x00, 0x0a, 0x69, 0x6e, 0x69, + 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, + 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, + 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x01, 0x78, 0x00, 0x00, 0x01, 0x79, 0x00, 0x00, 0x05, 0x70, 0x61, + 0x67, 0x65, 0x73, 0x00, 0x00, 0x00, 0x01, 0xbb, 0x00, 0x01, 0x00, 0x04, + 0x00, 0x03, 0x00, 0x00, 0x00, 0x33, 0x00, 0x00, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x00, 0x43, 0x00, 0x80, 0x00, 0x45, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x40, 0x43, + 0x00, 0x80, 0x00, 0xc5, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x04, 0xc0, + 0x00, 0x80, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, + 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x11, 0x00, 0x09, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x07, 0x47, 0x72, 0x61, 0x70, 0x68, 0x69, + 0x63, 0x00, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, + 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, + 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x09, 0x63, 0x6f, 0x6e, + 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x07, 0x67, 0x72, 0x61, + 0x70, 0x68, 0x69, 0x63, 0x00, 0x00, 0x09, 0x6d, 0x6f, 0x76, 0x65, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x0a, 0x6d, 0x6f, 0x76, 0x65, 0x5f, + 0x73, 0x70, 0x65, 0x65, 0x64, 0x00, 0x00, 0x0e, 0x6d, 0x6f, 0x76, 0x65, + 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, 0x79, 0x00, 0x00, + 0x0a, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x72, 0x6f, 0x75, 0x74, 0x65, 0x00, + 0x00, 0x0a, 0x77, 0x61, 0x6c, 0x6b, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x65, + 0x00, 0x00, 0x0a, 0x73, 0x74, 0x65, 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, + 0x65, 0x00, 0x00, 0x0d, 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x66, 0x69, 0x78, 0x00, 0x00, 0x07, 0x74, 0x68, 0x72, 0x6f, + 0x75, 0x67, 0x68, 0x00, 0x00, 0x0d, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, + 0x5f, 0x6f, 0x6e, 0x5f, 0x74, 0x6f, 0x70, 0x00, 0x00, 0x07, 0x74, 0x72, + 0x69, 0x67, 0x67, 0x65, 0x72, 0x00, 0x00, 0x04, 0x6c, 0x69, 0x73, 0x74, + 0x00, 0x00, 0x00, 0x01, 0x42, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, + 0x00, 0x00, 0x1f, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x0d, 0x73, + 0x77, 0x69, 0x74, 0x63, 0x68, 0x31, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, + 0x00, 0x00, 0x0d, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x32, 0x5f, 0x76, + 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0e, 0x76, 0x61, 0x72, 0x69, 0x61, + 0x62, 0x6c, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x11, + 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, + 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x73, 0x77, 0x69, 0x74, + 0x63, 0x68, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x73, 0x77, 0x69, + 0x74, 0x63, 0x68, 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0b, 0x76, 0x61, + 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0e, + 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x76, 0x61, 0x6c, + 0x75, 0x65, 0x00, 0x00, 0x0e, 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x73, 0x77, + 0x69, 0x74, 0x63, 0x68, 0x5f, 0x63, 0x68, 0x00, 0x00, 0x00, 0x01, 0x06, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x01, 0x8e, + 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x04, 0x0e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x01, 0x41, 0x00, 0x00, 0x00, 0x09, 0x00, 0x0e, 0x40, 0x73, + 0x77, 0x69, 0x74, 0x63, 0x68, 0x31, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, + 0x00, 0x00, 0x0e, 0x40, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x32, 0x5f, + 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0f, 0x40, 0x76, 0x61, 0x72, + 0x69, 0x61, 0x62, 0x6c, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, + 0x00, 0x12, 0x40, 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x73, 0x77, 0x69, 0x74, + 0x63, 0x68, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0b, 0x40, + 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x0b, 0x40, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x32, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x0c, 0x40, 0x76, 0x61, 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, + 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0f, 0x40, 0x76, 0x61, 0x72, 0x69, 0x61, + 0x62, 0x6c, 0x65, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x00, 0x00, 0x0f, + 0x40, 0x73, 0x65, 0x6c, 0x66, 0x5f, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, + 0x5f, 0x63, 0x68, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x00, 0x01, 0x00, 0x04, + 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x07, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x0e, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, + 0x74, 0x65, 0x72, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x09, 0x64, 0x69, + 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x07, 0x70, 0x61, + 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x00, 0x07, 0x6f, 0x70, 0x61, 0x63, + 0x69, 0x74, 0x79, 0x00, 0x00, 0x0a, 0x62, 0x6c, 0x65, 0x6e, 0x64, 0x5f, + 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x00, 0x00, 0xbc, 0x00, 0x02, 0x00, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x40, 0x00, 0x83, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x40, 0x7f, 0x03, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, 0x00, + 0x08, 0x40, 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0f, + 0x40, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0e, 0x40, 0x63, 0x68, 0x61, 0x72, 0x61, + 0x63, 0x74, 0x65, 0x72, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x0a, 0x40, + 0x64, 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x08, + 0x40, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, 0x6e, 0x00, 0x00, 0x08, 0x40, + 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x00, 0x00, 0x0b, 0x40, 0x62, + 0x6c, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x00, + 0x01, 0xb9, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x01, 0x91, 0x01, 0x00, 0x01, 0x13, + 0x01, 0x00, 0x00, 0x93, 0x01, 0x00, 0x00, 0x13, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x01, 0x91, 0x01, 0x00, 0x01, 0x13, + 0x01, 0x00, 0x00, 0x93, 0x01, 0x00, 0x03, 0x13, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x00, 0x03, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x04, 0x0e, + 0x01, 0x40, 0x01, 0x03, 0x01, 0x00, 0x04, 0x8e, 0x01, 0x40, 0x01, 0x03, + 0x01, 0x00, 0x05, 0x0e, 0x01, 0x00, 0x01, 0x91, 0x01, 0x00, 0x05, 0x93, + 0x01, 0x01, 0x00, 0x20, 0x01, 0x00, 0x06, 0x0e, 0x01, 0x00, 0x00, 0x07, + 0x01, 0x00, 0x06, 0x8e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x07, 0x0e, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x07, 0x8e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x08, 0x0e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x08, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x09, 0x0e, 0x01, 0x00, 0x01, 0x91, + 0x01, 0x00, 0x09, 0x93, 0x01, 0x01, 0x00, 0x20, 0x01, 0x00, 0x80, 0xb7, + 0x01, 0x00, 0x0a, 0x0e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x09, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x04, 0x50, 0x61, 0x67, 0x65, 0x00, 0x00, + 0x05, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, + 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x0a, 0x40, 0x63, 0x6f, + 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x07, 0x47, 0x72, + 0x61, 0x70, 0x68, 0x69, 0x63, 0x00, 0x00, 0x08, 0x40, 0x67, 0x72, 0x61, + 0x70, 0x68, 0x69, 0x63, 0x00, 0x00, 0x0a, 0x40, 0x6d, 0x6f, 0x76, 0x65, + 0x5f, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x0b, 0x40, 0x6d, 0x6f, 0x76, + 0x65, 0x5f, 0x73, 0x70, 0x65, 0x65, 0x64, 0x00, 0x00, 0x0f, 0x40, 0x6d, + 0x6f, 0x76, 0x65, 0x5f, 0x66, 0x72, 0x65, 0x71, 0x75, 0x65, 0x6e, 0x63, + 0x79, 0x00, 0x00, 0x09, 0x4d, 0x6f, 0x76, 0x65, 0x52, 0x6f, 0x75, 0x74, + 0x65, 0x00, 0x00, 0x0b, 0x40, 0x6d, 0x6f, 0x76, 0x65, 0x5f, 0x72, 0x6f, + 0x75, 0x74, 0x65, 0x00, 0x00, 0x0b, 0x40, 0x77, 0x61, 0x6c, 0x6b, 0x5f, + 0x61, 0x6e, 0x69, 0x6d, 0x65, 0x00, 0x00, 0x0b, 0x40, 0x73, 0x74, 0x65, + 0x70, 0x5f, 0x61, 0x6e, 0x69, 0x6d, 0x65, 0x00, 0x00, 0x0e, 0x40, 0x64, + 0x69, 0x72, 0x65, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x78, + 0x00, 0x00, 0x08, 0x40, 0x74, 0x68, 0x72, 0x6f, 0x75, 0x67, 0x68, 0x00, + 0x00, 0x0e, 0x40, 0x61, 0x6c, 0x77, 0x61, 0x79, 0x73, 0x5f, 0x6f, 0x6e, + 0x5f, 0x74, 0x6f, 0x70, 0x00, 0x00, 0x08, 0x40, 0x74, 0x72, 0x69, 0x67, + 0x67, 0x65, 0x72, 0x00, 0x00, 0x0c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x43, + 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x00, 0x00, 0x05, 0x40, 0x6c, 0x69, + 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x91, 0x00, 0x04, 0x00, 0x06, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x0e, 0x00, 0x00, 0x00, 0x04, 0x00, 0x00, 0x26, + 0x02, 0x3f, 0xff, 0x83, 0x02, 0x00, 0x00, 0x0e, 0x02, 0x00, 0x00, 0x3d, + 0x02, 0x00, 0x00, 0x8e, 0x00, 0x80, 0x01, 0x0e, 0x01, 0x00, 0x01, 0x8e, + 0x02, 0x00, 0x03, 0x11, 0x02, 0x00, 0x02, 0x93, 0x02, 0x00, 0x02, 0x13, + 0x02, 0x01, 0xc0, 0x20, 0x02, 0x01, 0x00, 0xb7, 0x02, 0x00, 0x04, 0x0e, + 0x02, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x09, 0x00, 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x02, 0x40, 0x78, 0x00, 0x00, 0x02, + 0x40, 0x79, 0x00, 0x00, 0x04, 0x50, 0x61, 0x67, 0x65, 0x00, 0x00, 0x05, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, + 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x06, 0x40, 0x70, 0x61, 0x67, + 0x65, 0x73, 0x00, 0x00, 0x00, 0x00, 0x88, 0x00, 0x01, 0x00, 0x04, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x00, 0x00, 0x06, 0x69, 0x6e, + 0x64, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, 0x00, 0x00, 0x00, 0x6a, 0x00, 0x05, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x30, 0x00, 0x26, + 0x00, 0x40, 0x01, 0x97, 0x00, 0x40, 0x01, 0x97, 0x00, 0x40, 0x01, 0x97, + 0x00, 0x40, 0x01, 0x97, 0x00, 0xbf, 0xff, 0x83, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x81, 0x40, 0x37, 0x00, 0x80, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x80, 0x01, 0x0e, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x40, 0x63, 0x6f, 0x64, 0x65, 0x00, + 0x00, 0x07, 0x40, 0x69, 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x00, 0x00, 0x0b, + 0x40, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, + 0x00, 0x00, 0x00, 0x87, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, + 0x00, 0x0d, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x05, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x06, 0x72, + 0x65, 0x70, 0x65, 0x61, 0x74, 0x00, 0x00, 0x09, 0x73, 0x6b, 0x69, 0x70, + 0x70, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x00, 0x04, 0x6c, 0x69, 0x73, 0x74, + 0x00, 0x00, 0x00, 0x00, 0x7f, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0b, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x07, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x00, 0x01, 0x91, 0x01, 0x00, 0x01, 0x13, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x00, 0x80, 0xb7, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x07, 0x40, 0x72, + 0x65, 0x70, 0x65, 0x61, 0x74, 0x00, 0x00, 0x0a, 0x40, 0x73, 0x6b, 0x69, + 0x70, 0x70, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x00, 0x0b, 0x4d, 0x6f, 0x76, + 0x65, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x00, 0x00, 0x03, 0x52, + 0x50, 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x05, 0x40, + 0x6c, 0x69, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x73, 0x00, 0x01, 0x00, + 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x00, 0x00, 0x0a, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, 0x00, 0x00, 0x00, + 0x54, 0x00, 0x04, 0x00, 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, + 0x00, 0x20, 0x00, 0x26, 0x00, 0x40, 0x01, 0x17, 0x00, 0x40, 0x01, 0x17, + 0x00, 0x40, 0x01, 0x17, 0x00, 0xbf, 0xff, 0x83, 0x01, 0x01, 0x00, 0x37, + 0x00, 0x80, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x05, 0x40, 0x63, + 0x6f, 0x64, 0x65, 0x00, 0x00, 0x0b, 0x40, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, 0x00, 0x00, 0x02, 0x68, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x46, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0b, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0b, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x08, 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x0d, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x6c, 0x65, + 0x76, 0x65, 0x6c, 0x00, 0x00, 0x0b, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, + 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x00, 0x09, 0x65, 0x78, 0x70, 0x5f, + 0x62, 0x61, 0x73, 0x69, 0x73, 0x00, 0x00, 0x0d, 0x65, 0x78, 0x70, 0x5f, + 0x69, 0x6e, 0x66, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0e, + 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, + 0x65, 0x72, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x0c, 0x62, 0x61, 0x74, + 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0b, + 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x68, 0x75, 0x65, 0x00, + 0x00, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, + 0x00, 0x00, 0x09, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x32, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x33, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x34, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x0a, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x66, 0x69, + 0x78, 0x00, 0x00, 0x0a, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x5f, 0x66, + 0x69, 0x78, 0x00, 0x00, 0x0a, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x32, 0x5f, + 0x66, 0x69, 0x78, 0x00, 0x00, 0x0a, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x33, + 0x5f, 0x66, 0x69, 0x78, 0x00, 0x00, 0x0a, 0x61, 0x72, 0x6d, 0x6f, 0x72, + 0x34, 0x5f, 0x66, 0x69, 0x78, 0x00, 0x00, 0x00, 0x02, 0x39, 0x00, 0x03, + 0x00, 0x07, 0x00, 0x01, 0x00, 0x00, 0x00, 0x36, 0x00, 0x00, 0x00, 0x26, + 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x00, 0x0e, 0x01, 0x80, 0x00, 0x3d, + 0x01, 0x80, 0x00, 0x8e, 0x01, 0xc0, 0x00, 0x03, 0x01, 0x80, 0x01, 0x0e, + 0x01, 0xc0, 0x00, 0x03, 0x01, 0x80, 0x01, 0x8e, 0x01, 0xc0, 0x31, 0x03, + 0x01, 0x80, 0x02, 0x0e, 0x01, 0xc0, 0x0e, 0x83, 0x01, 0x80, 0x02, 0x8e, + 0x01, 0xc0, 0x0e, 0x83, 0x01, 0x80, 0x03, 0x0e, 0x01, 0x80, 0x00, 0x3d, + 0x01, 0x80, 0x03, 0x8e, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x04, 0x0e, + 0x01, 0x80, 0x00, 0x3d, 0x01, 0x80, 0x04, 0x8e, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x80, 0x05, 0x0e, 0x01, 0x80, 0x05, 0x91, 0x02, 0x40, 0x02, 0x83, + 0x02, 0xc0, 0x31, 0x83, 0x01, 0x83, 0x01, 0x20, 0x01, 0x80, 0x06, 0x8e, + 0x01, 0xc0, 0x00, 0x03, 0x02, 0x40, 0x31, 0x03, 0x01, 0x80, 0xc0, 0x41, + 0x02, 0x00, 0x01, 0x40, 0x01, 0x83, 0x80, 0x21, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x80, 0x07, 0x8e, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x08, 0x0e, + 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x08, 0x8e, 0x01, 0xbf, 0xff, 0x83, + 0x01, 0x80, 0x09, 0x0e, 0x01, 0xbf, 0xff, 0x83, 0x01, 0x80, 0x09, 0x8e, + 0x01, 0x80, 0x00, 0x08, 0x01, 0x80, 0x0a, 0x0e, 0x01, 0x80, 0x00, 0x08, + 0x01, 0x80, 0x0a, 0x8e, 0x01, 0x80, 0x00, 0x08, 0x01, 0x80, 0x0b, 0x0e, + 0x01, 0x80, 0x00, 0x08, 0x01, 0x80, 0x0b, 0x8e, 0x01, 0x80, 0x00, 0x08, + 0x01, 0x80, 0x0c, 0x0e, 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x19, 0x00, 0x03, 0x40, 0x69, 0x64, + 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x40, + 0x63, 0x6c, 0x61, 0x73, 0x73, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0e, 0x40, + 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x5f, 0x6c, 0x65, 0x76, 0x65, + 0x6c, 0x00, 0x00, 0x0c, 0x40, 0x66, 0x69, 0x6e, 0x61, 0x6c, 0x5f, 0x6c, + 0x65, 0x76, 0x65, 0x6c, 0x00, 0x00, 0x0a, 0x40, 0x65, 0x78, 0x70, 0x5f, + 0x62, 0x61, 0x73, 0x69, 0x73, 0x00, 0x00, 0x0e, 0x40, 0x65, 0x78, 0x70, + 0x5f, 0x69, 0x6e, 0x66, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x0f, 0x40, 0x63, 0x68, 0x61, 0x72, 0x61, 0x63, 0x74, 0x65, 0x72, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0e, 0x40, 0x63, 0x68, 0x61, 0x72, + 0x61, 0x63, 0x74, 0x65, 0x72, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x0d, + 0x40, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x00, 0x00, 0x0c, 0x40, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, + 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, + 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x0b, 0x40, 0x70, 0x61, + 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, 0x00, 0x04, 0x65, + 0x61, 0x63, 0x68, 0x00, 0x00, 0x0a, 0x40, 0x77, 0x65, 0x61, 0x70, 0x6f, + 0x6e, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, 0x6f, + 0x72, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, + 0x6f, 0x72, 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, + 0x6d, 0x6f, 0x72, 0x33, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, + 0x72, 0x6d, 0x6f, 0x72, 0x34, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0b, 0x40, + 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x66, 0x69, 0x78, 0x00, 0x00, + 0x0b, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x5f, 0x66, 0x69, 0x78, + 0x00, 0x00, 0x0b, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x32, 0x5f, 0x66, + 0x69, 0x78, 0x00, 0x00, 0x0b, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x33, + 0x5f, 0x66, 0x69, 0x78, 0x00, 0x00, 0x0b, 0x40, 0x61, 0x72, 0x6d, 0x6f, + 0x72, 0x34, 0x5f, 0x66, 0x69, 0x78, 0x00, 0x00, 0x00, 0x01, 0x32, 0x00, + 0x01, 0x00, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3f, 0x00, 0x00, 0x00, + 0x02, 0x00, 0x00, 0x26, 0x00, 0x80, 0x80, 0x16, 0x01, 0x40, 0xf9, 0x83, + 0x01, 0x80, 0x80, 0x15, 0x02, 0x40, 0x18, 0x83, 0x01, 0x80, 0x40, 0xb0, + 0x01, 0x00, 0x00, 0xac, 0x01, 0x80, 0x01, 0x0d, 0x02, 0x3f, 0xff, 0x83, + 0x02, 0x80, 0x80, 0x15, 0x03, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc1, 0xa0, + 0x01, 0x40, 0xf9, 0x83, 0x01, 0x80, 0x80, 0x15, 0x02, 0x40, 0x18, 0x83, + 0x01, 0x80, 0x40, 0xb0, 0x01, 0x00, 0x00, 0xac, 0x01, 0x80, 0x01, 0x0d, + 0x02, 0x40, 0x00, 0x03, 0x02, 0x80, 0x80, 0x15, 0x03, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc1, 0xa0, 0x01, 0x40, 0x18, 0x83, 0x01, 0x80, 0x80, 0x15, + 0x02, 0x40, 0x02, 0x03, 0x01, 0x80, 0x40, 0xb0, 0x01, 0x00, 0x00, 0xac, + 0x01, 0x80, 0x01, 0x0d, 0x02, 0x40, 0x00, 0x83, 0x02, 0x80, 0x80, 0x15, + 0x03, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc1, 0xa0, 0x01, 0x40, 0x18, 0x83, + 0x01, 0x80, 0x80, 0x15, 0x02, 0x40, 0x02, 0x03, 0x01, 0x80, 0x40, 0xb0, + 0x01, 0x00, 0x00, 0xac, 0x01, 0x80, 0x01, 0x0d, 0x02, 0x40, 0x01, 0x03, + 0x02, 0x80, 0x80, 0x15, 0x03, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc1, 0xa0, + 0x01, 0x40, 0x18, 0x83, 0x01, 0x80, 0x80, 0x15, 0x02, 0x40, 0x02, 0x03, + 0x01, 0x80, 0x40, 0xb0, 0x01, 0x00, 0x00, 0xac, 0x01, 0x80, 0x01, 0x0d, + 0x02, 0x40, 0x01, 0x83, 0x02, 0x80, 0x80, 0x15, 0x03, 0x00, 0x80, 0x01, + 0x01, 0x80, 0xc1, 0xa0, 0x01, 0x40, 0x18, 0x83, 0x01, 0x80, 0x80, 0x15, + 0x02, 0x40, 0x02, 0x03, 0x01, 0x80, 0x40, 0xb0, 0x01, 0x00, 0x00, 0xac, + 0x01, 0x80, 0x01, 0x0d, 0x02, 0x40, 0x02, 0x03, 0x02, 0x80, 0x80, 0x15, + 0x03, 0x00, 0x80, 0x01, 0x01, 0x80, 0xc1, 0xa0, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x01, 0x2b, 0x00, + 0x00, 0x01, 0x2a, 0x00, 0x00, 0x0b, 0x40, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, 0x00, 0x03, 0x5b, 0x5d, 0x3d, 0x00, + 0x00, 0x00, 0x01, 0x1c, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, + 0x00, 0x20, 0x00, 0x00, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x80, 0x00, 0x43, 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x02, 0xc0, 0x00, 0x80, 0x40, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x08, 0x4c, 0x65, + 0x61, 0x72, 0x6e, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x0a, 0x69, 0x6e, 0x69, + 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, + 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, + 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x0a, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x5f, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x0d, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, + 0x6e, 0x6b, 0x73, 0x00, 0x00, 0x0b, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, + 0x72, 0x61, 0x6e, 0x6b, 0x73, 0x00, 0x00, 0x09, 0x6c, 0x65, 0x61, 0x72, + 0x6e, 0x69, 0x6e, 0x67, 0x73, 0x00, 0x00, 0x00, 0x00, 0x72, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x00, 0x08, 0x73, + 0x6b, 0x69, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x00, 0x00, 0x47, + 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x06, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x00, 0x06, 0x40, 0x6c, + 0x65, 0x76, 0x65, 0x6c, 0x00, 0x00, 0x09, 0x40, 0x73, 0x6b, 0x69, 0x6c, + 0x6c, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x02, 0x00, + 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x00, 0x02, 0x91, 0x01, 0xc0, 0x00, 0x03, + 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x02, 0x91, + 0x01, 0xc0, 0x00, 0x03, 0x01, 0x01, 0x80, 0xa0, 0x01, 0x00, 0x04, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x04, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0a, 0x00, + 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x09, 0x40, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x0b, 0x40, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x73, + 0x65, 0x74, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x5f, + 0x73, 0x65, 0x74, 0x00, 0x00, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x00, + 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x0e, 0x40, 0x65, 0x6c, 0x65, + 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x73, 0x00, 0x00, + 0x0c, 0x40, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x6b, + 0x73, 0x00, 0x00, 0x0a, 0x40, 0x6c, 0x65, 0x61, 0x72, 0x6e, 0x69, 0x6e, + 0x67, 0x73, 0x00, 0x00, 0x00, 0x02, 0x7e, 0x00, 0x01, 0x00, 0x04, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0b, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0b, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0c, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0c, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0d, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x09, 0x69, 0x63, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x05, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x00, 0x00, + 0x08, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0d, + 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x5f, 0x69, + 0x64, 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x07, 0x6d, 0x65, 0x6e, 0x75, + 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x07, + 0x73, 0x70, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x00, 0x00, 0x05, 0x70, 0x6f, + 0x77, 0x65, 0x72, 0x00, 0x00, 0x05, 0x61, 0x74, 0x6b, 0x5f, 0x66, 0x00, + 0x00, 0x05, 0x65, 0x76, 0x61, 0x5f, 0x66, 0x00, 0x00, 0x05, 0x73, 0x74, + 0x72, 0x5f, 0x66, 0x00, 0x00, 0x05, 0x64, 0x65, 0x78, 0x5f, 0x66, 0x00, + 0x00, 0x05, 0x61, 0x67, 0x69, 0x5f, 0x66, 0x00, 0x00, 0x05, 0x69, 0x6e, + 0x74, 0x5f, 0x66, 0x00, 0x00, 0x03, 0x68, 0x69, 0x74, 0x00, 0x00, 0x06, + 0x70, 0x64, 0x65, 0x66, 0x5f, 0x66, 0x00, 0x00, 0x06, 0x6d, 0x64, 0x65, + 0x66, 0x5f, 0x66, 0x00, 0x00, 0x08, 0x76, 0x61, 0x72, 0x69, 0x61, 0x6e, + 0x63, 0x65, 0x00, 0x00, 0x0b, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, + 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0e, 0x70, 0x6c, 0x75, 0x73, 0x5f, + 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, + 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, + 0x73, 0x65, 0x74, 0x00, 0x00, 0x00, 0x02, 0x39, 0x00, 0x02, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x04, 0x91, 0x01, 0x00, 0x04, 0x13, + 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, 0x01, 0x02, 0x81, 0x20, + 0x01, 0x00, 0x05, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x06, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x06, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x07, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x07, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x08, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x08, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x09, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x09, 0x8e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x0a, 0x0e, 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x0a, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0b, 0x0e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x0b, 0x8e, 0x01, 0x40, 0x07, 0x03, 0x01, 0x00, 0x0c, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0c, 0x8e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x0d, 0x0e, 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0d, 0x8e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x1c, 0x00, 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x69, 0x63, 0x6f, 0x6e, + 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0c, 0x40, 0x64, 0x65, 0x73, + 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x06, 0x40, + 0x73, 0x63, 0x6f, 0x70, 0x65, 0x00, 0x00, 0x09, 0x40, 0x6f, 0x63, 0x63, + 0x61, 0x73, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x0e, 0x40, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x32, + 0x5f, 0x69, 0x64, 0x00, 0x00, 0x09, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x46, + 0x69, 0x6c, 0x65, 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, + 0x6e, 0x65, 0x77, 0x00, 0x00, 0x08, 0x40, 0x6d, 0x65, 0x6e, 0x75, 0x5f, + 0x73, 0x65, 0x00, 0x00, 0x10, 0x40, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, + 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x08, + 0x40, 0x73, 0x70, 0x5f, 0x63, 0x6f, 0x73, 0x74, 0x00, 0x00, 0x06, 0x40, + 0x70, 0x6f, 0x77, 0x65, 0x72, 0x00, 0x00, 0x06, 0x40, 0x61, 0x74, 0x6b, + 0x5f, 0x66, 0x00, 0x00, 0x06, 0x40, 0x65, 0x76, 0x61, 0x5f, 0x66, 0x00, + 0x00, 0x06, 0x40, 0x73, 0x74, 0x72, 0x5f, 0x66, 0x00, 0x00, 0x06, 0x40, + 0x64, 0x65, 0x78, 0x5f, 0x66, 0x00, 0x00, 0x06, 0x40, 0x61, 0x67, 0x69, + 0x5f, 0x66, 0x00, 0x00, 0x06, 0x40, 0x69, 0x6e, 0x74, 0x5f, 0x66, 0x00, + 0x00, 0x04, 0x40, 0x68, 0x69, 0x74, 0x00, 0x00, 0x07, 0x40, 0x70, 0x64, + 0x65, 0x66, 0x5f, 0x66, 0x00, 0x00, 0x07, 0x40, 0x6d, 0x64, 0x65, 0x66, + 0x5f, 0x66, 0x00, 0x00, 0x09, 0x40, 0x76, 0x61, 0x72, 0x69, 0x61, 0x6e, + 0x63, 0x65, 0x00, 0x00, 0x0c, 0x40, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, + 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, 0x40, 0x70, 0x6c, 0x75, + 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x10, 0x40, 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, + 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x00, 0x02, 0xb3, 0x00, + 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x4f, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0b, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0b, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0c, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0c, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0d, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x69, 0x63, 0x6f, 0x6e, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x05, 0x73, 0x63, 0x6f, + 0x70, 0x65, 0x00, 0x00, 0x08, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x07, + 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0f, 0x63, 0x6f, + 0x6d, 0x6d, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, 0x6e, 0x74, 0x5f, 0x69, + 0x64, 0x00, 0x00, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x00, 0x00, 0x0a, + 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, 0x61, 0x62, 0x6c, 0x65, 0x00, 0x00, + 0x0e, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x00, 0x00, 0x10, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, + 0x74, 0x65, 0x72, 0x5f, 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x00, 0x00, + 0x0f, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x68, 0x70, 0x5f, + 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, 0x0a, 0x72, 0x65, 0x63, 0x6f, 0x76, + 0x65, 0x72, 0x5f, 0x68, 0x70, 0x00, 0x00, 0x0f, 0x72, 0x65, 0x63, 0x6f, + 0x76, 0x65, 0x72, 0x5f, 0x73, 0x70, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, + 0x00, 0x0a, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x73, 0x70, + 0x00, 0x00, 0x03, 0x68, 0x69, 0x74, 0x00, 0x00, 0x06, 0x70, 0x64, 0x65, + 0x66, 0x5f, 0x66, 0x00, 0x00, 0x06, 0x6d, 0x64, 0x65, 0x66, 0x5f, 0x66, + 0x00, 0x00, 0x08, 0x76, 0x61, 0x72, 0x69, 0x61, 0x6e, 0x63, 0x65, 0x00, + 0x00, 0x0b, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, + 0x74, 0x00, 0x00, 0x0e, 0x70, 0x6c, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, + 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, 0x6d, 0x69, 0x6e, + 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, + 0x00, 0x00, 0x00, 0x02, 0x6e, 0x00, 0x02, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x38, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x8e, + 0x01, 0x00, 0x04, 0x91, 0x01, 0x00, 0x04, 0x13, 0x01, 0x80, 0x00, 0x3d, + 0x02, 0x40, 0x27, 0x83, 0x01, 0x02, 0x81, 0x20, 0x01, 0x00, 0x05, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x06, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x06, 0x8e, 0x01, 0x00, 0x00, 0x07, 0x01, 0x00, 0x07, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x07, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x08, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x08, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x09, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x09, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0a, 0x0e, + 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x0a, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x0b, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0b, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0c, 0x0e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x0c, 0x8e, 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0d, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0d, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, + 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0a, 0x40, 0x69, 0x63, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x00, 0x00, 0x0c, 0x40, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x06, 0x40, 0x73, 0x63, 0x6f, 0x70, + 0x65, 0x00, 0x00, 0x09, 0x40, 0x6f, 0x63, 0x63, 0x61, 0x73, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x09, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x00, + 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, + 0x00, 0x08, 0x40, 0x6d, 0x65, 0x6e, 0x75, 0x5f, 0x73, 0x65, 0x00, 0x00, + 0x10, 0x40, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x5f, 0x65, 0x76, 0x65, + 0x6e, 0x74, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x06, 0x40, 0x70, 0x72, 0x69, + 0x63, 0x65, 0x00, 0x00, 0x0b, 0x40, 0x63, 0x6f, 0x6e, 0x73, 0x75, 0x6d, + 0x61, 0x62, 0x6c, 0x65, 0x00, 0x00, 0x0f, 0x40, 0x70, 0x61, 0x72, 0x61, + 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, + 0x11, 0x40, 0x70, 0x61, 0x72, 0x61, 0x6d, 0x65, 0x74, 0x65, 0x72, 0x5f, + 0x70, 0x6f, 0x69, 0x6e, 0x74, 0x73, 0x00, 0x00, 0x10, 0x40, 0x72, 0x65, + 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x68, 0x70, 0x5f, 0x72, 0x61, 0x74, + 0x65, 0x00, 0x00, 0x0b, 0x40, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, + 0x5f, 0x68, 0x70, 0x00, 0x00, 0x10, 0x40, 0x72, 0x65, 0x63, 0x6f, 0x76, + 0x65, 0x72, 0x5f, 0x73, 0x70, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, + 0x0b, 0x40, 0x72, 0x65, 0x63, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x73, 0x70, + 0x00, 0x00, 0x04, 0x40, 0x68, 0x69, 0x74, 0x00, 0x00, 0x07, 0x40, 0x70, + 0x64, 0x65, 0x66, 0x5f, 0x66, 0x00, 0x00, 0x07, 0x40, 0x6d, 0x64, 0x65, + 0x66, 0x5f, 0x66, 0x00, 0x00, 0x09, 0x40, 0x76, 0x61, 0x72, 0x69, 0x61, + 0x6e, 0x63, 0x65, 0x00, 0x00, 0x0c, 0x40, 0x65, 0x6c, 0x65, 0x6d, 0x65, + 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, 0x40, 0x70, 0x6c, + 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, + 0x00, 0x00, 0x10, 0x40, 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x5f, 0x73, 0x74, + 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x00, 0x01, 0xd2, + 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x69, 0x63, 0x6f, 0x6e, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0b, 0x64, 0x65, 0x73, 0x63, 0x72, + 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0x5f, + 0x69, 0x64, 0x00, 0x00, 0x05, 0x70, 0x72, 0x69, 0x63, 0x65, 0x00, 0x00, + 0x03, 0x61, 0x74, 0x6b, 0x00, 0x00, 0x04, 0x70, 0x64, 0x65, 0x66, 0x00, + 0x00, 0x04, 0x6d, 0x64, 0x65, 0x66, 0x00, 0x00, 0x08, 0x73, 0x74, 0x72, + 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x08, 0x64, 0x65, 0x78, 0x5f, + 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x08, 0x61, 0x67, 0x69, 0x5f, 0x70, + 0x6c, 0x75, 0x73, 0x00, 0x00, 0x08, 0x69, 0x6e, 0x74, 0x5f, 0x70, 0x6c, + 0x75, 0x73, 0x00, 0x00, 0x0b, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, + 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0e, 0x70, 0x6c, 0x75, 0x73, 0x5f, + 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, + 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, + 0x73, 0x65, 0x74, 0x00, 0x00, 0x00, 0x01, 0x7d, 0x00, 0x02, 0x00, 0x03, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x24, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x04, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x04, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x05, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x05, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x06, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x06, 0x8e, 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x07, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x07, 0x8e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x08, 0x0e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x11, 0x00, 0x03, 0x40, 0x69, 0x64, + 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0a, 0x40, + 0x69, 0x63, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0c, + 0x40, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x31, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, 0x69, + 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x06, 0x40, 0x70, 0x72, 0x69, 0x63, 0x65, 0x00, 0x00, 0x04, 0x40, 0x61, + 0x74, 0x6b, 0x00, 0x00, 0x05, 0x40, 0x70, 0x64, 0x65, 0x66, 0x00, 0x00, + 0x05, 0x40, 0x6d, 0x64, 0x65, 0x66, 0x00, 0x00, 0x09, 0x40, 0x73, 0x74, + 0x72, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x09, 0x40, 0x64, 0x65, + 0x78, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x09, 0x40, 0x61, 0x67, + 0x69, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x09, 0x40, 0x69, 0x6e, + 0x74, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x0c, 0x40, 0x65, 0x6c, + 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, + 0x40, 0x70, 0x6c, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, + 0x73, 0x65, 0x74, 0x00, 0x00, 0x10, 0x40, 0x6d, 0x69, 0x6e, 0x75, 0x73, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, + 0x00, 0x01, 0xb2, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x34, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x12, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, + 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x69, + 0x63, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0b, 0x64, + 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, + 0x04, 0x6b, 0x69, 0x6e, 0x64, 0x00, 0x00, 0x0d, 0x61, 0x75, 0x74, 0x6f, + 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x05, + 0x70, 0x72, 0x69, 0x63, 0x65, 0x00, 0x00, 0x04, 0x70, 0x64, 0x65, 0x66, + 0x00, 0x00, 0x04, 0x6d, 0x64, 0x65, 0x66, 0x00, 0x00, 0x03, 0x65, 0x76, + 0x61, 0x00, 0x00, 0x08, 0x73, 0x74, 0x72, 0x5f, 0x70, 0x6c, 0x75, 0x73, + 0x00, 0x00, 0x08, 0x64, 0x65, 0x78, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, + 0x00, 0x08, 0x61, 0x67, 0x69, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, + 0x08, 0x69, 0x6e, 0x74, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x11, + 0x67, 0x75, 0x61, 0x72, 0x64, 0x5f, 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, + 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, 0x67, 0x75, 0x61, 0x72, + 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, + 0x00, 0x00, 0x01, 0x60, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x22, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x04, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x04, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x05, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x05, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x06, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x06, 0x8e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x07, 0x0e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x07, 0x8e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x10, 0x00, 0x03, 0x40, 0x69, 0x64, + 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0a, 0x40, + 0x69, 0x63, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0c, + 0x40, 0x64, 0x65, 0x73, 0x63, 0x72, 0x69, 0x70, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x05, 0x40, 0x6b, 0x69, 0x6e, 0x64, 0x00, 0x00, 0x0e, 0x40, + 0x61, 0x75, 0x74, 0x6f, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x69, + 0x64, 0x00, 0x00, 0x06, 0x40, 0x70, 0x72, 0x69, 0x63, 0x65, 0x00, 0x00, + 0x05, 0x40, 0x70, 0x64, 0x65, 0x66, 0x00, 0x00, 0x05, 0x40, 0x6d, 0x64, + 0x65, 0x66, 0x00, 0x00, 0x04, 0x40, 0x65, 0x76, 0x61, 0x00, 0x00, 0x09, + 0x40, 0x73, 0x74, 0x72, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x09, + 0x40, 0x64, 0x65, 0x78, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x09, + 0x40, 0x61, 0x67, 0x69, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x09, + 0x40, 0x69, 0x6e, 0x74, 0x5f, 0x70, 0x6c, 0x75, 0x73, 0x00, 0x00, 0x12, + 0x40, 0x67, 0x75, 0x61, 0x72, 0x64, 0x5f, 0x65, 0x6c, 0x65, 0x6d, 0x65, + 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x10, 0x40, 0x67, 0x75, + 0x61, 0x72, 0x64, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, + 0x74, 0x00, 0x00, 0x00, 0x02, 0x7d, 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, + 0x00, 0x00, 0x00, 0x53, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x80, 0x00, 0x43, 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x02, 0xc0, 0x00, 0x80, 0x40, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0b, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0b, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0c, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0c, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0d, 0x04, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x0d, 0x84, 0x00, 0x80, 0x80, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1c, 0x00, 0x06, 0x41, 0x63, + 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, + 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, + 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, + 0x69, 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0c, + 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0b, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x68, + 0x75, 0x65, 0x00, 0x00, 0x05, 0x6d, 0x61, 0x78, 0x68, 0x70, 0x00, 0x00, + 0x05, 0x6d, 0x61, 0x78, 0x73, 0x70, 0x00, 0x00, 0x03, 0x73, 0x74, 0x72, + 0x00, 0x00, 0x03, 0x64, 0x65, 0x78, 0x00, 0x00, 0x03, 0x61, 0x67, 0x69, + 0x00, 0x00, 0x03, 0x69, 0x6e, 0x74, 0x00, 0x00, 0x03, 0x61, 0x74, 0x6b, + 0x00, 0x00, 0x04, 0x70, 0x64, 0x65, 0x66, 0x00, 0x00, 0x04, 0x6d, 0x64, + 0x65, 0x66, 0x00, 0x00, 0x03, 0x65, 0x76, 0x61, 0x00, 0x00, 0x0d, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, + 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0d, 0x65, 0x6c, 0x65, 0x6d, 0x65, + 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x73, 0x00, 0x00, 0x0b, 0x73, + 0x74, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x73, 0x00, 0x00, + 0x07, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x73, 0x00, 0x00, 0x03, 0x65, + 0x78, 0x70, 0x00, 0x00, 0x04, 0x67, 0x6f, 0x6c, 0x64, 0x00, 0x00, 0x07, + 0x69, 0x74, 0x65, 0x6d, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x09, 0x77, 0x65, + 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x08, 0x61, 0x72, + 0x6d, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0d, 0x74, 0x72, 0x65, + 0x61, 0x73, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x62, 0x00, 0x00, + 0x00, 0x01, 0x33, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x1f, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0b, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x04, 0x6b, + 0x69, 0x6e, 0x64, 0x00, 0x00, 0x05, 0x62, 0x61, 0x73, 0x69, 0x63, 0x00, + 0x00, 0x08, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x10, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, + 0x75, 0x72, 0x6e, 0x5f, 0x61, 0x00, 0x00, 0x10, 0x63, 0x6f, 0x6e, 0x64, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x62, + 0x00, 0x00, 0x0c, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, + 0x5f, 0x68, 0x70, 0x00, 0x00, 0x0f, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x00, 0x13, + 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x77, + 0x69, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x06, 0x72, 0x61, + 0x74, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x00, 0xf3, 0x00, 0x02, 0x00, + 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x03, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x8e, 0x01, 0x40, 0x02, 0x03, 0x01, 0x00, 0x04, 0x0e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x05, 0x40, 0x6b, 0x69, 0x6e, 0x64, 0x00, 0x00, 0x06, 0x40, 0x62, + 0x61, 0x73, 0x69, 0x63, 0x00, 0x00, 0x09, 0x40, 0x73, 0x6b, 0x69, 0x6c, + 0x6c, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x11, 0x40, 0x63, 0x6f, 0x6e, 0x64, + 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x61, + 0x00, 0x00, 0x11, 0x40, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x62, 0x00, 0x00, 0x0d, 0x40, + 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x68, 0x70, + 0x00, 0x00, 0x10, 0x40, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, 0x00, 0x14, 0x40, 0x63, + 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x77, 0x69, + 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x07, 0x40, 0x72, 0x61, + 0x74, 0x69, 0x6e, 0x67, 0x00, 0x00, 0x00, 0x02, 0x3c, 0x00, 0x02, 0x00, + 0x05, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3c, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x40, 0xf9, 0x83, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x40, 0xf9, 0x83, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x40, 0x18, 0x83, 0x01, 0x00, 0x03, 0x0e, 0x01, 0x40, 0x18, 0x83, + 0x01, 0x00, 0x03, 0x8e, 0x01, 0x40, 0x18, 0x83, 0x01, 0x00, 0x04, 0x0e, + 0x01, 0x40, 0x18, 0x83, 0x01, 0x00, 0x04, 0x8e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x05, 0x0e, 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x05, 0x8e, + 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x06, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x06, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x07, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x07, 0x8e, 0x01, 0x00, 0x08, 0x11, + 0x01, 0xc0, 0x00, 0x03, 0x01, 0x04, 0x40, 0xa0, 0x01, 0x00, 0x09, 0x0e, + 0x01, 0x00, 0x08, 0x11, 0x01, 0xc0, 0x00, 0x03, 0x01, 0x04, 0x40, 0xa0, + 0x01, 0x00, 0x09, 0x8e, 0x01, 0x00, 0x0b, 0x11, 0x01, 0x00, 0x0a, 0x93, + 0x01, 0x00, 0x0a, 0x13, 0x01, 0x04, 0x40, 0x20, 0x01, 0x00, 0x80, 0xb7, + 0x01, 0x00, 0x0b, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0c, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0c, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x0d, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0d, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0e, 0x0e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x0e, 0x8e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x40, 0x69, 0x64, + 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x40, + 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0c, 0x40, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, + 0x68, 0x75, 0x65, 0x00, 0x00, 0x06, 0x40, 0x6d, 0x61, 0x78, 0x68, 0x70, + 0x00, 0x00, 0x06, 0x40, 0x6d, 0x61, 0x78, 0x73, 0x70, 0x00, 0x00, 0x04, + 0x40, 0x73, 0x74, 0x72, 0x00, 0x00, 0x04, 0x40, 0x64, 0x65, 0x78, 0x00, + 0x00, 0x04, 0x40, 0x61, 0x67, 0x69, 0x00, 0x00, 0x04, 0x40, 0x69, 0x6e, + 0x74, 0x00, 0x00, 0x04, 0x40, 0x61, 0x74, 0x6b, 0x00, 0x00, 0x05, 0x40, + 0x70, 0x64, 0x65, 0x66, 0x00, 0x00, 0x05, 0x40, 0x6d, 0x64, 0x65, 0x66, + 0x00, 0x00, 0x04, 0x40, 0x65, 0x76, 0x61, 0x00, 0x00, 0x0e, 0x40, 0x61, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x31, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x32, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x05, 0x54, 0x61, 0x62, 0x6c, + 0x65, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x0e, 0x40, 0x65, + 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x6e, 0x6b, 0x73, + 0x00, 0x00, 0x0c, 0x40, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x72, 0x61, + 0x6e, 0x6b, 0x73, 0x00, 0x00, 0x06, 0x41, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x00, 0x00, 0x05, 0x45, 0x6e, 0x65, 0x6d, 0x79, 0x00, 0x00, 0x03, 0x52, + 0x50, 0x47, 0x00, 0x00, 0x08, 0x40, 0x61, 0x63, 0x74, 0x69, 0x6f, 0x6e, + 0x73, 0x00, 0x00, 0x04, 0x40, 0x65, 0x78, 0x70, 0x00, 0x00, 0x05, 0x40, + 0x67, 0x6f, 0x6c, 0x64, 0x00, 0x00, 0x08, 0x40, 0x69, 0x74, 0x65, 0x6d, + 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x77, 0x65, 0x61, 0x70, 0x6f, + 0x6e, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x09, 0x40, 0x61, 0x72, 0x6d, 0x6f, + 0x72, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0e, 0x40, 0x74, 0x72, 0x65, 0x61, + 0x73, 0x75, 0x72, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x62, 0x00, 0x00, 0x00, + 0x00, 0xc5, 0x00, 0x01, 0x00, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x00, 0x43, + 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x80, 0x40, 0x43, 0x00, 0x80, 0x00, 0xc5, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x04, 0xc0, 0x00, 0x80, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x06, 0x4d, 0x65, + 0x6d, 0x62, 0x65, 0x72, 0x00, 0x00, 0x04, 0x50, 0x61, 0x67, 0x65, 0x00, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x07, 0x6d, 0x65, 0x6d, 0x62, 0x65, + 0x72, 0x73, 0x00, 0x00, 0x05, 0x70, 0x61, 0x67, 0x65, 0x73, 0x00, 0x00, + 0x00, 0x00, 0xaa, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x13, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x08, 0x65, + 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x01, 0x78, 0x00, + 0x00, 0x01, 0x79, 0x00, 0x00, 0x06, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, + 0x00, 0x00, 0x08, 0x69, 0x6d, 0x6d, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x00, + 0x00, 0x00, 0x00, 0x76, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x0c, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, + 0x00, 0x09, 0x40, 0x65, 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x02, 0x40, 0x78, 0x00, 0x00, 0x02, 0x40, 0x79, 0x00, 0x00, 0x07, + 0x40, 0x68, 0x69, 0x64, 0x64, 0x65, 0x6e, 0x00, 0x00, 0x09, 0x40, 0x69, + 0x6d, 0x6d, 0x6f, 0x72, 0x74, 0x61, 0x6c, 0x00, 0x00, 0x00, 0x00, 0xa1, + 0x00, 0x01, 0x00, 0x04, 0x00, 0x02, 0x00, 0x00, 0x00, 0x11, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x00, 0x43, + 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x02, 0xc0, + 0x00, 0x80, 0x40, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x80, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0x80, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x06, 0x00, 0x09, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x09, 0x63, + 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x04, 0x73, + 0x70, 0x61, 0x6e, 0x00, 0x00, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x00, 0x00, + 0x00, 0x01, 0x50, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, + 0x25, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, + 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, + 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, + 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, + 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x0a, 0x74, + 0x75, 0x72, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0b, + 0x65, 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, + 0x00, 0x0b, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x76, 0x61, 0x6c, 0x69, + 0x64, 0x00, 0x00, 0x0c, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, 0x76, + 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x06, 0x74, 0x75, 0x72, 0x6e, 0x5f, + 0x61, 0x00, 0x00, 0x06, 0x74, 0x75, 0x72, 0x6e, 0x5f, 0x62, 0x00, 0x00, + 0x0b, 0x65, 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, + 0x00, 0x00, 0x08, 0x65, 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x68, 0x70, 0x00, + 0x00, 0x08, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x00, 0x00, + 0x08, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x68, 0x70, 0x00, 0x00, 0x09, + 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x00, + 0x01, 0x0a, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x18, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x01, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x40, 0x18, 0x83, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x04, 0x0e, 0x01, 0x40, 0x18, 0x83, 0x01, 0x00, 0x04, 0x8e, + 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x05, 0x0e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x00, 0x0b, 0x40, 0x74, + 0x75, 0x72, 0x6e, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0c, + 0x40, 0x65, 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, + 0x00, 0x00, 0x0c, 0x40, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x76, 0x61, + 0x6c, 0x69, 0x64, 0x00, 0x00, 0x0d, 0x40, 0x73, 0x77, 0x69, 0x74, 0x63, + 0x68, 0x5f, 0x76, 0x61, 0x6c, 0x69, 0x64, 0x00, 0x00, 0x07, 0x40, 0x74, + 0x75, 0x72, 0x6e, 0x5f, 0x61, 0x00, 0x00, 0x07, 0x40, 0x74, 0x75, 0x72, + 0x6e, 0x5f, 0x62, 0x00, 0x00, 0x0c, 0x40, 0x65, 0x6e, 0x65, 0x6d, 0x79, + 0x5f, 0x69, 0x6e, 0x64, 0x65, 0x78, 0x00, 0x00, 0x09, 0x40, 0x65, 0x6e, + 0x65, 0x6d, 0x79, 0x5f, 0x68, 0x70, 0x00, 0x00, 0x09, 0x40, 0x61, 0x63, + 0x74, 0x6f, 0x72, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x09, 0x40, 0x61, 0x63, + 0x74, 0x6f, 0x72, 0x5f, 0x68, 0x70, 0x00, 0x00, 0x0a, 0x40, 0x73, 0x77, + 0x69, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x00, 0x00, 0xa9, + 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x01, 0x91, 0x01, 0x00, 0x01, 0x13, + 0x01, 0x00, 0x00, 0x93, 0x01, 0x00, 0x00, 0x13, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x00, 0x01, 0x91, 0x01, 0x00, 0x03, 0x93, 0x01, 0x01, 0x00, 0x20, + 0x01, 0x00, 0x80, 0xb7, 0x01, 0x00, 0x04, 0x0e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x09, 0x43, 0x6f, + 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x04, 0x50, 0x61, + 0x67, 0x65, 0x00, 0x00, 0x05, 0x54, 0x72, 0x6f, 0x6f, 0x70, 0x00, 0x00, + 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, + 0x0a, 0x40, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x05, 0x40, 0x73, 0x70, 0x61, 0x6e, 0x00, 0x00, 0x0c, 0x45, 0x76, + 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, 0x61, 0x6e, 0x64, 0x00, 0x00, + 0x05, 0x40, 0x6c, 0x69, 0x73, 0x74, 0x00, 0x00, 0x00, 0x00, 0x91, 0x00, + 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x02, 0x11, 0x01, 0x00, 0x01, 0x93, + 0x01, 0x01, 0x40, 0x20, 0x01, 0x00, 0x80, 0xb7, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x07, 0x00, 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x08, 0x40, 0x6d, 0x65, 0x6d, 0x62, + 0x65, 0x72, 0x73, 0x00, 0x00, 0x0f, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, + 0x45, 0x76, 0x65, 0x6e, 0x74, 0x50, 0x61, 0x67, 0x65, 0x00, 0x00, 0x03, + 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x06, + 0x40, 0x70, 0x61, 0x67, 0x65, 0x73, 0x00, 0x00, 0x00, 0x03, 0x01, 0x00, + 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x58, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0b, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0b, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0c, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0c, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0d, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0d, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0e, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0e, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x1e, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0c, 0x61, 0x6e, 0x69, 0x6d, 0x61, + 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0b, 0x72, 0x65, + 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x0d, + 0x6e, 0x6f, 0x6e, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, 0x61, 0x6e, 0x63, + 0x65, 0x00, 0x00, 0x07, 0x7a, 0x65, 0x72, 0x6f, 0x5f, 0x68, 0x70, 0x00, + 0x00, 0x0c, 0x63, 0x61, 0x6e, 0x74, 0x5f, 0x67, 0x65, 0x74, 0x5f, 0x65, + 0x78, 0x70, 0x00, 0x00, 0x0a, 0x63, 0x61, 0x6e, 0x74, 0x5f, 0x65, 0x76, + 0x61, 0x64, 0x65, 0x00, 0x00, 0x0b, 0x73, 0x6c, 0x69, 0x70, 0x5f, 0x64, + 0x61, 0x6d, 0x61, 0x67, 0x65, 0x00, 0x00, 0x06, 0x72, 0x61, 0x74, 0x69, + 0x6e, 0x67, 0x00, 0x00, 0x08, 0x68, 0x69, 0x74, 0x5f, 0x72, 0x61, 0x74, + 0x65, 0x00, 0x00, 0x0a, 0x6d, 0x61, 0x78, 0x68, 0x70, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x0a, 0x6d, 0x61, 0x78, 0x73, 0x70, 0x5f, 0x72, + 0x61, 0x74, 0x65, 0x00, 0x00, 0x08, 0x73, 0x74, 0x72, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x08, 0x64, 0x65, 0x78, 0x5f, 0x72, 0x61, 0x74, + 0x65, 0x00, 0x00, 0x08, 0x61, 0x67, 0x69, 0x5f, 0x72, 0x61, 0x74, 0x65, + 0x00, 0x00, 0x08, 0x69, 0x6e, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, + 0x00, 0x08, 0x61, 0x74, 0x6b, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, + 0x09, 0x70, 0x64, 0x65, 0x66, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, + 0x09, 0x6d, 0x64, 0x65, 0x66, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, + 0x03, 0x65, 0x76, 0x61, 0x00, 0x00, 0x0b, 0x62, 0x61, 0x74, 0x74, 0x6c, + 0x65, 0x5f, 0x6f, 0x6e, 0x6c, 0x79, 0x00, 0x00, 0x09, 0x68, 0x6f, 0x6c, + 0x64, 0x5f, 0x74, 0x75, 0x72, 0x6e, 0x00, 0x00, 0x11, 0x61, 0x75, 0x74, + 0x6f, 0x5f, 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x70, 0x72, + 0x6f, 0x62, 0x00, 0x00, 0x12, 0x73, 0x68, 0x6f, 0x63, 0x6b, 0x5f, 0x72, + 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x62, 0x00, + 0x00, 0x11, 0x67, 0x75, 0x61, 0x72, 0x64, 0x5f, 0x65, 0x6c, 0x65, 0x6d, + 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0e, 0x70, 0x6c, + 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, + 0x00, 0x00, 0x0f, 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, + 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x00, 0x02, 0x8b, 0x00, + 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x3a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x8e, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x00, 0x00, 0x08, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x08, + 0x01, 0x00, 0x04, 0x0e, 0x01, 0x40, 0x02, 0x03, 0x01, 0x00, 0x04, 0x8e, + 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x05, 0x0e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x05, 0x8e, 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x06, 0x0e, + 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x06, 0x8e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x07, 0x0e, 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x07, 0x8e, + 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x08, 0x0e, 0x01, 0x40, 0x31, 0x83, + 0x01, 0x00, 0x08, 0x8e, 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x09, 0x0e, + 0x01, 0x40, 0x31, 0x83, 0x01, 0x00, 0x09, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x0a, 0x0e, 0x01, 0x00, 0x00, 0x07, 0x01, 0x00, 0x0a, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0b, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x0b, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x0c, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0c, 0x8e, 0x01, 0x00, 0x80, 0x37, + 0x01, 0x00, 0x0d, 0x0e, 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0d, 0x8e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x1c, 0x00, 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x40, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0c, 0x40, + 0x72, 0x65, 0x73, 0x74, 0x72, 0x69, 0x63, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x0e, 0x40, 0x6e, 0x6f, 0x6e, 0x72, 0x65, 0x73, 0x69, 0x73, 0x74, + 0x61, 0x6e, 0x63, 0x65, 0x00, 0x00, 0x08, 0x40, 0x7a, 0x65, 0x72, 0x6f, + 0x5f, 0x68, 0x70, 0x00, 0x00, 0x0d, 0x40, 0x63, 0x61, 0x6e, 0x74, 0x5f, + 0x67, 0x65, 0x74, 0x5f, 0x65, 0x78, 0x70, 0x00, 0x00, 0x0b, 0x40, 0x63, + 0x61, 0x6e, 0x74, 0x5f, 0x65, 0x76, 0x61, 0x64, 0x65, 0x00, 0x00, 0x0c, + 0x40, 0x73, 0x6c, 0x69, 0x70, 0x5f, 0x64, 0x61, 0x6d, 0x61, 0x67, 0x65, + 0x00, 0x00, 0x07, 0x40, 0x72, 0x61, 0x74, 0x69, 0x6e, 0x67, 0x00, 0x00, + 0x09, 0x40, 0x68, 0x69, 0x74, 0x5f, 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, + 0x0b, 0x40, 0x6d, 0x61, 0x78, 0x68, 0x70, 0x5f, 0x72, 0x61, 0x74, 0x65, + 0x00, 0x00, 0x0b, 0x40, 0x6d, 0x61, 0x78, 0x73, 0x70, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x09, 0x40, 0x73, 0x74, 0x72, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x09, 0x40, 0x64, 0x65, 0x78, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x09, 0x40, 0x61, 0x67, 0x69, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x09, 0x40, 0x69, 0x6e, 0x74, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x09, 0x40, 0x61, 0x74, 0x6b, 0x5f, 0x72, 0x61, + 0x74, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x70, 0x64, 0x65, 0x66, 0x5f, 0x72, + 0x61, 0x74, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x6d, 0x64, 0x65, 0x66, 0x5f, + 0x72, 0x61, 0x74, 0x65, 0x00, 0x00, 0x04, 0x40, 0x65, 0x76, 0x61, 0x00, + 0x00, 0x0c, 0x40, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x6f, 0x6e, + 0x6c, 0x79, 0x00, 0x00, 0x0a, 0x40, 0x68, 0x6f, 0x6c, 0x64, 0x5f, 0x74, + 0x75, 0x72, 0x6e, 0x00, 0x00, 0x12, 0x40, 0x61, 0x75, 0x74, 0x6f, 0x5f, + 0x72, 0x65, 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x62, + 0x00, 0x00, 0x13, 0x40, 0x73, 0x68, 0x6f, 0x63, 0x6b, 0x5f, 0x72, 0x65, + 0x6c, 0x65, 0x61, 0x73, 0x65, 0x5f, 0x70, 0x72, 0x6f, 0x62, 0x00, 0x00, + 0x12, 0x40, 0x67, 0x75, 0x61, 0x72, 0x64, 0x5f, 0x65, 0x6c, 0x65, 0x6d, + 0x65, 0x6e, 0x74, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x0f, 0x40, 0x70, + 0x6c, 0x75, 0x73, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, + 0x74, 0x00, 0x00, 0x10, 0x40, 0x6d, 0x69, 0x6e, 0x75, 0x73, 0x5f, 0x73, + 0x74, 0x61, 0x74, 0x65, 0x5f, 0x73, 0x65, 0x74, 0x00, 0x00, 0x00, 0x01, + 0x2f, 0x00, 0x01, 0x00, 0x04, 0x00, 0x03, 0x00, 0x00, 0x00, 0x24, 0x00, + 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x00, 0x43, + 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x80, 0x40, 0x43, 0x00, 0x80, 0x00, 0xc5, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x04, 0xc0, 0x00, 0x80, 0x80, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0xc0, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, 0x05, 0x46, 0x72, + 0x61, 0x6d, 0x65, 0x00, 0x00, 0x06, 0x54, 0x69, 0x6d, 0x69, 0x6e, 0x67, + 0x00, 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, + 0x65, 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, + 0x65, 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, + 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0e, 0x61, 0x6e, 0x69, 0x6d, + 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, + 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x68, + 0x75, 0x65, 0x00, 0x00, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x09, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, + 0x78, 0x00, 0x00, 0x06, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, + 0x07, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, 0x73, 0x00, 0x00, 0x00, 0x00, + 0x76, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x0a, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x08, 0x63, 0x65, 0x6c, 0x6c, 0x5f, + 0x6d, 0x61, 0x78, 0x00, 0x00, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x64, + 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00, 0x65, 0x00, 0x02, 0x00, 0x06, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x91, + 0x01, 0xbf, 0xff, 0x83, 0x02, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x81, 0x20, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x04, 0x00, 0x09, 0x40, 0x63, 0x65, 0x6c, 0x6c, 0x5f, + 0x6d, 0x61, 0x78, 0x00, 0x00, 0x05, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x00, + 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x0a, 0x40, 0x63, 0x65, 0x6c, + 0x6c, 0x5f, 0x64, 0x61, 0x74, 0x61, 0x00, 0x00, 0x00, 0x00, 0xd5, 0x00, + 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x05, 0x66, 0x72, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x02, 0x73, 0x65, 0x00, 0x00, 0x0b, 0x66, 0x6c, 0x61, 0x73, + 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x00, 0x00, 0x0b, 0x66, 0x6c, + 0x61, 0x73, 0x68, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x0e, + 0x66, 0x6c, 0x61, 0x73, 0x68, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0xe5, 0x00, 0x02, 0x00, 0x08, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x17, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x01, 0x11, + 0x01, 0x00, 0x00, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x00, 0xc1, 0x20, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x03, 0x11, 0x01, 0xc0, 0x7f, 0x03, + 0x02, 0x40, 0x7f, 0x03, 0x02, 0xc0, 0x7f, 0x03, 0x03, 0x40, 0x7f, 0x03, + 0x01, 0x00, 0xc2, 0x20, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x40, 0x02, 0x03, + 0x01, 0x00, 0x04, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x04, 0x8e, + 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0a, 0x00, 0x06, 0x40, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x09, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x46, 0x69, 0x6c, 0x65, 0x00, + 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, + 0x00, 0x03, 0x40, 0x73, 0x65, 0x00, 0x00, 0x0c, 0x40, 0x66, 0x6c, 0x61, + 0x73, 0x68, 0x5f, 0x73, 0x63, 0x6f, 0x70, 0x65, 0x00, 0x00, 0x05, 0x43, + 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x0c, 0x40, 0x66, 0x6c, 0x61, 0x73, + 0x68, 0x5f, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x00, 0x00, 0x0f, 0x40, 0x66, + 0x6c, 0x61, 0x73, 0x68, 0x5f, 0x64, 0x75, 0x72, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x00, 0x00, 0x0a, 0x40, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x00, 0x00, 0xf4, 0x00, 0x02, 0x00, 0x04, 0x00, + 0x00, 0x00, 0x00, 0x00, 0x16, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x8e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x02, 0x0e, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x02, 0x8e, + 0x01, 0x00, 0x04, 0x11, 0x01, 0x00, 0x03, 0x93, 0x01, 0x00, 0x03, 0x13, + 0x01, 0x02, 0x40, 0x20, 0x01, 0x00, 0x80, 0xb7, 0x01, 0x00, 0x05, 0x0e, + 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x05, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0c, 0x00, + 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0f, 0x40, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, + 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0e, 0x40, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, 0x68, 0x75, 0x65, 0x00, + 0x00, 0x09, 0x40, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x00, 0x0a, 0x40, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x6d, 0x61, 0x78, + 0x00, 0x00, 0x05, 0x46, 0x72, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x09, 0x41, + 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x03, 0x52, + 0x50, 0x47, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x07, 0x40, + 0x66, 0x72, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, 0x08, 0x40, 0x74, 0x69, + 0x6d, 0x69, 0x6e, 0x67, 0x73, 0x00, 0x00, 0x00, 0x01, 0xe8, 0x00, 0x01, + 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x37, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x13, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0c, 0x74, 0x69, 0x6c, 0x65, 0x73, 0x65, 0x74, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0e, 0x61, 0x75, 0x74, 0x6f, 0x74, 0x69, + 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, 0x0d, 0x70, + 0x61, 0x6e, 0x6f, 0x72, 0x61, 0x6d, 0x61, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x0c, 0x70, 0x61, 0x6e, 0x6f, 0x72, 0x61, 0x6d, 0x61, 0x5f, + 0x68, 0x75, 0x65, 0x00, 0x00, 0x08, 0x66, 0x6f, 0x67, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x00, 0x00, 0x07, 0x66, 0x6f, 0x67, 0x5f, 0x68, 0x75, 0x65, + 0x00, 0x00, 0x0b, 0x66, 0x6f, 0x67, 0x5f, 0x6f, 0x70, 0x61, 0x63, 0x69, + 0x74, 0x79, 0x00, 0x00, 0x0e, 0x66, 0x6f, 0x67, 0x5f, 0x62, 0x6c, 0x65, + 0x6e, 0x64, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x00, 0x00, 0x08, 0x66, 0x6f, + 0x67, 0x5f, 0x7a, 0x6f, 0x6f, 0x6d, 0x00, 0x00, 0x06, 0x66, 0x6f, 0x67, + 0x5f, 0x73, 0x78, 0x00, 0x00, 0x06, 0x66, 0x6f, 0x67, 0x5f, 0x73, 0x79, + 0x00, 0x00, 0x0f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x62, 0x61, 0x63, + 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x08, 0x70, 0x61, 0x73, + 0x73, 0x61, 0x67, 0x65, 0x73, 0x00, 0x00, 0x0a, 0x70, 0x72, 0x69, 0x6f, + 0x72, 0x69, 0x74, 0x69, 0x65, 0x73, 0x00, 0x00, 0x0c, 0x74, 0x65, 0x72, + 0x72, 0x61, 0x69, 0x6e, 0x5f, 0x74, 0x61, 0x67, 0x73, 0x00, 0x00, 0x00, + 0x01, 0xe3, 0x00, 0x02, 0x00, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x32, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x80, 0xb7, + 0x01, 0xc0, 0x03, 0x03, 0x01, 0x00, 0xc0, 0xb0, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x03, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x04, 0x0e, 0x01, 0x40, 0x1f, 0x83, + 0x01, 0x00, 0x04, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x05, 0x0e, + 0x01, 0x40, 0x63, 0x83, 0x01, 0x00, 0x05, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x06, 0x0e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x06, 0x8e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x07, 0x0e, 0x01, 0x00, 0x07, 0x91, + 0x01, 0xc0, 0xbf, 0x83, 0x01, 0x04, 0x00, 0xa0, 0x01, 0x00, 0x08, 0x8e, + 0x01, 0x00, 0x07, 0x91, 0x01, 0xc0, 0xbf, 0x83, 0x01, 0x04, 0x00, 0xa0, + 0x01, 0x00, 0x09, 0x0e, 0x01, 0x40, 0x02, 0x03, 0x01, 0x80, 0x09, 0x0d, + 0x02, 0x3f, 0xff, 0x83, 0x02, 0x80, 0x80, 0x01, 0x01, 0x84, 0xc1, 0x20, + 0x01, 0x00, 0x07, 0x91, 0x01, 0xc0, 0xbf, 0x83, 0x01, 0x04, 0x00, 0xa0, + 0x01, 0x00, 0x0a, 0x0e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x15, 0x00, 0x03, 0x40, 0x69, 0x64, + 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x40, + 0x74, 0x69, 0x6c, 0x65, 0x73, 0x65, 0x74, 0x5f, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x01, 0x2a, 0x00, 0x00, 0x0f, 0x40, 0x61, 0x75, 0x74, 0x6f, + 0x74, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x73, 0x00, 0x00, + 0x0e, 0x40, 0x70, 0x61, 0x6e, 0x6f, 0x72, 0x61, 0x6d, 0x61, 0x5f, 0x6e, + 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x40, 0x70, 0x61, 0x6e, 0x6f, 0x72, + 0x61, 0x6d, 0x61, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x09, 0x40, 0x66, + 0x6f, 0x67, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x08, 0x40, 0x66, + 0x6f, 0x67, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x0c, 0x40, 0x66, 0x6f, + 0x67, 0x5f, 0x6f, 0x70, 0x61, 0x63, 0x69, 0x74, 0x79, 0x00, 0x00, 0x0f, + 0x40, 0x66, 0x6f, 0x67, 0x5f, 0x62, 0x6c, 0x65, 0x6e, 0x64, 0x5f, 0x74, + 0x79, 0x70, 0x65, 0x00, 0x00, 0x09, 0x40, 0x66, 0x6f, 0x67, 0x5f, 0x7a, + 0x6f, 0x6f, 0x6d, 0x00, 0x00, 0x07, 0x40, 0x66, 0x6f, 0x67, 0x5f, 0x73, + 0x78, 0x00, 0x00, 0x07, 0x40, 0x66, 0x6f, 0x67, 0x5f, 0x73, 0x79, 0x00, + 0x00, 0x10, 0x40, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x62, 0x61, 0x63, + 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x05, 0x54, 0x61, 0x62, + 0x6c, 0x65, 0x00, 0x00, 0x03, 0x6e, 0x65, 0x77, 0x00, 0x00, 0x09, 0x40, + 0x70, 0x61, 0x73, 0x73, 0x61, 0x67, 0x65, 0x73, 0x00, 0x00, 0x0b, 0x40, + 0x70, 0x72, 0x69, 0x6f, 0x72, 0x69, 0x74, 0x69, 0x65, 0x73, 0x00, 0x00, + 0x03, 0x5b, 0x5d, 0x3d, 0x00, 0x00, 0x0d, 0x40, 0x74, 0x65, 0x72, 0x72, + 0x61, 0x69, 0x6e, 0x5f, 0x74, 0x61, 0x67, 0x73, 0x00, 0x00, 0x00, 0x00, + 0xac, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x13, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x07, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x02, 0x69, 0x64, 0x00, 0x00, 0x04, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x07, 0x74, 0x72, 0x69, 0x67, 0x67, + 0x65, 0x72, 0x00, 0x00, 0x09, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, + 0x69, 0x64, 0x00, 0x00, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x00, 0x00, 0x00, + 0x00, 0xa2, 0x00, 0x02, 0x00, 0x04, 0x00, 0x00, 0x00, 0x00, 0x00, 0x0f, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x01, 0x8e, + 0x01, 0x00, 0x02, 0x91, 0x01, 0x00, 0x02, 0x13, 0x01, 0x01, 0x80, 0x20, + 0x01, 0x00, 0x80, 0xb7, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, + 0x03, 0x40, 0x69, 0x64, 0x00, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, + 0x00, 0x00, 0x08, 0x40, 0x74, 0x72, 0x69, 0x67, 0x67, 0x65, 0x72, 0x00, + 0x00, 0x0a, 0x40, 0x73, 0x77, 0x69, 0x74, 0x63, 0x68, 0x5f, 0x69, 0x64, + 0x00, 0x00, 0x0c, 0x45, 0x76, 0x65, 0x6e, 0x74, 0x43, 0x6f, 0x6d, 0x6d, + 0x61, 0x6e, 0x64, 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, + 0x6e, 0x65, 0x77, 0x00, 0x00, 0x05, 0x40, 0x6c, 0x69, 0x73, 0x74, 0x00, + 0x00, 0x00, 0x04, 0x05, 0x00, 0x01, 0x00, 0x04, 0x00, 0x03, 0x00, 0x00, + 0x00, 0x75, 0x00, 0x00, 0x00, 0x80, 0x00, 0x05, 0x01, 0x00, 0x00, 0x05, + 0x00, 0x80, 0x00, 0x43, 0x00, 0x80, 0x00, 0x45, 0x00, 0x80, 0x00, 0x05, + 0x01, 0x00, 0x00, 0x05, 0x00, 0x80, 0x40, 0x43, 0x00, 0x80, 0x00, 0xc5, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x04, 0xc0, 0x00, 0x80, 0x80, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0b, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0b, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0c, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0c, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0d, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0d, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0e, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0e, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0f, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0f, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x10, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x10, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x11, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x11, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x12, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x12, 0x84, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x13, 0x04, 0x00, 0x80, 0xc0, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x27, + 0x00, 0x05, 0x57, 0x6f, 0x72, 0x64, 0x73, 0x00, 0x00, 0x0b, 0x54, 0x65, + 0x73, 0x74, 0x42, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x00, 0x00, 0x0a, + 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, + 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, + 0x6f, 0x72, 0x00, 0x00, 0x0c, 0x6d, 0x61, 0x67, 0x69, 0x63, 0x5f, 0x6e, + 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x00, 0x0d, 0x70, 0x61, 0x72, 0x74, + 0x79, 0x5f, 0x6d, 0x65, 0x6d, 0x62, 0x65, 0x72, 0x73, 0x00, 0x00, 0x08, + 0x65, 0x6c, 0x65, 0x6d, 0x65, 0x6e, 0x74, 0x73, 0x00, 0x00, 0x08, 0x73, + 0x77, 0x69, 0x74, 0x63, 0x68, 0x65, 0x73, 0x00, 0x00, 0x09, 0x76, 0x61, + 0x72, 0x69, 0x61, 0x62, 0x6c, 0x65, 0x73, 0x00, 0x00, 0x0f, 0x77, 0x69, + 0x6e, 0x64, 0x6f, 0x77, 0x73, 0x6b, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x00, 0x00, 0x0a, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x67, 0x61, 0x6d, 0x65, 0x6f, 0x76, 0x65, + 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x11, 0x62, 0x61, 0x74, + 0x74, 0x6c, 0x65, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x69, 0x74, 0x69, + 0x6f, 0x6e, 0x00, 0x00, 0x09, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x5f, 0x62, + 0x67, 0x6d, 0x00, 0x00, 0x0a, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x5f, + 0x62, 0x67, 0x6d, 0x00, 0x00, 0x0d, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, + 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x6d, 0x65, 0x00, 0x00, 0x0b, 0x67, 0x61, + 0x6d, 0x65, 0x6f, 0x76, 0x65, 0x72, 0x5f, 0x6d, 0x65, 0x00, 0x00, 0x09, + 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0b, + 0x64, 0x65, 0x63, 0x69, 0x73, 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x00, + 0x00, 0x09, 0x63, 0x61, 0x6e, 0x63, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x00, + 0x00, 0x09, 0x62, 0x75, 0x7a, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x00, + 0x00, 0x08, 0x65, 0x71, 0x75, 0x69, 0x70, 0x5f, 0x73, 0x65, 0x00, 0x00, + 0x07, 0x73, 0x68, 0x6f, 0x70, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x07, 0x73, + 0x61, 0x76, 0x65, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x07, 0x6c, 0x6f, 0x61, + 0x64, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0f, 0x62, 0x61, 0x74, 0x74, 0x6c, + 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x65, 0x00, 0x00, + 0x09, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x73, 0x65, 0x00, 0x00, + 0x11, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, + 0x70, 0x73, 0x65, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x11, 0x65, 0x6e, 0x65, + 0x6d, 0x79, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x5f, + 0x73, 0x65, 0x00, 0x00, 0x05, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x00, 0x00, + 0x0d, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, + 0x72, 0x73, 0x00, 0x00, 0x0d, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x74, 0x72, + 0x6f, 0x6f, 0x70, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0c, 0x73, 0x74, 0x61, + 0x72, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x07, + 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x78, 0x00, 0x00, 0x07, 0x73, 0x74, + 0x61, 0x72, 0x74, 0x5f, 0x79, 0x00, 0x00, 0x0f, 0x62, 0x61, 0x74, 0x74, + 0x6c, 0x65, 0x62, 0x61, 0x63, 0x6b, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x0c, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x6e, 0x61, + 0x6d, 0x65, 0x00, 0x00, 0x0b, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, + 0x5f, 0x68, 0x75, 0x65, 0x00, 0x00, 0x0b, 0x65, 0x64, 0x69, 0x74, 0x5f, + 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x00, 0x01, 0xc9, 0x00, + 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x40, 0x00, 0x00, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x05, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x06, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x07, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x08, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x09, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x0a, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x16, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x04, 0x67, 0x6f, 0x6c, 0x64, 0x00, + 0x00, 0x02, 0x68, 0x70, 0x00, 0x00, 0x02, 0x73, 0x70, 0x00, 0x00, 0x03, + 0x73, 0x74, 0x72, 0x00, 0x00, 0x03, 0x64, 0x65, 0x78, 0x00, 0x00, 0x03, + 0x61, 0x67, 0x69, 0x00, 0x00, 0x03, 0x69, 0x6e, 0x74, 0x00, 0x00, 0x03, + 0x61, 0x74, 0x6b, 0x00, 0x00, 0x04, 0x70, 0x64, 0x65, 0x66, 0x00, 0x00, + 0x04, 0x6d, 0x64, 0x65, 0x66, 0x00, 0x00, 0x06, 0x77, 0x65, 0x61, 0x70, + 0x6f, 0x6e, 0x00, 0x00, 0x06, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x00, + 0x00, 0x06, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x32, 0x00, 0x00, 0x06, 0x61, + 0x72, 0x6d, 0x6f, 0x72, 0x33, 0x00, 0x00, 0x06, 0x61, 0x72, 0x6d, 0x6f, + 0x72, 0x34, 0x00, 0x00, 0x06, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x00, + 0x00, 0x05, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x00, 0x00, 0x05, 0x67, 0x75, + 0x61, 0x72, 0x64, 0x00, 0x00, 0x04, 0x69, 0x74, 0x65, 0x6d, 0x00, 0x00, + 0x05, 0x65, 0x71, 0x75, 0x69, 0x70, 0x00, 0x00, 0x00, 0x01, 0x6b, 0x00, + 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, 0x00, 0x2a, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x26, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x01, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x01, 0x8e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x04, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x04, 0x8e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x05, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x05, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x06, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x06, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x07, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x07, 0x8e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x08, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x08, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x09, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x09, 0x8e, 0x01, 0x00, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x14, 0x00, + 0x05, 0x40, 0x67, 0x6f, 0x6c, 0x64, 0x00, 0x00, 0x03, 0x40, 0x68, 0x70, + 0x00, 0x00, 0x03, 0x40, 0x73, 0x70, 0x00, 0x00, 0x04, 0x40, 0x73, 0x74, + 0x72, 0x00, 0x00, 0x04, 0x40, 0x64, 0x65, 0x78, 0x00, 0x00, 0x04, 0x40, + 0x61, 0x67, 0x69, 0x00, 0x00, 0x04, 0x40, 0x69, 0x6e, 0x74, 0x00, 0x00, + 0x04, 0x40, 0x61, 0x74, 0x6b, 0x00, 0x00, 0x05, 0x40, 0x70, 0x64, 0x65, + 0x66, 0x00, 0x00, 0x05, 0x40, 0x6d, 0x64, 0x65, 0x66, 0x00, 0x00, 0x07, + 0x40, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x00, 0x00, 0x07, 0x40, 0x61, + 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x00, 0x00, 0x07, 0x40, 0x61, 0x72, 0x6d, + 0x6f, 0x72, 0x32, 0x00, 0x00, 0x07, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, + 0x33, 0x00, 0x00, 0x07, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x34, 0x00, + 0x00, 0x07, 0x40, 0x61, 0x74, 0x74, 0x61, 0x63, 0x6b, 0x00, 0x00, 0x06, + 0x40, 0x73, 0x6b, 0x69, 0x6c, 0x6c, 0x00, 0x00, 0x06, 0x40, 0x67, 0x75, + 0x61, 0x72, 0x64, 0x00, 0x00, 0x05, 0x40, 0x69, 0x74, 0x65, 0x6d, 0x00, + 0x00, 0x06, 0x40, 0x65, 0x71, 0x75, 0x69, 0x70, 0x00, 0x00, 0x00, 0x00, + 0xea, 0x00, 0x01, 0x00, 0x04, 0x00, 0x01, 0x00, 0x00, 0x00, 0x19, 0x00, + 0x00, 0x80, 0x00, 0x48, 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x02, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x03, 0x84, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x80, 0x00, 0x06, 0x01, 0x00, 0x04, 0x04, 0x00, 0x80, 0x40, 0xa0, + 0x00, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x09, + 0x00, 0x0a, 0x69, 0x6e, 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, + 0x00, 0x00, 0x0d, 0x61, 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, + 0x73, 0x73, 0x6f, 0x72, 0x00, 0x00, 0x08, 0x61, 0x63, 0x74, 0x6f, 0x72, + 0x5f, 0x69, 0x64, 0x00, 0x00, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x00, + 0x00, 0x09, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x32, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x33, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x09, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x34, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x00, 0x00, 0xb0, 0x00, 0x02, 0x00, 0x03, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x10, 0x00, 0x00, 0x00, 0x00, 0x00, 0x26, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x00, 0x0e, 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x00, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x01, 0x0e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x02, 0x8e, 0x01, 0x3f, 0xff, 0x83, + 0x01, 0x00, 0x03, 0x0e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x00, 0x07, 0x00, 0x09, 0x40, 0x61, 0x63, 0x74, 0x6f, 0x72, + 0x5f, 0x69, 0x64, 0x00, 0x00, 0x06, 0x40, 0x6c, 0x65, 0x76, 0x65, 0x6c, + 0x00, 0x00, 0x0a, 0x40, 0x77, 0x65, 0x61, 0x70, 0x6f, 0x6e, 0x5f, 0x69, + 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x31, 0x5f, + 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, 0x32, + 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, 0x6f, 0x72, + 0x33, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0a, 0x40, 0x61, 0x72, 0x6d, 0x6f, + 0x72, 0x34, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x00, 0x04, 0x75, 0x00, 0x02, + 0x00, 0x06, 0x00, 0x00, 0x00, 0x00, 0x00, 0x8a, 0x00, 0x00, 0x00, 0x26, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x00, 0x0e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x80, 0xb7, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x00, 0x00, 0x05, + 0x01, 0x80, 0x00, 0x3d, 0x01, 0x00, 0x81, 0x37, 0x01, 0x00, 0x01, 0x0e, + 0x01, 0x00, 0x00, 0x05, 0x01, 0x80, 0x00, 0x3d, 0x01, 0x00, 0x81, 0x37, + 0x01, 0x00, 0x01, 0x8e, 0x01, 0x00, 0x00, 0x05, 0x01, 0x80, 0x00, 0x3d, + 0x01, 0x00, 0x81, 0x37, 0x01, 0x00, 0x02, 0x0e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x02, 0x8e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x03, 0x0e, + 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x03, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x04, 0x0e, 0x01, 0x00, 0x05, 0x11, 0x01, 0x00, 0x04, 0x93, + 0x01, 0x02, 0xc0, 0x20, 0x01, 0x00, 0x06, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x02, 0xc0, 0x20, 0x01, 0x00, 0x06, 0x8e, + 0x01, 0x00, 0x05, 0x11, 0x01, 0x00, 0x04, 0x93, 0x01, 0x02, 0xc0, 0x20, + 0x01, 0x00, 0x07, 0x0e, 0x01, 0x00, 0x05, 0x11, 0x01, 0x00, 0x04, 0x93, + 0x01, 0x02, 0xc0, 0x20, 0x01, 0x00, 0x07, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x08, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x08, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x09, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x09, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0a, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0a, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0b, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0b, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0c, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0c, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0d, 0x0e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x04, 0x93, 0x01, 0x80, 0x00, 0x3d, 0x02, 0x40, 0x27, 0x83, + 0x01, 0x02, 0xc1, 0x20, 0x01, 0x00, 0x0d, 0x8e, 0x01, 0x00, 0x05, 0x11, + 0x01, 0x00, 0x0e, 0x93, 0x01, 0x00, 0x0e, 0x13, 0x01, 0x02, 0xc0, 0x20, + 0x01, 0x00, 0x0f, 0x0e, 0x01, 0x00, 0x80, 0x37, 0x01, 0x00, 0x0f, 0x8e, + 0x01, 0x40, 0x00, 0x03, 0x01, 0x00, 0x10, 0x0e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x10, 0x8e, 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x11, 0x0e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x11, 0x8e, 0x01, 0x00, 0x00, 0x3d, + 0x01, 0x00, 0x12, 0x0e, 0x01, 0x00, 0x00, 0x3d, 0x01, 0x00, 0x12, 0x8e, + 0x01, 0x3f, 0xff, 0x83, 0x01, 0x00, 0x13, 0x0e, 0x01, 0x40, 0x00, 0x03, + 0x01, 0x00, 0x13, 0x8e, 0x01, 0x00, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x28, 0x00, 0x0d, 0x40, 0x6d, 0x61, + 0x67, 0x69, 0x63, 0x5f, 0x6e, 0x75, 0x6d, 0x62, 0x65, 0x72, 0x00, 0x00, + 0x0e, 0x40, 0x70, 0x61, 0x72, 0x74, 0x79, 0x5f, 0x6d, 0x65, 0x6d, 0x62, + 0x65, 0x72, 0x73, 0x00, 0x00, 0x09, 0x40, 0x65, 0x6c, 0x65, 0x6d, 0x65, + 0x6e, 0x74, 0x73, 0x00, 0x00, 0x09, 0x40, 0x73, 0x77, 0x69, 0x74, 0x63, + 0x68, 0x65, 0x73, 0x00, 0x00, 0x0a, 0x40, 0x76, 0x61, 0x72, 0x69, 0x61, + 0x62, 0x6c, 0x65, 0x73, 0x00, 0x00, 0x10, 0x40, 0x77, 0x69, 0x6e, 0x64, + 0x6f, 0x77, 0x73, 0x6b, 0x69, 0x6e, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, + 0x00, 0x0b, 0x40, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, + 0x65, 0x00, 0x00, 0x0e, 0x40, 0x67, 0x61, 0x6d, 0x65, 0x6f, 0x76, 0x65, + 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x12, 0x40, 0x62, 0x61, + 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x74, 0x72, 0x61, 0x6e, 0x73, 0x69, 0x74, + 0x69, 0x6f, 0x6e, 0x00, 0x00, 0x09, 0x41, 0x75, 0x64, 0x69, 0x6f, 0x46, + 0x69, 0x6c, 0x65, 0x00, 0x00, 0x03, 0x52, 0x50, 0x47, 0x00, 0x00, 0x03, + 0x6e, 0x65, 0x77, 0x00, 0x00, 0x0a, 0x40, 0x74, 0x69, 0x74, 0x6c, 0x65, + 0x5f, 0x62, 0x67, 0x6d, 0x00, 0x00, 0x0b, 0x40, 0x62, 0x61, 0x74, 0x74, + 0x6c, 0x65, 0x5f, 0x62, 0x67, 0x6d, 0x00, 0x00, 0x0e, 0x40, 0x62, 0x61, + 0x74, 0x74, 0x6c, 0x65, 0x5f, 0x65, 0x6e, 0x64, 0x5f, 0x6d, 0x65, 0x00, + 0x00, 0x0c, 0x40, 0x67, 0x61, 0x6d, 0x65, 0x6f, 0x76, 0x65, 0x72, 0x5f, + 0x6d, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x63, 0x75, 0x72, 0x73, 0x6f, 0x72, + 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0c, 0x40, 0x64, 0x65, 0x63, 0x69, 0x73, + 0x69, 0x6f, 0x6e, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x63, 0x61, + 0x6e, 0x63, 0x65, 0x6c, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x0a, 0x40, 0x62, + 0x75, 0x7a, 0x7a, 0x65, 0x72, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x09, 0x40, + 0x65, 0x71, 0x75, 0x69, 0x70, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x08, 0x40, + 0x73, 0x68, 0x6f, 0x70, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x08, 0x40, 0x73, + 0x61, 0x76, 0x65, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x08, 0x40, 0x6c, 0x6f, + 0x61, 0x64, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x10, 0x40, 0x62, 0x61, 0x74, + 0x74, 0x6c, 0x65, 0x5f, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x73, 0x65, + 0x00, 0x00, 0x0a, 0x40, 0x65, 0x73, 0x63, 0x61, 0x70, 0x65, 0x5f, 0x73, + 0x65, 0x00, 0x00, 0x12, 0x40, 0x61, 0x63, 0x74, 0x6f, 0x72, 0x5f, 0x63, + 0x6f, 0x6c, 0x6c, 0x61, 0x70, 0x73, 0x65, 0x5f, 0x73, 0x65, 0x00, 0x00, + 0x12, 0x40, 0x65, 0x6e, 0x65, 0x6d, 0x79, 0x5f, 0x63, 0x6f, 0x6c, 0x6c, + 0x61, 0x70, 0x73, 0x65, 0x5f, 0x73, 0x65, 0x00, 0x00, 0x05, 0x57, 0x6f, + 0x72, 0x64, 0x73, 0x00, 0x00, 0x06, 0x53, 0x79, 0x73, 0x74, 0x65, 0x6d, + 0x00, 0x00, 0x06, 0x40, 0x77, 0x6f, 0x72, 0x64, 0x73, 0x00, 0x00, 0x0e, + 0x40, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, + 0x72, 0x73, 0x00, 0x00, 0x0e, 0x40, 0x74, 0x65, 0x73, 0x74, 0x5f, 0x74, + 0x72, 0x6f, 0x6f, 0x70, 0x5f, 0x69, 0x64, 0x00, 0x00, 0x0d, 0x40, 0x73, + 0x74, 0x61, 0x72, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x5f, 0x69, 0x64, 0x00, + 0x00, 0x08, 0x40, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x78, 0x00, 0x00, + 0x08, 0x40, 0x73, 0x74, 0x61, 0x72, 0x74, 0x5f, 0x79, 0x00, 0x00, 0x10, + 0x40, 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x62, 0x61, 0x63, 0x6b, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0d, 0x40, 0x62, 0x61, 0x74, 0x74, + 0x6c, 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x0c, 0x40, + 0x62, 0x61, 0x74, 0x74, 0x6c, 0x65, 0x72, 0x5f, 0x68, 0x75, 0x65, 0x00, + 0x00, 0x0c, 0x40, 0x65, 0x64, 0x69, 0x74, 0x5f, 0x6d, 0x61, 0x70, 0x5f, + 0x69, 0x64, 0x00, 0x00, 0x00, 0x00, 0x83, 0x00, 0x01, 0x00, 0x04, 0x00, + 0x01, 0x00, 0x00, 0x00, 0x0d, 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x48, + 0x01, 0x00, 0x00, 0xc0, 0x00, 0x80, 0x00, 0x46, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x01, 0x84, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x06, + 0x01, 0x00, 0x02, 0x04, 0x00, 0x80, 0x40, 0xa0, 0x00, 0x80, 0x00, 0x29, + 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x05, 0x00, 0x0a, 0x69, 0x6e, + 0x69, 0x74, 0x69, 0x61, 0x6c, 0x69, 0x7a, 0x65, 0x00, 0x00, 0x0d, 0x61, + 0x74, 0x74, 0x72, 0x5f, 0x61, 0x63, 0x63, 0x65, 0x73, 0x73, 0x6f, 0x72, + 0x00, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, 0x06, 0x76, 0x6f, + 0x6c, 0x75, 0x6d, 0x65, 0x00, 0x00, 0x05, 0x70, 0x69, 0x74, 0x63, 0x68, + 0x00, 0x00, 0x00, 0x00, 0x68, 0x00, 0x05, 0x00, 0x06, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x0c, 0x00, 0x00, 0x30, 0x00, 0x26, 0x00, 0x40, 0x01, 0x97, + 0x00, 0x40, 0x01, 0x97, 0x00, 0x40, 0x01, 0x97, 0x00, 0x40, 0x01, 0x97, + 0x00, 0x80, 0x00, 0x3d, 0x01, 0x40, 0x31, 0x83, 0x01, 0xc0, 0x31, 0x83, + 0x00, 0x80, 0x00, 0x0e, 0x01, 0x00, 0x00, 0x8e, 0x01, 0x80, 0x01, 0x0e, + 0x01, 0x80, 0x00, 0x29, 0x00, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, + 0x00, 0x00, 0x03, 0x00, 0x05, 0x40, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x00, + 0x07, 0x40, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x00, 0x00, 0x06, 0x40, + 0x70, 0x69, 0x74, 0x63, 0x68, 0x00, 0x4c, 0x56, 0x41, 0x52, 0x00, 0x00, + 0x04, 0x4c, 0x00, 0x00, 0x00, 0x2c, 0x00, 0x0b, 0x66, 0x6f, 0x6c, 0x64, + 0x65, 0x72, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x08, 0x66, 0x69, 0x6c, + 0x65, 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x03, 0x68, 0x75, 0x65, 0x00, 0x04, + 0x70, 0x61, 0x74, 0x68, 0x00, 0x03, 0x6b, 0x65, 0x79, 0x00, 0x07, 0x74, + 0x69, 0x6c, 0x65, 0x5f, 0x69, 0x64, 0x00, 0x01, 0x78, 0x00, 0x01, 0x79, + 0x00, 0x04, 0x72, 0x65, 0x63, 0x74, 0x00, 0x08, 0x76, 0x69, 0x65, 0x77, + 0x70, 0x6f, 0x72, 0x74, 0x00, 0x05, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x00, + 0x08, 0x63, 0x72, 0x69, 0x74, 0x69, 0x63, 0x61, 0x6c, 0x00, 0x0d, 0x64, + 0x61, 0x6d, 0x61, 0x67, 0x65, 0x5f, 0x73, 0x74, 0x72, 0x69, 0x6e, 0x67, + 0x00, 0x06, 0x62, 0x69, 0x74, 0x6d, 0x61, 0x70, 0x00, 0x09, 0x61, 0x6e, + 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x00, 0x03, 0x68, 0x69, 0x74, + 0x00, 0x0e, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x5f, + 0x6e, 0x61, 0x6d, 0x65, 0x00, 0x0d, 0x61, 0x6e, 0x69, 0x6d, 0x61, 0x74, + 0x69, 0x6f, 0x6e, 0x5f, 0x68, 0x75, 0x65, 0x00, 0x01, 0x69, 0x00, 0x06, + 0x73, 0x70, 0x72, 0x69, 0x74, 0x65, 0x00, 0x05, 0x61, 0x6c, 0x70, 0x68, + 0x61, 0x00, 0x0b, 0x66, 0x72, 0x61, 0x6d, 0x65, 0x5f, 0x69, 0x6e, 0x64, + 0x65, 0x78, 0x00, 0x09, 0x63, 0x65, 0x6c, 0x6c, 0x5f, 0x64, 0x61, 0x74, + 0x61, 0x00, 0x08, 0x70, 0x6f, 0x73, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x00, + 0x06, 0x74, 0x69, 0x6d, 0x69, 0x6e, 0x67, 0x00, 0x07, 0x73, 0x70, 0x72, + 0x69, 0x74, 0x65, 0x73, 0x00, 0x07, 0x70, 0x61, 0x74, 0x74, 0x65, 0x72, + 0x6e, 0x00, 0x02, 0x73, 0x65, 0x00, 0x02, 0x73, 0x78, 0x00, 0x02, 0x73, + 0x79, 0x00, 0x06, 0x63, 0x6f, 0x6c, 0x6f, 0x72, 0x31, 0x00, 0x06, 0x63, + 0x6f, 0x6c, 0x6f, 0x72, 0x32, 0x00, 0x04, 0x74, 0x79, 0x70, 0x65, 0x00, + 0x02, 0x6f, 0x78, 0x00, 0x02, 0x6f, 0x79, 0x00, 0x03, 0x6d, 0x61, 0x78, + 0x00, 0x05, 0x77, 0x69, 0x64, 0x74, 0x68, 0x00, 0x06, 0x68, 0x65, 0x69, + 0x67, 0x68, 0x74, 0x00, 0x04, 0x63, 0x6f, 0x64, 0x65, 0x00, 0x06, 0x69, + 0x6e, 0x64, 0x65, 0x6e, 0x74, 0x00, 0x0a, 0x70, 0x61, 0x72, 0x61, 0x6d, + 0x65, 0x74, 0x65, 0x72, 0x73, 0x00, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x00, + 0x06, 0x76, 0x6f, 0x6c, 0x75, 0x6d, 0x65, 0x00, 0x05, 0x70, 0x69, 0x74, + 0x63, 0x68, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, + 0x00, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x03, 0x00, 0x05, 0x00, 0x04, + 0x00, 0x06, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x02, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x01, 0x00, 0x02, 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, + 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x01, 0x00, 0x01, 0x00, 0x05, + 0x00, 0x02, 0x00, 0x02, 0x00, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x04, + 0x00, 0x05, 0x00, 0x06, 0x00, 0x06, 0x00, 0x07, 0x00, 0x07, 0x00, 0x08, + 0x00, 0x08, 0xff, 0xff, 0x00, 0x00, 0x00, 0x09, 0x00, 0x01, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x0a, + 0x00, 0x01, 0x00, 0x0b, 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x0c, + 0x00, 0x04, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x0e, 0x00, 0x01, 0x00, 0x0f, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x10, 0x00, 0x04, 0x00, 0x11, + 0x00, 0x05, 0x00, 0x0d, 0x00, 0x06, 0x00, 0x12, 0x00, 0x07, 0x00, 0x13, + 0x00, 0x08, 0x00, 0x0e, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x10, + 0x00, 0x03, 0x00, 0x11, 0x00, 0x04, 0x00, 0x0d, 0x00, 0x05, 0x00, 0x12, + 0x00, 0x06, 0x00, 0x13, 0x00, 0x07, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x14, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x15, 0x00, 0x02, 0x00, 0x16, + 0x00, 0x03, 0x00, 0x17, 0x00, 0x04, 0x00, 0x18, 0x00, 0x05, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x15, 0x00, 0x02, 0x00, 0x16, 0x00, 0x03, 0x00, 0x17, + 0x00, 0x04, 0x00, 0x18, 0x00, 0x05, 0x00, 0x19, 0x00, 0x01, 0x00, 0x16, + 0x00, 0x02, 0x00, 0x17, 0x00, 0x03, 0xff, 0xff, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x05, 0x00, 0x13, 0x00, 0x06, 0x00, 0x1a, 0x00, 0x07, 0x00, 0x18, + 0x00, 0x01, 0x00, 0x0f, 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x1b, + 0x00, 0x04, 0x00, 0x06, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x1c, + 0x00, 0x03, 0x00, 0x12, 0x00, 0x04, 0x00, 0x07, 0x00, 0x01, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x1d, 0x00, 0x03, 0x00, 0x12, 0x00, 0x04, 0x00, 0x09, + 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x1e, 0x00, 0x03, 0x00, 0x1f, + 0x00, 0x04, 0x00, 0x12, 0x00, 0x05, 0x00, 0x13, 0x00, 0x06, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x13, 0x00, 0x02, 0x00, 0x20, 0x00, 0x01, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x0d, 0x00, 0x03, 0x00, 0x12, 0x00, 0x04, 0x00, 0x13, + 0x00, 0x05, 0x00, 0x21, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x03, 0x00, 0x22, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x13, + 0x00, 0x03, 0x00, 0x23, 0x00, 0x01, 0xff, 0xff, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x03, 0x00, 0x13, 0x00, 0x04, 0xff, 0xff, 0x00, 0x00, 0x00, 0x12, + 0x00, 0x02, 0x00, 0x13, 0x00, 0x03, 0x00, 0x06, 0x00, 0x04, 0x00, 0x07, + 0x00, 0x05, 0x00, 0x24, 0x00, 0x01, 0x00, 0x25, 0x00, 0x02, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x06, 0x00, 0x01, 0x00, 0x07, + 0x00, 0x02, 0xff, 0xff, 0x00, 0x00, 0x00, 0x26, 0x00, 0x01, 0x00, 0x27, + 0x00, 0x02, 0x00, 0x28, 0x00, 0x03, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0x00, 0x26, 0x00, 0x01, 0x00, 0x28, 0x00, 0x02, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x12, 0x00, 0x02, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, + 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0xff, 0xff, 0x00, 0x00, 0x00, 0x29, + 0x00, 0x01, 0x00, 0x2a, 0x00, 0x02, 0x00, 0x2b, 0x00, 0x03, 0xff, 0xff, + 0x00, 0x00, 0x45, 0x4e, 0x44, 0x00, 0x00, 0x00, 0x00, 0x08 +}; +unsigned int rpg_mrb_len = 39262; diff --git a/binding-mruby/mrb-ext/file-helper.cpp b/binding-mruby/mrb-ext/file-helper.cpp new file mode 100644 index 0000000..8caf829 --- /dev/null +++ b/binding-mruby/mrb-ext/file-helper.cpp @@ -0,0 +1,43 @@ + +#include "file-helper.h" +#include + +char* SDL_rw_file_helper::read() { + SDL_RWops *rw = SDL_RWFromFile(filename, "rb"); + if (rw == NULL) return NULL; + + Sint64 res_size = SDL_RWsize(rw); + char* res = (char*)malloc(res_size + 1); + + Sint64 nb_read_total = 0, nb_read = 1; + char* buf = res; + while (nb_read_total < res_size && nb_read != 0) { + nb_read = SDL_RWread(rw, buf, 1, (res_size - nb_read_total)); + nb_read_total += nb_read; + buf += nb_read; + } + SDL_RWclose(rw); + if (nb_read_total != res_size) { + free(res); + return NULL; + } + + res[nb_read_total] = '\0'; + length = nb_read_total; + return res; +} + +bool SDL_rw_file_helper::write(char * data) { + SDL_RWops *rw = SDL_RWFromFile(filename, "w"); + if(rw != NULL) { + size_t len = SDL_strlen(data); + if (SDL_RWwrite(rw, data, 1, len) != len) { + return false; + } else { + return true; + } + SDL_RWclose(rw); + return true; + } + return false; +} diff --git a/binding-mruby/mrb-ext/file-helper.h b/binding-mruby/mrb-ext/file-helper.h new file mode 100644 index 0000000..4d55dae --- /dev/null +++ b/binding-mruby/mrb-ext/file-helper.h @@ -0,0 +1,6 @@ +struct SDL_rw_file_helper { + const char * filename; + char * read(); + int length; + bool write(char * data); +}; \ No newline at end of file diff --git a/binding-mruby/mrb-ext/file.cpp b/binding-mruby/mrb-ext/file.cpp index e68a38d..e19ab74 100644 --- a/binding-mruby/mrb-ext/file.cpp +++ b/binding-mruby/mrb-ext/file.cpp @@ -454,10 +454,11 @@ MRB_METHOD(fileReadLines) FILE *f = p->fp(); mrb_value arg; - mrb_get_args(mrb, "|o", &arg); + int argc = mrb_get_args(mrb, "|o", &arg); const char *rs = "\n"; (void) rs; - if (mrb->c->ci->argc > 0) + + if (argc > 0) { Debug() << "FIXME: File.readlines: rs not implemented"; @@ -596,7 +597,7 @@ fileBindingInit(mrb_state *mrb) mrb_define_method(mrb, klass, "path", fileGetPath, MRB_ARGS_NONE()); /* FileTest */ - RClass *module = mrb_define_module(mrb, "FileTest"); + RClass *module = mrb_define_module(mrb, "MKXPFileTest"); mrb_define_module_function(mrb, module, "exist?", fileTestDoesExist, MRB_ARGS_REQ(1)); mrb_define_module_function(mrb, module, "directory?", fileTestIsDirectory, MRB_ARGS_REQ(1)); mrb_define_module_function(mrb, module, "file?", fileTestIsFile, MRB_ARGS_REQ(1)); diff --git a/binding-mruby/mrb-ext/kernel.cpp b/binding-mruby/mrb-ext/kernel.cpp index 0046869..c0babd8 100644 --- a/binding-mruby/mrb-ext/kernel.cpp +++ b/binding-mruby/mrb-ext/kernel.cpp @@ -30,6 +30,7 @@ #include "../binding-util.h" #include "marshal.h" +#include "file-helper.h" #include "sharedstate.h" #include "eventthread.h" #include "exception.h" @@ -136,11 +137,12 @@ MRB_FUNCTION(kernelRand) MRB_FUNCTION(kernelSrand) { srandCalled = true; + + mrb_int seed; + int argc = mrb_get_args(mrb, "|i", &seed); - if (mrb->c->ci->argc == 1) + if (argc == 1) { - mrb_int seed; - mrb_get_args(mrb, "i", &seed); srand(seed); int oldSeed = currentSeed; @@ -171,19 +173,19 @@ MRB_FUNCTION(kernelLoadData) const char *filename; mrb_get_args(mrb, "z", &filename); - SDL_RWops ops; - GUARD_EXC( shState->fileSystem().openRead(ops, filename); ) - mrb_value obj; - try { obj = marshalLoadInt(mrb, &ops); } + try { + SDL_rw_file_helper fileHelper; + fileHelper.filename = filename; + char * contents = fileHelper.read(); + mrb_value rawdata = mrb_str_new_static(mrb, contents, fileHelper.length); + obj = mrb_marshal_load(mrb, rawdata); + } catch (const Exception &e) { - SDL_RWclose(&ops); raiseMrbExc(mrb, e); } - SDL_RWclose(&ops); - return obj; } @@ -194,19 +196,18 @@ MRB_FUNCTION(kernelSaveData) mrb_get_args(mrb, "oz", &obj, &filename); - SDL_RWops *ops = SDL_RWFromFile(filename, "w"); - if (!ops) - mrb_raise(mrb, getMrbData(mrb)->exc[SDL], SDL_GetError()); - - try { marshalDumpInt(mrb, ops, obj); } + try { + mrb_value dumped = mrb_nil_value(); + mrb_marshal_dump(mrb, obj, dumped); + SDL_rw_file_helper fileHelper; + fileHelper.filename = filename; + fileHelper.write(RSTRING_PTR(dumped)); + } catch (const Exception &e) { - SDL_RWclose(ops); raiseMrbExc(mrb, e); } - SDL_RWclose(ops); - return mrb_nil_value(); } diff --git a/binding-mruby/mrb-ext/marshal.cpp b/binding-mruby/mrb-ext/marshal.cpp deleted file mode 100644 index 78baddb..0000000 --- a/binding-mruby/mrb-ext/marshal.cpp +++ /dev/null @@ -1,1030 +0,0 @@ -/* -** marshal.cpp -** -** This file is part of mkxp. -** -** Copyright (C) 2013 Jonas Kulla -** -** mkxp is free software: you can redistribute it and/or modify -** it under the terms of the GNU General Public License as published by -** the Free Software Foundation, either version 2 of the License, or -** (at your option) any later version. -** -** mkxp is distributed in the hope that it will be useful, -** but WITHOUT ANY WARRANTY; without even the implied warranty of -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -** GNU General Public License for more details. -** -** You should have received a copy of the GNU General Public License -** along with mkxp. If not, see . -*/ - -#include "marshal.h" - -#include -#include -#include -#include -#include -#include - -#include -#include -#include -#include -#include - -#include "../binding-util.h" -#include "file.h" -#include "rwmem.h" -#include "exception.h" -#include "boost-hash.h" -#include "debugwriter.h" - -#include - - -#define MARSHAL_MAJOR 4 -#define MARSHAL_MINOR 8 - -#define TYPE_NIL '0' -#define TYPE_TRUE 'T' -#define TYPE_FALSE 'F' -#define TYPE_FIXNUM 'i' - -#define TYPE_OBJECT 'o' -//#define TYPE_DATA 'd' -#define TYPE_USERDEF 'u' -#define TYPE_USRMARSHAL 'U' -#define TYPE_FLOAT 'f' -//#define TYPE_BIGNUM 'l' -#define TYPE_STRING '"' -//#define TYPE_REGEXP '/' -#define TYPE_ARRAY '[' -#define TYPE_HASH '{' -#define TYPE_HASH_DEF '}' -#define TYPE_MODULE_OLD 'M' -#define TYPE_IVAR 'I' -#define TYPE_LINK '@' - -#define TYPE_SYMBOL ':' -#define TYPE_SYMLINK ';' - -// FIXME make these dynamically allocatd, per MarshalContext -static char gpbuffer[512]; - -inline size_t hash_value(mrb_value key) -{ - return boost::hash_value(key.value.p); -} - -inline bool operator==(mrb_value v1, mrb_value v2) -{ - if (mrb_type(v1) != mrb_type(v2)) - return false; - - switch (mrb_type(v1)) - { - case MRB_TT_TRUE: - return true; - - case MRB_TT_FALSE: - case MRB_TT_FIXNUM: - return (v1.value.i == v2.value.i); - case MRB_TT_SYMBOL: - return (v1.value.sym == v2.value.sym); - - case MRB_TT_FLOAT: - return (mrb_float(v1) == mrb_float(v2)); - - default: - return (mrb_ptr(v1) == mrb_ptr(v2)); - } -} - -template -struct LinkBuffer -{ - /* Key: val, Value: idx in vec */ - BoostHash hash; - std::vector vec; - - bool contains(T value) - { - return hash.contains(value); - } - - bool containsIdx(size_t idx) - { - if (vec.empty()) - return false; - - return (idx < vec.size()); - } - - int add(T value) - { - int idx = vec.size(); - - hash.insert(value, idx); - vec.push_back(value); - - return idx; - } - - T lookup(size_t idx) - { - return vec[idx]; - } - - int lookupIdx(T value) - { - return hash[value]; - } -}; - -struct MarshalContext -{ - SDL_RWops *ops; - mrb_state *mrb; - mrb_int limit; - - /* For Symlinks/Links */ - LinkBuffer symbols; - LinkBuffer objects; - - int8_t readByte() - { - int8_t byte; - int result = SDL_RWread(ops, &byte, 1, 1); - - if (result < 1) - throw Exception(Exception::ArgumentError, "dump format error"); - - return byte; - } - - void readData(char *dest, int len) - { - int result = SDL_RWread(ops, dest, 1, len); - - if (result < len) - throw Exception(Exception::ArgumentError, "dump format error"); - } - - void writeByte(int8_t byte) - { - int result = SDL_RWwrite(ops, &byte, 1, 1); - - if (result < 1) // FIXME not sure what the correct error would be here - throw Exception(Exception::IOError, "dump writing error"); - } - - void writeData(const char *data, int len) - { - int result = SDL_RWwrite(ops, data, 1, len); - - if (result < len) // FIXME not sure what the correct error would be here - throw Exception(Exception::IOError, "dump writing error"); - } -}; - - -static int -read_fixnum(MarshalContext *ctx) -{ - int8_t head = ctx->readByte(); - - if (head == 0) - return 0; - else if (head > 5) - return head - 5; - else if (head < -4) - return head + 5; - - int8_t pos = (head > 0); - int8_t len = pos ? head : head * -1; - - int8_t n1, n2, n3, n4; - - if (pos) - n2 = n3 = n4 = 0; - else - n2 = n3 = n4 = 0xFF; - - n1 = ctx->readByte(); - if (len >= 2) - n2 = ctx->readByte(); - if (len >= 3) - n3 = ctx->readByte(); - if (len >= 4) - n4 = ctx->readByte(); - - int result = ((0xFF << 0x00) & (n1 << 0x00)) - | ((0xFF << 0x08) & (n2 << 0x08)) - | ((0xFF << 0x10) & (n3 << 0x10)) - | ((0xFF << 0x18) & (n4 << 0x18)); - -// if (!pos) -// result = -((result ^ 0xFFFFFFFF) + 1); - - return result; -} - -static float -read_float(MarshalContext *ctx) -{ - int len = read_fixnum(ctx); - - ctx->readData(gpbuffer, len); - gpbuffer[len] = '\0'; - - return strtof(gpbuffer, 0); -} - -static char * -read_string(MarshalContext *ctx) -{ - int len = read_fixnum(ctx); - - ctx->readData(gpbuffer, len); - gpbuffer[len] = '\0'; - - return gpbuffer; -} - -static mrb_value -read_string_value(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - int len = read_fixnum(ctx); - - mrb_value str = mrb_str_new(mrb, 0, len); - char *ptr = RSTR_PTR(RSTRING(str)); - - ctx->readData(ptr, len); - ptr[len] = '\0'; - - return str; -} - -static mrb_value read_value(MarshalContext *ctx); - -static mrb_value -read_array(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - int len = read_fixnum(ctx); - int i; - - mrb_value array = mrb_ary_new_capa(mrb, len); - - ctx->objects.add(array); - - for (i = 0; i < len; ++i) - { - mrb_value val = read_value(ctx); - mrb_ary_set(mrb, array, i, val); - } - - return array; -} - -static mrb_value -read_hash(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - int len = read_fixnum(ctx); - int i; - - mrb_value hash = mrb_hash_new_capa(mrb, len); - - ctx->objects.add(hash); - - for (i = 0; i < len; ++i) - { - mrb_value key = read_value(ctx); - mrb_value val = read_value(ctx); - - mrb_hash_set(mrb, hash, key, val); - } - - return hash; -} - -static mrb_sym -read_symbol(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - - mrb_sym symbol = mrb_intern_cstr(mrb, read_string(ctx)); - ctx->symbols.add(symbol); - - return symbol; -} - -static mrb_sym -read_symlink(MarshalContext *ctx) -{ - int idx = read_fixnum(ctx); - - if (!ctx->symbols.containsIdx(idx)) - throw Exception(Exception::ArgumentError, "bad symlink"); - - return ctx->symbols.lookup(idx); -} - -static mrb_value -read_link(MarshalContext *ctx) -{ - int idx = read_fixnum(ctx); - - if (!ctx->objects.containsIdx(idx)) - throw Exception(Exception::ArgumentError, "dump format error (unlinked)"); - - return ctx->objects.lookup(idx); -} - -mrb_value -read_instance_var(MarshalContext *ctx) -{ - mrb_value obj = read_value(ctx); - - int iv_count = read_fixnum(ctx); - int i; - - ctx->objects.add(obj); - - for (i = 0; i < iv_count; ++i) - { - mrb_value iv_name = read_value(ctx); - mrb_value iv_value = read_value(ctx); - (void)iv_name; - (void)iv_value; - - // Instance vars for String/Array not supported yet -// mrb_iv_set(mrb, obj, mrb_symbol(iv_name), iv_value); - } - - return obj; -} - -static struct RClass * -mrb_class_from_path(mrb_state *mrb, mrb_value path) -{ - char *path_s; - switch (path.tt) - { - case MRB_TT_SYMBOL : - path_s = (char*) mrb_sym2name(mrb, mrb_symbol(path)); - break; - case MRB_TT_STRING : - path_s = (char*) RSTRING_PTR(path); - break; - default: - throw Exception(Exception::ArgumentError, "dump format error for symbol"); - } - - /* If a symbol contains any colons, mrb_sym2name - * will return the string with "s around it - * (e.g. :Mod::Class => :"Mod::Class"), - * so we need to skip those. */ - if (path_s[0] == '\"') - path_s++; - - char *p, *pbgn; - mrb_value klass = mrb_obj_value(mrb->object_class); - - p = pbgn = path_s; - - while (*p && *p != '\"') - { - while (*p && *p != ':' && *p != '\"') p++; - - mrb_sym sym = mrb_intern(mrb, pbgn, p-pbgn); - klass = mrb_const_get(mrb, klass, sym); - - if (p[0] == ':') - { - if (p[1] != ':') - return 0; - p += 2; - pbgn = p; - } - } - - return (struct RClass*) mrb_obj_ptr(klass); -} - -static mrb_value -read_object(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - mrb_value class_path = read_value(ctx); - - struct RClass *klass = - mrb_class_from_path(mrb, class_path); - - mrb_value obj = mrb_obj_value(mrb_obj_alloc(mrb, MRB_TT_OBJECT, klass)); - - ctx->objects.add(obj); - - int iv_count = read_fixnum(ctx); - int i; - - for (i = 0; i < iv_count; ++i) - { - mrb_value iv_name = read_value(ctx); - mrb_value iv_value = read_value(ctx); - - mrb_obj_iv_set(mrb, mrb_obj_ptr(obj), - mrb_symbol(iv_name), iv_value); - } - - return obj; -} - -static mrb_value -read_userdef(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - mrb_value class_path = read_value(ctx); - - struct RClass *klass = - mrb_class_from_path(mrb, class_path); - - /* Should check here if klass implements '_load()' */ - if (!mrb_obj_respond_to(mrb, mrb_class(mrb, mrb_obj_value(klass)), mrb_intern_cstr(mrb, "_load"))) - throw Exception(Exception::TypeError, - "class %s needs to have method '_load'", - RSTRING_PTR(class_path)); - - mrb_value data = read_string_value(ctx); - mrb_value obj = mrb_funcall(mrb, mrb_obj_value(klass), "_load", 1, data); - - return obj; -} - -static int maxArena = 0; - -static mrb_value -read_value(MarshalContext *ctx) -{ - mrb_state *mrb = ctx->mrb; - int8_t type = ctx->readByte(); - mrb_value value; - if (mrb->arena_idx > maxArena) - maxArena = mrb->arena_idx; - - int arena = mrb_gc_arena_save(mrb); - - switch (type) - { - case TYPE_NIL : - value = mrb_nil_value(); - break; - - case TYPE_TRUE : - value = mrb_true_value(); - break; - - case TYPE_FALSE : - value = mrb_false_value(); - break; - - case TYPE_FIXNUM : - value = mrb_fixnum_value(read_fixnum(ctx)); - break; - - case TYPE_FLOAT : - value = mrb_float_value(mrb, read_float(ctx)); - ctx->objects.add(value); - break; - - case TYPE_STRING : - value = read_string_value(ctx); - ctx->objects.add(value); - break; - - case TYPE_ARRAY : - value = read_array(ctx); - break; - - case TYPE_HASH : - value = read_hash(ctx); - break; - - case TYPE_SYMBOL : - value = mrb_symbol_value(read_symbol(ctx)); - break; - - case TYPE_SYMLINK : - value = mrb_symbol_value(read_symlink(ctx)); - break; - - case TYPE_OBJECT : - value = read_object(ctx); - break; - - case TYPE_IVAR : - value = read_instance_var(ctx); - break; - - case TYPE_LINK : - value = read_link(ctx); - break; - - case TYPE_USERDEF : - value = read_userdef(ctx); - ctx->objects.add(value); - break; - - default : - throw Exception(Exception::MKXPError, "Marshal.load: unsupported value type '%c'", - (char) type); - } - - mrb_gc_arena_restore(mrb, arena); - - return value; -} - -static void -write_fixnum(MarshalContext *ctx, int value) -{ - if (value == 0) - { - ctx->writeByte(0); - return; - } - else if (value > 0 && value < 123) - { - ctx->writeByte((int8_t) value + 5); - return; - } - else if (value < 0 && value > -124) - { - ctx->writeByte((int8_t) value - 5); - return; - } - - int8_t len; - - if (value > 0) - { - /* Positive number */ - if (value <= 0x7F) - { - /* 1 byte wide */ - len = 1; - } - else if (value <= 0x7FFF) - { - /* 2 bytes wide */ - len = 2; - } - else if (value <= 0x7FFFFF) - { - /* 3 bytes wide */ - len = 3; - } - else - { - /* 4 bytes wide */ - len = 4; - } - } - else - { - /* Negative number */ - if (value >= (int)0x80) - { - /* 1 byte wide */ - len = -1; - } - else if (value >= (int)0x8000) - { - /* 2 bytes wide */ - len = -2; - } - else if (value <= (int)0x800000) - { - /* 3 bytes wide */ - len = -3; - } - else - { - /* 4 bytes wide */ - len = -4; - } - } - - /* Write length */ - ctx->writeByte(len); - - /* Write bytes */ - if (len >= 1 || len <= -1) - { - ctx->writeByte((value & 0x000000FF) >> 0x00); - } - if (len >= 2 || len <= -2) - { - ctx->writeByte((value & 0x0000FF00) >> 0x08); - } - if (len >= 3 || len <= -3) - { - ctx->writeByte((value & 0x00FF0000) >> 0x10); - } - if (len == 4 || len == -4) - { - ctx->writeByte((value & 0xFF000000) >> 0x18); - } -} - -static void -write_float(MarshalContext *ctx, float value) -{ - sprintf(gpbuffer, "%.16g", value); - - int len = strlen(gpbuffer); - write_fixnum(ctx, len); - ctx->writeData(gpbuffer, len); -} - -static void -write_string(MarshalContext *ctx, const char *string) -{ - int len = strlen(string); - - write_fixnum(ctx, len); - ctx->writeData(string, len); -} - -static void -write_string_value(MarshalContext *ctx, mrb_value string) -{ - int len = RSTRING_LEN(string); - const char *ptr = RSTRING_PTR(string); - - write_fixnum(ctx, len); - ctx->writeData(ptr, len); -} - -static void write_value(MarshalContext *, mrb_value); - -static void -write_array(MarshalContext *ctx, mrb_value array) -{ - mrb_state *mrb = ctx->mrb; - int len = mrb_ary_len(mrb, array); - write_fixnum(ctx, len); - - int i; - for (i = 0; i < len; ++i) - { - mrb_value value = mrb_ary_entry(array, i); - write_value(ctx, value); - } -} - -KHASH_DECLARE(ht, mrb_value, mrb_value, 1) - -static void -write_hash(MarshalContext *ctx, mrb_value hash) -{ - mrb_state *mrb = ctx->mrb; - int len = 0; - - kh_ht *h = mrb_hash_tbl(mrb, hash); - if (h) - len = kh_size(h); - - write_fixnum(ctx, len); - - for (khiter_t k = kh_begin(h); k != kh_end(h); ++k) - { - if (!kh_exist(h, k)) - continue; - - write_value(ctx, kh_key(h, k)); - write_value(ctx, kh_val(h, k)); - } -} - -static void -write_symbol(MarshalContext *ctx, mrb_value symbol) -{ - mrb_state *mrb = ctx->mrb; - mrb_sym sym = mrb_symbol(symbol); - mrb_int len; - const char *p = mrb_sym2name_len(mrb, sym, &len); - - write_string(ctx, p); -} - -static void -write_object(MarshalContext *ctx, mrb_value object) -{ - mrb_state *mrb = ctx->mrb; - struct RObject *o = mrb_obj_ptr(object); - - mrb_value path = mrb_class_path(mrb, o->c); - write_value(ctx, mrb_str_intern(mrb, path)); - - mrb_value iv_ary = mrb_obj_instance_variables(mrb, object); - int iv_count = mrb_ary_len(mrb, iv_ary); - write_fixnum(ctx, iv_count); - - int i; - for (i = 0; i < iv_count; ++i) - { - mrb_value iv_name = mrb_ary_entry(iv_ary, i); - mrb_value iv_value = mrb_obj_iv_get(mrb, o, mrb_symbol(iv_name)); - - write_value(ctx, iv_name); - write_value(ctx, iv_value); - } -} - -static void -write_userdef(MarshalContext *ctx, mrb_value object) -{ - mrb_state *mrb = ctx->mrb; - struct RObject *o = mrb_obj_ptr(object); - - mrb_value path = mrb_class_path(mrb, o->c); - write_value(ctx, mrb_str_intern(mrb, path)); - - mrb_value dump = mrb_funcall(mrb, object, "_dump", 0); - write_string_value(ctx, dump); -} - -static void -write_value(MarshalContext *ctx, mrb_value value) -{ - mrb_state *mrb = ctx->mrb; - - int arena = mrb_gc_arena_save(mrb); - - if (ctx->objects.contains(value)) - { - ctx->writeByte(TYPE_LINK); - write_fixnum(ctx, ctx->objects.lookupIdx(value)); - mrb_gc_arena_restore(mrb, arena); - return; - } - - switch (mrb_type(value)) - { - case MRB_TT_TRUE : - ctx->writeByte(TYPE_TRUE); - break; - - case MRB_TT_FALSE : - if (mrb_fixnum(value)) - ctx->writeByte(TYPE_FALSE); - else - ctx->writeByte(TYPE_NIL); - - break; - - case MRB_TT_FIXNUM : - ctx->writeByte(TYPE_FIXNUM); - write_fixnum(ctx, mrb_fixnum(value)); - - break; - - case MRB_TT_FLOAT : - ctx->writeByte(TYPE_FLOAT); - write_float(ctx, mrb_float(value)); - ctx->objects.add(value); - - break; - - case MRB_TT_STRING : - ctx->objects.add(value); - ctx->writeByte(TYPE_STRING); - write_string_value(ctx, value); - - break; - - case MRB_TT_ARRAY : - ctx->objects.add(value); - ctx->writeByte(TYPE_ARRAY); - write_array(ctx, value); - - break; - - case MRB_TT_HASH : - ctx->objects.add(value); - ctx->writeByte(TYPE_HASH); - write_hash(ctx, value); - - break; - - case MRB_TT_SYMBOL : - if (ctx->symbols.contains(mrb_symbol(value))) - { - ctx->writeByte(TYPE_SYMLINK); - write_fixnum(ctx, ctx->symbols.lookupIdx(mrb_symbol(value))); - ctx->symbols.add(mrb_symbol(value)); - } - else - { - ctx->writeByte(TYPE_SYMBOL); - write_symbol(ctx, value); - } - - break; - - /* Objects seem to have wrong tt */ - case MRB_TT_CLASS : - case MRB_TT_OBJECT : - ctx->objects.add(value); - - if (mrb_obj_respond_to(mrb, mrb_obj_ptr(value)->c, - mrb_intern_lit(mrb, "_dump"))) - { - ctx->writeByte(TYPE_USERDEF); - write_userdef(ctx, value); - } - else - { - ctx->writeByte(TYPE_OBJECT); - write_object(ctx, value); - } - - break; - - default : - printf("Warning! Could not write value type '%c'(%d)\n", // FIXME not sure if raise or just print error - mrb_type(value), mrb_type(value)); - fflush(stdout); - } - - mrb_gc_arena_restore(mrb, arena); -} - -static void -writeMarshalHeader(MarshalContext *ctx) -{ - ctx->writeByte(MARSHAL_MAJOR); - ctx->writeByte(MARSHAL_MINOR); -} - -static void -verifyMarshalHeader(MarshalContext *ctx) -{ - int8_t maj = ctx->readByte(); - int8_t min = ctx->readByte(); - - if (maj != MARSHAL_MAJOR || min != MARSHAL_MINOR) - throw Exception(Exception::TypeError, "incompatible marshal file format (can't be read)"); -} - -MRB_FUNCTION(marshalDump) -{ - mrb_value val; - mrb_value port = mrb_nil_value(); - mrb_int limit = 100; - - mrb_get_args(mrb, "o|oi", &val, &port, &limit); - - SDL_RWops *ops; - - bool havePort = mrb_type(port) == MRB_TT_OBJECT; - bool dumpString = false; - mrb_value ret = port; - - if (havePort) - { - FileImpl *file = getPrivateDataCheck(mrb, port, FileType); - ops = file->ops; - } - else - { - ops = SDL_AllocRW(); - RWMemOpen(ops); - dumpString = true; - } - - try - { - MarshalContext ctx; - ctx.mrb = mrb; - ctx.limit = limit; - ctx.ops = ops; - - writeMarshalHeader(&ctx); - write_value(&ctx, val); - } - catch (const Exception &e) - { - if (dumpString) - { - SDL_RWclose(ops); - SDL_FreeRW(ops); - } - - raiseMrbExc(mrb, e); - } - - if (dumpString) - { - int dataSize = RWMemGetData(ops, 0); - - ret = mrb_str_new(mrb, 0, dataSize); - RWMemGetData(ops, RSTRING_PTR(ret)); - - SDL_RWclose(ops); - SDL_FreeRW(ops); - } - - return ret; -} - -MRB_FUNCTION(marshalLoad) -{ - mrb_value port; - - mrb_get_args(mrb, "o", &port); - - SDL_RWops *ops; - - bool freeOps = false; - - if (mrb_type(port) == MRB_TT_OBJECT) - { - FileImpl *file = getPrivateDataCheck(mrb, port, FileType); - ops = file->ops; - } - else if (mrb_string_p(port)) - { - ops = SDL_RWFromConstMem(RSTRING_PTR(port), RSTRING_LEN(port)); - freeOps = true; - } - else - { - Debug() << "FIXME: Marshal.load: generic IO port not implemented"; - return mrb_nil_value(); - } - - mrb_value val; - - try - { - MarshalContext ctx; - ctx.mrb = mrb; - ctx.ops = ops; - - verifyMarshalHeader(&ctx); - val = read_value(&ctx); - } - catch (const Exception &e) - { - if (freeOps) - SDL_RWclose(ops); - } - - if (freeOps) - SDL_RWclose(ops); - - return val; -} - -void -marshalBindingInit(mrb_state *mrb) -{ - RClass *module = mrb_define_module(mrb, "Marshal"); - - mrb_define_module_function(mrb, module, "dump", marshalDump, MRB_ARGS_REQ(1) | MRB_ARGS_OPT(2)); - mrb_define_module_function(mrb, module, "load", marshalLoad, MRB_ARGS_REQ(1)); -} - -/* Exceptions from these internal functions will be caught higher up */ -void -marshalDumpInt(mrb_state *mrb, SDL_RWops *ops, mrb_value val) -{ - MarshalContext ctx; - ctx.mrb = mrb; - ctx.ops = ops; - ctx.limit = 100; - - writeMarshalHeader(&ctx); - write_value(&ctx, val); -} - -mrb_value -marshalLoadInt(mrb_state *mrb, SDL_RWops *ops) -{ - MarshalContext ctx; - ctx.mrb = mrb; - ctx.ops = ops; - - verifyMarshalHeader(&ctx); - - mrb_value val = read_value(&ctx); - - return val; -} - diff --git a/binding-mruby/mrb-ext/marshal.h b/binding-mruby/mrb-ext/marshal.h index 71af495..b4f02cc 100644 --- a/binding-mruby/mrb-ext/marshal.h +++ b/binding-mruby/mrb-ext/marshal.h @@ -1,31 +1,15 @@ -/* -** marshal.h -** -** This file is part of mkxp. -** -** Copyright (C) 2013 Jonas Kulla -** -** mkxp is free software: you can redistribute it and/or modify -** it under the terms of the GNU General Public License as published by -** the Free Software Foundation, either version 2 of the License, or -** (at your option) any later version. -** -** mkxp is distributed in the hope that it will be useful, -** but WITHOUT ANY WARRANTY; without even the implied warranty of -** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -** GNU General Public License for more details. -** -** You should have received a copy of the GNU General Public License -** along with mkxp. If not, see . -*/ +#ifndef MRUBY_MARSHAL_H +#define MRUBY_MARSHAL_H -#ifndef MARSHAL_H -#define MARSHAL_H +#if defined(__cplusplus) +extern "C" { +#endif -#include -#include +mrb_value mrb_marshal_dump(mrb_state* M, mrb_value v, mrb_value out); +mrb_value mrb_marshal_load(mrb_state* M, mrb_value str); -void marshalDumpInt(mrb_state *, SDL_RWops *, mrb_value); -mrb_value marshalLoadInt(mrb_state *, SDL_RWops *); +#if defined(__cplusplus) +} /* extern "C" { */ +#endif -#endif // MARSHAL_H +#endif /* MRUBY_ARRAY_H */ diff --git a/binding-mruby/mrb-ext/time.cpp b/binding-mruby/mrb-ext/time.cpp index e6b1557..9f66d43 100644 --- a/binding-mruby/mrb-ext/time.cpp +++ b/binding-mruby/mrb-ext/time.cpp @@ -27,7 +27,7 @@ #include "time.h" #include - +#include struct TimeImpl { diff --git a/binding-mruby/rgss.rb b/binding-mruby/rgss.rb new file mode 100644 index 0000000..e6cd4c3 --- /dev/null +++ b/binding-mruby/rgss.rb @@ -0,0 +1,1476 @@ +module RPG + module Cache + @cache = {} + def self.load_bitmap(folder_name, filename, hue = 0) + path = folder_name + filename + if not @cache.include?(path) or @cache[path].disposed? + if filename != "" + @cache[path] = Bitmap.new(path) + else + @cache[path] = Bitmap.new(32, 32) + end + end + if hue == 0 + @cache[path] + else + key = [path, hue] + if not @cache.include?(key) or @cache[key].disposed? + @cache[key] = @cache[path].clone + @cache[key].hue_change(hue) + end + @cache[key] + end + end + def self.animation(filename, hue) + self.load_bitmap("Graphics/Animations/", filename, hue) + end + def self.autotile(filename) + self.load_bitmap("Graphics/Autotiles/", filename) + end + def self.battleback(filename) + self.load_bitmap("Graphics/Battlebacks/", filename) + end + def self.battler(filename, hue) + self.load_bitmap("Graphics/Battlers/", filename, hue) + end + def self.character(filename, hue) + self.load_bitmap("Graphics/Characters/", filename, hue) + end + def self.fog(filename, hue) + self.load_bitmap("Graphics/Fogs/", filename, hue) + end + def self.gameover(filename) + self.load_bitmap("Graphics/Gameovers/", filename) + end + def self.icon(filename) + self.load_bitmap("Graphics/Icons/", filename) + end + def self.panorama(filename, hue) + self.load_bitmap("Graphics/Panoramas/", filename, hue) + end + def self.picture(filename) + self.load_bitmap("Graphics/Pictures/", filename) + end + def self.tileset(filename) + self.load_bitmap("Graphics/Tilesets/", filename) + end + def self.title(filename) + self.load_bitmap("Graphics/Titles/", filename) + end + def self.windowskin(filename) + self.load_bitmap("Graphics/Windowskins/", filename) + end + def self.tile(filename, tile_id, hue) + key = [filename, tile_id, hue] + if not @cache.include?(key) or @cache[key].disposed? + @cache[key] = Bitmap.new(32, 32) + x = (tile_id - 384) % 8 * 32 + y = (tile_id - 384) / 8 * 32 + rect = Rect.new(x, y, 32, 32) + @cache[key].blt(0, 0, self.tileset(filename), rect) + @cache[key].hue_change(hue) + end + @cache[key] + end + def self.clear + @cache = {} + GC.start + end + end + + class Sprite < ::Sprite + @@_animations = [] + @@_reference_count = {} + def initialize(viewport = nil) + super(viewport) + @_whiten_duration = 0 + @_appear_duration = 0 + @_escape_duration = 0 + @_collapse_duration = 0 + @_damage_duration = 0 + @_animation_duration = 0 + @_blink = false + end + def dispose + dispose_damage + dispose_animation + dispose_loop_animation + super + end + def whiten + self.blend_type = 0 + self.color.set(255, 255, 255, 128) + self.opacity = 255 + @_whiten_duration = 16 + @_appear_duration = 0 + @_escape_duration = 0 + @_collapse_duration = 0 + end + def appear + self.blend_type = 0 + self.color.set(0, 0, 0, 0) + self.opacity = 0 + @_appear_duration = 16 + @_whiten_duration = 0 + @_escape_duration = 0 + @_collapse_duration = 0 + end + def escape + self.blend_type = 0 + self.color.set(0, 0, 0, 0) + self.opacity = 255 + @_escape_duration = 32 + @_whiten_duration = 0 + @_appear_duration = 0 + @_collapse_duration = 0 + end + def collapse + self.blend_type = 1 + self.color.set(255, 64, 64, 255) + self.opacity = 255 + @_collapse_duration = 48 + @_whiten_duration = 0 + @_appear_duration = 0 + @_escape_duration = 0 + end + def damage(value, critical) + dispose_damage + if value.is_a?(Numeric) + damage_string = value.abs.to_s + else + damage_string = value.to_s + end + bitmap = Bitmap.new(160, 48) + bitmap.font.name = "Arial Black" + bitmap.font.size = 32 + bitmap.font.color.set(0, 0, 0) + bitmap.draw_text(-1, 12-1, 160, 36, damage_string, 1) + bitmap.draw_text(+1, 12-1, 160, 36, damage_string, 1) + bitmap.draw_text(-1, 12+1, 160, 36, damage_string, 1) + bitmap.draw_text(+1, 12+1, 160, 36, damage_string, 1) + if value.is_a?(Numeric) and value < 0 + bitmap.font.color.set(176, 255, 144) + else + bitmap.font.color.set(255, 255, 255) + end + bitmap.draw_text(0, 12, 160, 36, damage_string, 1) + if critical + bitmap.font.size = 20 + bitmap.font.color.set(0, 0, 0) + bitmap.draw_text(-1, -1, 160, 20, "CRITICAL", 1) + bitmap.draw_text(+1, -1, 160, 20, "CRITICAL", 1) + bitmap.draw_text(-1, +1, 160, 20, "CRITICAL", 1) + bitmap.draw_text(+1, +1, 160, 20, "CRITICAL", 1) + bitmap.font.color.set(255, 255, 255) + bitmap.draw_text(0, 0, 160, 20, "CRITICAL", 1) + end + @_damage_sprite = ::Sprite.new(self.viewport) + @_damage_sprite.bitmap = bitmap + @_damage_sprite.ox = 80 + @_damage_sprite.oy = 20 + @_damage_sprite.x = self.x + @_damage_sprite.y = self.y - self.oy / 2 + @_damage_sprite.z = 3000 + @_damage_duration = 40 + end + def animation(animation, hit) + dispose_animation + @_animation = animation + return if @_animation == nil + @_animation_hit = hit + @_animation_duration = @_animation.frame_max + animation_name = @_animation.animation_name + animation_hue = @_animation.animation_hue + bitmap = RPG::Cache.animation(animation_name, animation_hue) + if @@_reference_count.include?(bitmap) + @@_reference_count[bitmap] += 1 + else + @@_reference_count[bitmap] = 1 + end + @_animation_sprites = [] + if @_animation.position != 3 or not @@_animations.include?(animation) + for i in 0..15 + sprite = ::Sprite.new(self.viewport) + sprite.bitmap = bitmap + sprite.visible = false + @_animation_sprites.push(sprite) + end + unless @@_animations.include?(animation) + @@_animations.push(animation) + end + end + update_animation + end + def loop_animation(animation) + return if animation == @_loop_animation + dispose_loop_animation + @_loop_animation = animation + return if @_loop_animation == nil + @_loop_animation_index = 0 + animation_name = @_loop_animation.animation_name + animation_hue = @_loop_animation.animation_hue + bitmap = RPG::Cache.animation(animation_name, animation_hue) + if @@_reference_count.include?(bitmap) + @@_reference_count[bitmap] += 1 + else + @@_reference_count[bitmap] = 1 + end + @_loop_animation_sprites = [] + for i in 0..15 + sprite = ::Sprite.new(self.viewport) + sprite.bitmap = bitmap + sprite.visible = false + @_loop_animation_sprites.push(sprite) + end + update_loop_animation + end + def dispose_damage + if @_damage_sprite != nil + @_damage_sprite.bitmap.dispose + @_damage_sprite.dispose + @_damage_sprite = nil + @_damage_duration = 0 + end + end + def dispose_animation + if @_animation_sprites != nil + sprite = @_animation_sprites[0] + if sprite != nil + @@_reference_count[sprite.bitmap] -= 1 + if @@_reference_count[sprite.bitmap] == 0 + sprite.bitmap.dispose + end + end + for sprite in @_animation_sprites + sprite.dispose + end + @_animation_sprites = nil + @_animation = nil + end + end + def dispose_loop_animation + if @_loop_animation_sprites != nil + sprite = @_loop_animation_sprites[0] + if sprite != nil + @@_reference_count[sprite.bitmap] -= 1 + if @@_reference_count[sprite.bitmap] == 0 + sprite.bitmap.dispose + end + end + for sprite in @_loop_animation_sprites + sprite.dispose + end + @_loop_animation_sprites = nil + @_loop_animation = nil + end + end + def blink_on + unless @_blink + @_blink = true + @_blink_count = 0 + end + end + def blink_off + if @_blink + @_blink = false + self.color.set(0, 0, 0, 0) + end + end + def blink? + @_blink + end + def effect? + @_whiten_duration > 0 or + @_appear_duration > 0 or + @_escape_duration > 0 or + @_collapse_duration > 0 or + @_damage_duration > 0 or + @_animation_duration > 0 + end + def update + super + if @_whiten_duration > 0 + @_whiten_duration -= 1 + self.color.alpha = 128 - (16 - @_whiten_duration) * 10 + end + if @_appear_duration > 0 + @_appear_duration -= 1 + self.opacity = (16 - @_appear_duration) * 16 + end + if @_escape_duration > 0 + @_escape_duration -= 1 + self.opacity = 256 - (32 - @_escape_duration) * 10 + end + if @_collapse_duration > 0 + @_collapse_duration -= 1 + self.opacity = 256 - (48 - @_collapse_duration) * 6 + end + if @_damage_duration > 0 + @_damage_duration -= 1 + case @_damage_duration + when 38..39 + @_damage_sprite.y -= 4 + when 36..37 + @_damage_sprite.y -= 2 + when 34..35 + @_damage_sprite.y += 2 + when 28..33 + @_damage_sprite.y += 4 + end + @_damage_sprite.opacity = 256 - (12 - @_damage_duration) * 32 + if @_damage_duration == 0 + dispose_damage + end + end + if @_animation != nil and (Graphics.frame_count % 2 == 0) + @_animation_duration -= 1 + update_animation + end + if @_loop_animation != nil and (Graphics.frame_count % 2 == 0) + update_loop_animation + @_loop_animation_index += 1 + @_loop_animation_index %= @_loop_animation.frame_max + end + if @_blink + @_blink_count = (@_blink_count + 1) % 32 + if @_blink_count < 16 + alpha = (16 - @_blink_count) * 6 + else + alpha = (@_blink_count - 16) * 6 + end + self.color.set(255, 255, 255, alpha) + end + @@_animations.clear + end + def update_animation + if @_animation_duration > 0 + frame_index = @_animation.frame_max - @_animation_duration + cell_data = @_animation.frames[frame_index].cell_data + position = @_animation.position + animation_set_sprites(@_animation_sprites, cell_data, position) + for timing in @_animation.timings + if timing.frame == frame_index + animation_process_timing(timing, @_animation_hit) + end + end + else + dispose_animation + end + end + def update_loop_animation + frame_index = @_loop_animation_index + cell_data = @_loop_animation.frames[frame_index].cell_data + position = @_loop_animation.position + animation_set_sprites(@_loop_animation_sprites, cell_data, position) + for timing in @_loop_animation.timings + if timing.frame == frame_index + animation_process_timing(timing, true) + end + end + end + def animation_set_sprites(sprites, cell_data, position) + for i in 0..15 + sprite = sprites[i] + pattern = cell_data[i, 0] + if sprite == nil or pattern == nil or pattern == -1 + sprite.visible = false if sprite != nil + next + end + sprite.visible = true + sprite.src_rect.set(pattern % 5 * 192, pattern / 5 * 192, 192, 192) + if position == 3 + if self.viewport != nil + sprite.x = self.viewport.rect.width / 2 + sprite.y = self.viewport.rect.height - 160 + else + sprite.x = 320 + sprite.y = 240 + end + else + sprite.x = self.x - self.ox + self.src_rect.width / 2 + sprite.y = self.y - self.oy + self.src_rect.height / 2 + sprite.y -= self.src_rect.height / 4 if position == 0 + sprite.y += self.src_rect.height / 4 if position == 2 + end + sprite.x += cell_data[i, 1] + sprite.y += cell_data[i, 2] + sprite.z = 2000 + sprite.ox = 96 + sprite.oy = 96 + sprite.zoom_x = cell_data[i, 3] / 100.0 + sprite.zoom_y = cell_data[i, 3] / 100.0 + sprite.angle = cell_data[i, 4] + sprite.mirror = (cell_data[i, 5] == 1) + sprite.opacity = cell_data[i, 6] * self.opacity / 255.0 + sprite.blend_type = cell_data[i, 7] + end + end + def animation_process_timing(timing, hit) + if (timing.condition == 0) or + (timing.condition == 1 and hit == true) or + (timing.condition == 2 and hit == false) + if timing.se.name != "" + se = timing.se + Audio.se_play("Audio/SE/" + se.name, se.volume, se.pitch) + end + case timing.flash_scope + when 1 + self.flash(timing.flash_color, timing.flash_duration * 2) + when 2 + if self.viewport != nil + self.viewport.flash(timing.flash_color, timing.flash_duration * 2) + end + when 3 + self.flash(nil, timing.flash_duration * 2) + end + end + end + def x=(x) + sx = x - self.x + if sx != 0 + if @_animation_sprites != nil + for i in 0..15 + @_animation_sprites[i].x += sx + end + end + if @_loop_animation_sprites != nil + for i in 0..15 + @_loop_animation_sprites[i].x += sx + end + end + end + super + end + def y=(y) + sy = y - self.y + if sy != 0 + if @_animation_sprites != nil + for i in 0..15 + @_animation_sprites[i].y += sy + end + end + if @_loop_animation_sprites != nil + for i in 0..15 + @_loop_animation_sprites[i].y += sy + end + end + end + super + end + end + + class Weather + def initialize(viewport = nil) + @type = 0 + @max = 0 + @ox = 0 + @oy = 0 + color1 = Color.new(255, 255, 255, 255) + color2 = Color.new(255, 255, 255, 128) + @rain_bitmap = Bitmap.new(7, 56) + for i in 0..6 + @rain_bitmap.fill_rect(6-i, i*8, 1, 8, color1) + end + @storm_bitmap = Bitmap.new(34, 64) + for i in 0..31 + @storm_bitmap.fill_rect(33-i, i*2, 1, 2, color2) + @storm_bitmap.fill_rect(32-i, i*2, 1, 2, color1) + @storm_bitmap.fill_rect(31-i, i*2, 1, 2, color2) + end + @snow_bitmap = Bitmap.new(6, 6) + @snow_bitmap.fill_rect(0, 1, 6, 4, color2) + @snow_bitmap.fill_rect(1, 0, 4, 6, color2) + @snow_bitmap.fill_rect(1, 2, 4, 2, color1) + @snow_bitmap.fill_rect(2, 1, 2, 4, color1) + @sprites = [] + for i in 1..40 + sprite = Sprite.new(viewport) + sprite.z = 1000 + sprite.visible = false + sprite.opacity = 0 + @sprites.push(sprite) + end + end + def dispose + for sprite in @sprites + sprite.dispose + end + @rain_bitmap.dispose + @storm_bitmap.dispose + @snow_bitmap.dispose + end + def type=(type) + return if @type == type + @type = type + case @type + when 1 + bitmap = @rain_bitmap + when 2 + bitmap = @storm_bitmap + when 3 + bitmap = @snow_bitmap + else + bitmap = nil + end + for i in 1..40 + sprite = @sprites[i] + if sprite != nil + sprite.visible = (i <= @max) + sprite.bitmap = bitmap + end + end + end + def ox=(ox) + return if @ox == ox; + @ox = ox + for sprite in @sprites + sprite.ox = @ox + end + end + def oy=(oy) + return if @oy == oy; + @oy = oy + for sprite in @sprites + sprite.oy = @oy + end + end + def max=(max) + return if @max == max; + @max = [[max, 0].max, 40].min + for i in 1..40 + sprite = @sprites[i] + if sprite != nil + sprite.visible = (i <= @max) + end + end + end + def update + return if @type == 0 + for i in 1..@max + sprite = @sprites[i] + if sprite == nil + break + end + if @type == 1 + sprite.x -= 2 + sprite.y += 16 + sprite.opacity -= 8 + end + if @type == 2 + sprite.x -= 8 + sprite.y += 16 + sprite.opacity -= 12 + end + if @type == 3 + sprite.x -= 2 + sprite.y += 8 + sprite.opacity -= 8 + end + x = sprite.x - @ox + y = sprite.y - @oy + if sprite.opacity < 64 or x < -50 or x > 750 or y < -300 or y > 500 + sprite.x = rand(800) - 50 + @ox + sprite.y = rand(800) - 200 + @oy + sprite.opacity = 255 + end + end + end + attr_reader :type + attr_reader :max + attr_reader :ox + attr_reader :oy + end + + class Map + def initialize(width, height) + @tileset_id = 1 + @width = width + @height = height + @autoplay_bgm = false + @bgm = RPG::AudioFile.new + @autoplay_bgs = false + @bgs = RPG::AudioFile.new("", 80) + @encounter_list = [] + @encounter_step = 30 + @data = Table.new(width, height, 3) + @events = {} + end + attr_accessor :tileset_id + attr_accessor :width + attr_accessor :height + attr_accessor :autoplay_bgm + attr_accessor :bgm + attr_accessor :autoplay_bgs + attr_accessor :bgs + attr_accessor :encounter_list + attr_accessor :encounter_step + attr_accessor :data + attr_accessor :events + end + + class MapInfo + def initialize + @name = "" + @parent_id = 0 + @order = 0 + @expanded = false + @scroll_x = 0 + @scroll_y = 0 + end + attr_accessor :name + attr_accessor :parent_id + attr_accessor :order + attr_accessor :expanded + attr_accessor :scroll_x + attr_accessor :scroll_y + end + + class Event + class Page + class Condition + def initialize + @switch1_valid = false + @switch2_valid = false + @variable_valid = false + @self_switch_valid = false + @switch1_id = 1 + @switch2_id = 1 + @variable_id = 1 + @variable_value = 0 + @self_switch_ch = "A" + end + attr_accessor :switch1_valid + attr_accessor :switch2_valid + attr_accessor :variable_valid + attr_accessor :self_switch_valid + attr_accessor :switch1_id + attr_accessor :switch2_id + attr_accessor :variable_id + attr_accessor :variable_value + attr_accessor :self_switch_ch + end + + class Graphic + def initialize + @tile_id = 0 + @character_name = "" + @character_hue = 0 + @direction = 2 + @pattern = 0 + @opacity = 255 + @blend_type = 0 + end + attr_accessor :tile_id + attr_accessor :character_name + attr_accessor :character_hue + attr_accessor :direction + attr_accessor :pattern + attr_accessor :opacity + attr_accessor :blend_type + end + + def initialize + @condition = RPG::Event::Page::Condition.new + @graphic = RPG::Event::Page::Graphic.new + @move_type = 0 + @move_speed = 3 + @move_frequency = 3 + @move_route = RPG::MoveRoute.new + @walk_anime = true + @step_anime = false + @direction_fix = false + @through = false + @always_on_top = false + @trigger = 0 + @list = [RPG::EventCommand.new] + end + attr_accessor :condition + attr_accessor :graphic + attr_accessor :move_type + attr_accessor :move_speed + attr_accessor :move_frequency + attr_accessor :move_route + attr_accessor :walk_anime + attr_accessor :step_anime + attr_accessor :direction_fix + attr_accessor :through + attr_accessor :always_on_top + attr_accessor :trigger + attr_accessor :list + end + + def initialize(x, y) + @id = 0 + @name = "" + @x = x + @y = y + @pages = [RPG::Event::Page.new] + end + attr_accessor :id + attr_accessor :name + attr_accessor :x + attr_accessor :y + attr_accessor :pages + end + + class EventCommand + def initialize(code = 0, indent = 0, parameters = []) + @code = code + @indent = indent + @parameters = parameters + end + attr_accessor :code + attr_accessor :indent + attr_accessor :parameters + end + + class MoveRoute + def initialize + @repeat = true + @skippable = false + @list = [RPG::MoveCommand.new] + end + attr_accessor :repeat + attr_accessor :skippable + attr_accessor :list + end + + class MoveCommand + def initialize(code = 0, parameters = []) + @code = code + @parameters = parameters + end + attr_accessor :code + attr_accessor :parameters + end + + class Actor + def initialize + @id = 0 + @name = "" + @class_id = 1 + @initial_level = 1 + @final_level = 99 + @exp_basis = 30 + @exp_inflation = 30 + @character_name = "" + @character_hue = 0 + @battler_name = "" + @battler_hue = 0 + @parameters = Table.new(6,100) + for i in 1..99 + @parameters[0,i] = 500+i*50 + @parameters[1,i] = 500+i*50 + @parameters[2,i] = 50+i*5 + @parameters[3,i] = 50+i*5 + @parameters[4,i] = 50+i*5 + @parameters[5,i] = 50+i*5 + end + @weapon_id = 0 + @armor1_id = 0 + @armor2_id = 0 + @armor3_id = 0 + @armor4_id = 0 + @weapon_fix = false + @armor1_fix = false + @armor2_fix = false + @armor3_fix = false + @armor4_fix = false + end + attr_accessor :id + attr_accessor :name + attr_accessor :class_id + attr_accessor :initial_level + attr_accessor :final_level + attr_accessor :exp_basis + attr_accessor :exp_inflation + attr_accessor :character_name + attr_accessor :character_hue + attr_accessor :battler_name + attr_accessor :battler_hue + attr_accessor :parameters + attr_accessor :weapon_id + attr_accessor :armor1_id + attr_accessor :armor2_id + attr_accessor :armor3_id + attr_accessor :armor4_id + attr_accessor :weapon_fix + attr_accessor :armor1_fix + attr_accessor :armor2_fix + attr_accessor :armor3_fix + attr_accessor :armor4_fix + end + + class Class + class Learning + def initialize + @level = 1 + @skill_id = 1 + end + attr_accessor :level + attr_accessor :skill_id + end + + def initialize + @id = 0 + @name = "" + @position = 0 + @weapon_set = [] + @armor_set = [] + @element_ranks = Table.new(1) + @state_ranks = Table.new(1) + @learnings = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :position + attr_accessor :weapon_set + attr_accessor :armor_set + attr_accessor :element_ranks + attr_accessor :state_ranks + attr_accessor :learnings + end + + class Skill + def initialize + @id = 0 + @name = "" + @icon_name = "" + @description = "" + @scope = 0 + @occasion = 1 + @animation1_id = 0 + @animation2_id = 0 + @menu_se = RPG::AudioFile.new("", 80) + @common_event_id = 0 + @sp_cost = 0 + @power = 0 + @atk_f = 0 + @eva_f = 0 + @str_f = 0 + @dex_f = 0 + @agi_f = 0 + @int_f = 100 + @hit = 100 + @pdef_f = 0 + @mdef_f = 100 + @variance = 15 + @element_set = [] + @plus_state_set = [] + @minus_state_set = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :icon_name + attr_accessor :description + attr_accessor :scope + attr_accessor :occasion + attr_accessor :animation1_id + attr_accessor :animation2_id + attr_accessor :menu_se + attr_accessor :common_event_id + attr_accessor :sp_cost + attr_accessor :power + attr_accessor :atk_f + attr_accessor :eva_f + attr_accessor :str_f + attr_accessor :dex_f + attr_accessor :agi_f + attr_accessor :int_f + attr_accessor :hit + attr_accessor :pdef_f + attr_accessor :mdef_f + attr_accessor :variance + attr_accessor :element_set + attr_accessor :plus_state_set + attr_accessor :minus_state_set + end + + class Item + def initialize + @id = 0 + @name = "" + @icon_name = "" + @description = "" + @scope = 0 + @occasion = 0 + @animation1_id = 0 + @animation2_id = 0 + @menu_se = RPG::AudioFile.new("", 80) + @common_event_id = 0 + @price = 0 + @consumable = true + @parameter_type = 0 + @parameter_points = 0 + @recover_hp_rate = 0 + @recover_hp = 0 + @recover_sp_rate = 0 + @recover_sp = 0 + @hit = 100 + @pdef_f = 0 + @mdef_f = 0 + @variance = 0 + @element_set = [] + @plus_state_set = [] + @minus_state_set = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :icon_name + attr_accessor :description + attr_accessor :scope + attr_accessor :occasion + attr_accessor :animation1_id + attr_accessor :animation2_id + attr_accessor :menu_se + attr_accessor :common_event_id + attr_accessor :price + attr_accessor :consumable + attr_accessor :parameter_type + attr_accessor :parameter_points + attr_accessor :recover_hp_rate + attr_accessor :recover_hp + attr_accessor :recover_sp_rate + attr_accessor :recover_sp + attr_accessor :hit + attr_accessor :pdef_f + attr_accessor :mdef_f + attr_accessor :variance + attr_accessor :element_set + attr_accessor :plus_state_set + attr_accessor :minus_state_set + end + + class Weapon + def initialize + @id = 0 + @name = "" + @icon_name = "" + @description = "" + @animation1_id = 0 + @animation2_id = 0 + @price = 0 + @atk = 0 + @pdef = 0 + @mdef = 0 + @str_plus = 0 + @dex_plus = 0 + @agi_plus = 0 + @int_plus = 0 + @element_set = [] + @plus_state_set = [] + @minus_state_set = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :icon_name + attr_accessor :description + attr_accessor :animation1_id + attr_accessor :animation2_id + attr_accessor :price + attr_accessor :atk + attr_accessor :pdef + attr_accessor :mdef + attr_accessor :str_plus + attr_accessor :dex_plus + attr_accessor :agi_plus + attr_accessor :int_plus + attr_accessor :element_set + attr_accessor :plus_state_set + attr_accessor :minus_state_set + end + + class Armor + def initialize + @id = 0 + @name = "" + @icon_name = "" + @description = "" + @kind = 0 + @auto_state_id = 0 + @price = 0 + @pdef = 0 + @mdef = 0 + @eva = 0 + @str_plus = 0 + @dex_plus = 0 + @agi_plus = 0 + @int_plus = 0 + @guard_element_set = [] + @guard_state_set = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :icon_name + attr_accessor :description + attr_accessor :kind + attr_accessor :auto_state_id + attr_accessor :price + attr_accessor :pdef + attr_accessor :mdef + attr_accessor :eva + attr_accessor :str_plus + attr_accessor :dex_plus + attr_accessor :agi_plus + attr_accessor :int_plus + attr_accessor :guard_element_set + attr_accessor :guard_state_set + end + + class Enemy + class Action + def initialize + @kind = 0 + @basic = 0 + @skill_id = 1 + @condition_turn_a = 0 + @condition_turn_b = 1 + @condition_hp = 100 + @condition_level = 1 + @condition_switch_id = 0 + @rating = 5 + end + attr_accessor :kind + attr_accessor :basic + attr_accessor :skill_id + attr_accessor :condition_turn_a + attr_accessor :condition_turn_b + attr_accessor :condition_hp + attr_accessor :condition_level + attr_accessor :condition_switch_id + attr_accessor :rating + end + + def initialize + @id = 0 + @name = "" + @battler_name = "" + @battler_hue = 0 + @maxhp = 500 + @maxsp = 500 + @str = 50 + @dex = 50 + @agi = 50 + @int = 50 + @atk = 100 + @pdef = 100 + @mdef = 100 + @eva = 0 + @animation1_id = 0 + @animation2_id = 0 + @element_ranks = Table.new(1) + @state_ranks = Table.new(1) + @actions = [RPG::Enemy::Action.new] + @exp = 0 + @gold = 0 + @item_id = 0 + @weapon_id = 0 + @armor_id = 0 + @treasure_prob = 100 + end + attr_accessor :id + attr_accessor :name + attr_accessor :battler_name + attr_accessor :battler_hue + attr_accessor :maxhp + attr_accessor :maxsp + attr_accessor :str + attr_accessor :dex + attr_accessor :agi + attr_accessor :int + attr_accessor :atk + attr_accessor :pdef + attr_accessor :mdef + attr_accessor :eva + attr_accessor :animation1_id + attr_accessor :animation2_id + attr_accessor :element_ranks + attr_accessor :state_ranks + attr_accessor :actions + attr_accessor :exp + attr_accessor :gold + attr_accessor :item_id + attr_accessor :weapon_id + attr_accessor :armor_id + attr_accessor :treasure_prob + end + + class Troop + class Member + def initialize + @enemy_id = 1 + @x = 0 + @y = 0 + @hidden = false + @immortal = false + end + attr_accessor :enemy_id + attr_accessor :x + attr_accessor :y + attr_accessor :hidden + attr_accessor :immortal + end + + class Page + class Condition + def initialize + @turn_valid = false + @enemy_valid = false + @actor_valid = false + @switch_valid = false + @turn_a = 0 + @turn_b = 0 + @enemy_index = 0 + @enemy_hp = 50 + @actor_id = 1 + @actor_hp = 50 + @switch_id = 1 + end + attr_accessor :turn_valid + attr_accessor :enemy_valid + attr_accessor :actor_valid + attr_accessor :switch_valid + attr_accessor :turn_a + attr_accessor :turn_b + attr_accessor :enemy_index + attr_accessor :enemy_hp + attr_accessor :actor_id + attr_accessor :actor_hp + attr_accessor :switch_id + end + + def initialize + @condition = RPG::Troop::Page::Condition.new + @span = 0 + @list = [RPG::EventCommand.new] + end + attr_accessor :condition + attr_accessor :span + attr_accessor :list + end + + def initialize + @id = 0 + @name = "" + @members = [] + @pages = [RPG::BattleEventPage.new] + end + attr_accessor :id + attr_accessor :name + attr_accessor :members + attr_accessor :pages + end + + class State + def initialize + @id = 0 + @name = "" + @animation_id = 0 + @restriction = 0 + @nonresistance = false + @zero_hp = false + @cant_get_exp = false + @cant_evade = false + @slip_damage = false + @rating = 5 + @hit_rate = 100 + @maxhp_rate = 100 + @maxsp_rate = 100 + @str_rate = 100 + @dex_rate = 100 + @agi_rate = 100 + @int_rate = 100 + @atk_rate = 100 + @pdef_rate = 100 + @mdef_rate = 100 + @eva = 0 + @battle_only = true + @hold_turn = 0 + @auto_release_prob = 0 + @shock_release_prob = 0 + @guard_element_set = [] + @plus_state_set = [] + @minus_state_set = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :animation_id + attr_accessor :restriction + attr_accessor :nonresistance + attr_accessor :zero_hp + attr_accessor :cant_get_exp + attr_accessor :cant_evade + attr_accessor :slip_damage + attr_accessor :rating + attr_accessor :hit_rate + attr_accessor :maxhp_rate + attr_accessor :maxsp_rate + attr_accessor :str_rate + attr_accessor :dex_rate + attr_accessor :agi_rate + attr_accessor :int_rate + attr_accessor :atk_rate + attr_accessor :pdef_rate + attr_accessor :mdef_rate + attr_accessor :eva + attr_accessor :battle_only + attr_accessor :hold_turn + attr_accessor :auto_release_prob + attr_accessor :shock_release_prob + attr_accessor :guard_element_set + attr_accessor :plus_state_set + attr_accessor :minus_state_set + end + + class Animation + class Frame + def initialize + @cell_max = 0 + @cell_data = Table.new(0, 0) + end + attr_accessor :cell_max + attr_accessor :cell_data + end + + class Timing + def initialize + @frame = 0 + @se = RPG::AudioFile.new("", 80) + @flash_scope = 0 + @flash_color = Color.new(255,255,255,255) + @flash_duration = 5 + @condition = 0 + end + attr_accessor :frame + attr_accessor :se + attr_accessor :flash_scope + attr_accessor :flash_color + attr_accessor :flash_duration + attr_accessor :condition + end + + def initialize + @id = 0 + @name = "" + @animation_name = "" + @animation_hue = 0 + @position = 1 + @frame_max = 1 + @frames = [RPG::Animation::Frame.new] + @timings = [] + end + attr_accessor :id + attr_accessor :name + attr_accessor :animation_name + attr_accessor :animation_hue + attr_accessor :position + attr_accessor :frame_max + attr_accessor :frames + attr_accessor :timings + end + + class Tileset + def initialize + @id = 0 + @name = "" + @tileset_name = "" + @autotile_names = [""]*7 + @panorama_name = "" + @panorama_hue = 0 + @fog_name = "" + @fog_hue = 0 + @fog_opacity = 64 + @fog_blend_type = 0 + @fog_zoom = 200 + @fog_sx = 0 + @fog_sy = 0 + @battleback_name = "" + @passages = Table.new(384) + @priorities = Table.new(384) + @priorities[0] = 5 + @terrain_tags = Table.new(384) + end + attr_accessor :id + attr_accessor :name + attr_accessor :tileset_name + attr_accessor :autotile_names + attr_accessor :panorama_name + attr_accessor :panorama_hue + attr_accessor :fog_name + attr_accessor :fog_hue + attr_accessor :fog_opacity + attr_accessor :fog_blend_type + attr_accessor :fog_zoom + attr_accessor :fog_sx + attr_accessor :fog_sy + attr_accessor :battleback_name + attr_accessor :passages + attr_accessor :priorities + attr_accessor :terrain_tags + end + + class CommonEvent + def initialize + @id = 0 + @name = "" + @trigger = 0 + @switch_id = 1 + @list = [RPG::EventCommand.new] + end + attr_accessor :id + attr_accessor :name + attr_accessor :trigger + attr_accessor :switch_id + attr_accessor :list + end + + class System + class Words + def initialize + @gold = "" + @hp = "" + @sp = "" + @str = "" + @dex = "" + @agi = "" + @int = "" + @atk = "" + @pdef = "" + @mdef = "" + @weapon = "" + @armor1 = "" + @armor2 = "" + @armor3 = "" + @armor4 = "" + @attack = "" + @skill = "" + @guard = "" + @item = "" + @equip = "" + end + attr_accessor :gold + attr_accessor :hp + attr_accessor :sp + attr_accessor :str + attr_accessor :dex + attr_accessor :agi + attr_accessor :int + attr_accessor :atk + attr_accessor :pdef + attr_accessor :mdef + attr_accessor :weapon + attr_accessor :armor1 + attr_accessor :armor2 + attr_accessor :armor3 + attr_accessor :armor4 + attr_accessor :attack + attr_accessor :skill + attr_accessor :guard + attr_accessor :item + attr_accessor :equip + end + + class TestBattler + def initialize + @actor_id = 1 + @level = 1 + @weapon_id = 0 + @armor1_id = 0 + @armor2_id = 0 + @armor3_id = 0 + @armor4_id = 0 + end + attr_accessor :actor_id + attr_accessor :level + attr_accessor :weapon_id + attr_accessor :armor1_id + attr_accessor :armor2_id + attr_accessor :armor3_id + attr_accessor :armor4_id + end + + def initialize + @magic_number = 0 + @party_members = [1] + @elements = [nil, ""] + @switches = [nil, ""] + @variables = [nil, ""] + @windowskin_name = "" + @title_name = "" + @gameover_name = "" + @battle_transition = "" + @title_bgm = RPG::AudioFile.new + @battle_bgm = RPG::AudioFile.new + @battle_end_me = RPG::AudioFile.new + @gameover_me = RPG::AudioFile.new + @cursor_se = RPG::AudioFile.new("", 80) + @decision_se = RPG::AudioFile.new("", 80) + @cancel_se = RPG::AudioFile.new("", 80) + @buzzer_se = RPG::AudioFile.new("", 80) + @equip_se = RPG::AudioFile.new("", 80) + @shop_se = RPG::AudioFile.new("", 80) + @save_se = RPG::AudioFile.new("", 80) + @load_se = RPG::AudioFile.new("", 80) + @battle_start_se = RPG::AudioFile.new("", 80) + @escape_se = RPG::AudioFile.new("", 80) + @actor_collapse_se = RPG::AudioFile.new("", 80) + @enemy_collapse_se = RPG::AudioFile.new("", 80) + @words = RPG::System::Words.new + @test_battlers = [] + @test_troop_id = 1 + @start_map_id = 1 + @start_x = 0 + @start_y = 0 + @battleback_name = "" + @battler_name = "" + @battler_hue = 0 + @edit_map_id = 1 + end + attr_accessor :magic_number + attr_accessor :party_members + attr_accessor :elements + attr_accessor :switches + attr_accessor :variables + attr_accessor :windowskin_name + attr_accessor :title_name + attr_accessor :gameover_name + attr_accessor :battle_transition + attr_accessor :title_bgm + attr_accessor :battle_bgm + attr_accessor :battle_end_me + attr_accessor :gameover_me + attr_accessor :cursor_se + attr_accessor :decision_se + attr_accessor :cancel_se + attr_accessor :buzzer_se + attr_accessor :equip_se + attr_accessor :shop_se + attr_accessor :save_se + attr_accessor :load_se + attr_accessor :battle_start_se + attr_accessor :escape_se + attr_accessor :actor_collapse_se + attr_accessor :enemy_collapse_se + attr_accessor :words + attr_accessor :test_battlers + attr_accessor :test_troop_id + attr_accessor :start_map_id + attr_accessor :start_x + attr_accessor :start_y + attr_accessor :battleback_name + attr_accessor :battler_name + attr_accessor :battler_hue + attr_accessor :edit_map_id + end + + class AudioFile + def initialize(name = "", volume = 100, pitch = 100) + @name = name + @volume = volume + @pitch = pitch + end + attr_accessor :name + attr_accessor :volume + attr_accessor :pitch + end +end diff --git a/binding-mruby/viewport-binding.cpp b/binding-mruby/viewport-binding.cpp index 67f2244..cae0320 100644 --- a/binding-mruby/viewport-binding.cpp +++ b/binding-mruby/viewport-binding.cpp @@ -32,24 +32,26 @@ MRB_METHOD(viewportInitialize) { Viewport *v; - if (mrb->c->ci->argc == 1) + mrb_value one, two, three, four; + int argc = mrb_get_args(mrb, "o|iii", &one, &two, &three, &four); + + if (argc == 1) { /* The rect arg is only used to init the viewport, * and does NOT replace its 'rect' property */ - mrb_value rectObj; + mrb_value rectObj = one; Rect *rect; - mrb_get_args(mrb, "o", &rectObj); - rect = getPrivateDataCheck(mrb, rectObj, RectType); v = new Viewport(rect); } else { - mrb_int x, y, width, height; - - mrb_get_args(mrb, "iiii", &x, &y, &width, &height); + mrb_int x = mrb_fixnum(one), + y = mrb_fixnum(two), + width = mrb_fixnum(three), + height = mrb_fixnum(four); v = new Viewport(x, y, width, height); } diff --git a/src/al-util.h b/src/al-util.h index 51801e7..fa31716 100644 --- a/src/al-util.h +++ b/src/al-util.h @@ -22,7 +22,7 @@ #ifndef ALUTIL_H #define ALUTIL_H -#include +#include #include #include diff --git a/src/alstream.cpp b/src/alstream.cpp index 487f09f..bb9a8ce 100644 --- a/src/alstream.cpp +++ b/src/alstream.cpp @@ -210,7 +210,7 @@ struct ALStreamOpenHandler : FileSystem::OpenHandler : srcOps(&srcOps), looped(looped), source(0) {} - bool tryRead(SDL_RWops &ops, const char *ext) + bool tryRead(SDL_RWops &ops, const char *ext, const char *fullPath) { /* Copy this because we need to keep it around, * as we will continue reading data from it later */ diff --git a/src/bitmap.cpp b/src/bitmap.cpp index 96cd968..779b924 100644 --- a/src/bitmap.cpp +++ b/src/bitmap.cpp @@ -241,9 +241,13 @@ struct BitmapOpenHandler : FileSystem::OpenHandler : surf(0) {} - bool tryRead(SDL_RWops &ops, const char *ext) + bool tryRead(SDL_RWops &ops, const char *ext, const char * fullPath) { +#ifdef __EMSCRIPTEN__ + surf = IMG_Load(fullPath); +#else surf = IMG_LoadTyped_RW(&ops, 1, ext); +#endif return surf != 0; } }; @@ -254,9 +258,11 @@ Bitmap::Bitmap(const char *filename) shState->fileSystem().openRead(handler, filename); SDL_Surface *imgSurf = handler.surf; - if (!imgSurf) + if (!imgSurf) { + printf("ERROR OCCURED LOADING IMAGE %s : %s\n", filename, SDL_GetError()); throw Exception(Exception::SDLError, "Error loading image '%s': %s", filename, SDL_GetError()); + } p->ensureFormat(imgSurf, SDL_PIXELFORMAT_ABGR8888); diff --git a/src/config.cpp b/src/config.cpp index e4ea80c..e32da07 100644 --- a/src/config.cpp +++ b/src/config.cpp @@ -150,14 +150,9 @@ Config::Config() void Config::read(int argc, char *argv[]) { - gameFolder = "game"; - defScreenW = 640; - defScreenH = 480; - enableBlitting = true; - smoothScaling = true; - subImageFix = false; - -#if 0 +#undef PO_DESC +#define PO_DESC(a, b, c) a = c; + #define PO_DESC_ALL \ PO_DESC(rgssVersion, int, 0) \ PO_DESC(debugMode, bool, false) \ @@ -194,6 +189,19 @@ void Config::read(int argc, char *argv[]) PO_DESC(pathCache, bool, true) \ PO_DESC(useScriptNames, bool, false) + PO_DESC_ALL; + gameFolder = "game"; + fixedFramerate = -1; + syncToRefreshrate = false; + rgssVersion = 1; + defScreenW = 640; + defScreenH = 480; + enableBlitting = false; + +#undef PO_DESC +#undef PO_DESC_ALL + +#if 0 // Not gonna take your shit boost #define GUARD_ALL( exp ) try { exp } catch(...) {} diff --git a/src/eventthread.cpp b/src/eventthread.cpp index 6ffdb29..ac2e3fd 100644 --- a/src/eventthread.cpp +++ b/src/eventthread.cpp @@ -29,9 +29,8 @@ #include #include -#include -#include -#include +#include +#include #include "sharedstate.h" #include "graphics.h" @@ -41,18 +40,10 @@ #include -typedef void (ALC_APIENTRY *LPALCDEVICEPAUSESOFT) (ALCdevice *device); -typedef void (ALC_APIENTRY *LPALCDEVICERESUMESOFT) (ALCdevice *device); - -#define AL_DEVICE_PAUSE_FUN \ - AL_FUN(DevicePause, LPALCDEVICEPAUSESOFT) \ - AL_FUN(DeviceResume, LPALCDEVICERESUMESOFT) struct ALCFunctions { -#define AL_FUN(name, type) type name; - AL_DEVICE_PAUSE_FUN -#undef AL_FUN + } static alc; static void @@ -62,13 +53,9 @@ initALCFunctions(ALCdevice *alcDev) return; Debug() << "ALC_SOFT_pause_device present"; - -#define AL_FUN(name, type) alc. name = (type) alcGetProcAddress(alcDev, "alc" #name "SOFT"); - AL_DEVICE_PAUSE_FUN; -#undef AL_FUN } -#define HAVE_ALC_DEVICE_PAUSE alc.DevicePause +#define HAVE_ALC_DEVICE_PAUSE false uint8_t EventThread::keyStates[]; EventThread::JoyState EventThread::joyState; @@ -112,13 +99,18 @@ void EventThread::process(RGSSThreadData &rtData) SDL_Window *win = rtData.window; UnidirMessage &windowSizeMsg = rtData.windowSizeMsg; - initALCFunctions(rtData.alcDev); + static bool once = true; + if (once) { + initALCFunctions(rtData.alcDev); - // XXX this function breaks input focus on OSX + // XXX this function breaks input focus on OSX #ifndef __MACOSX__ - SDL_SetEventFilter(eventFilter, &rtData); + SDL_SetEventFilter(eventFilter, &rtData); #endif + once = false; + } + fullscreen = rtData.config.fullscreen; int toggleFSMod = rtData.config.anyAltToggleFS ? KMOD_ALT : KMOD_LALT; @@ -159,13 +151,8 @@ void EventThread::process(RGSSThreadData &rtData) SettingsMenu *sMenu = 0; - while (true) + while (SDL_PollEvent(&event)) { - if (!SDL_WaitEvent(&event)) - { - Debug() << "EventThread: Event error"; - break; - } if (sMenu && sMenu->onEvent(event)) { @@ -459,11 +446,13 @@ void EventThread::process(RGSSThreadData &rtData) break; } +#ifndef __EMSCRIPTEN__ /* Just in case */ rtData.syncPoint.resumeThreads(); if (SDL_JoystickGetAttached(js)) SDL_JoystickClose(js); +#endif delete sMenu; } @@ -477,8 +466,10 @@ int EventThread::eventFilter(void *data, SDL_Event *event) case SDL_APP_WILLENTERBACKGROUND : Debug() << "SDL_APP_WILLENTERBACKGROUND"; +#if HAVE_ALC_DEVICE_PAUSE if (HAVE_ALC_DEVICE_PAUSE) alc.DevicePause(rtData.alcDev); +#endif rtData.syncPoint.haltThreads(); @@ -495,8 +486,10 @@ int EventThread::eventFilter(void *data, SDL_Event *event) case SDL_APP_DIDENTERFOREGROUND : Debug() << "SDL_APP_DIDENTERFOREGROUND"; +#if HAVE_ALC_DEVICE_PAUSE if (HAVE_ALC_DEVICE_PAUSE) alc.DeviceResume(rtData.alcDev); +#endif rtData.syncPoint.resumeThreads(); @@ -593,18 +586,11 @@ void EventThread::requestShowCursor(bool mode) SDL_PushEvent(&event); } +#include void EventThread::showMessageBox(const char *body, int flags) { msgBoxDone.clear(); - - SDL_Event event; - event.user.code = flags; - event.user.data1 = strdup(body); - event.type = usrIdStart + REQUEST_MESSAGEBOX; - SDL_PushEvent(&event); - - /* Keep repainting screen while box is open */ - shState->graphics().repaintWait(msgBoxDone); + printf(body); /* Prevent endless loops */ resetInputStates(); } diff --git a/src/filesystem.cpp b/src/filesystem.cpp index c6f96fe..af0b2ba 100644 --- a/src/filesystem.cpp +++ b/src/filesystem.cpp @@ -625,7 +625,7 @@ openReadEnumCB(void *d, const char *dirpath, const char *filename) const char *ext = findExt(filename); - if (data.handler.tryRead(data.ops, ext)) + if (data.handler.tryRead(data.ops, ext, fullPath)) data.stopSearching = true; ++data.matchCount; @@ -678,11 +678,15 @@ void FileSystem::openRead(OpenHandler &handler, const char *filename) PHYSFS_enumerate(dir, openReadEnumCB, &data); } - if (data.physfsError) + if (data.physfsError) { + printf("PHYSFS ERROR %s\n", filename); throw Exception(Exception::PHYSFSError, "PhysFS: %s", data.physfsError); + } - if (data.matchCount == 0) + if (data.matchCount == 0) { + printf("NO SUCH FILE %s\n", filename); throw Exception(Exception::NoFileError, "%s", filename); + } } void FileSystem::openReadRaw(SDL_RWops &ops, diff --git a/src/filesystem.h b/src/filesystem.h index 1f9f79f..a650cb4 100644 --- a/src/filesystem.h +++ b/src/filesystem.h @@ -53,7 +53,7 @@ public: * After this function returns, ops becomes invalid, so don't take * references to it. Instead, copy the structure without closing * if you need to further read from it later. */ - virtual bool tryRead(SDL_RWops &ops, const char *ext) = 0; + virtual bool tryRead(SDL_RWops &ops, const char *ext, const char *fullPath) = 0; }; void openRead(OpenHandler &handler, @@ -66,7 +66,6 @@ public: /* Does not perform extension supplementing */ bool exists(const char *filename); - private: FileSystemPrivate *p; }; diff --git a/src/fluid-fun.cpp b/src/fluid-fun.cpp index 4bb2dbe..d91da4f 100644 --- a/src/fluid-fun.cpp +++ b/src/fluid-fun.cpp @@ -13,8 +13,12 @@ #elif __WINDOWS__ #define FLUID_LIB "fluidsynth.dll" #else +#ifdef __EMSCRIPTEN__ +#define FLUID_LIB "fluidsynth.bc" +#else #error "platform not recognized" #endif +#endif struct FluidFunctions fluid; @@ -22,6 +26,10 @@ static void *so; void initFluidFunctions() { +#ifdef __EMSCRIPTEN__ + goto fail; +#endif + #ifdef SHARED_FLUID #define FLUID_FUN(name, type) \ diff --git a/src/graphics.cpp b/src/graphics.cpp index c53fe0e..0ef9adc 100644 --- a/src/graphics.cpp +++ b/src/graphics.cpp @@ -418,6 +418,10 @@ struct FPSLimiter private: void delayTicks(uint64_t ticks) { +#ifdef __EMSCRIPTEN__ + return; +#endif + #if defined(HAVE_NANOSLEEP) struct timespec req; uint64_t nsec = ticks / tickFreqNS; @@ -751,6 +755,7 @@ void Graphics::transition(int duration, /* We need to clean up transMap properly before * a possible longjmp, so we manually test for * shutdown/reset here */ + if (p->threadData->rqTerm) { glState.blend.pop(); diff --git a/src/main.cpp b/src/main.cpp index e457639..c67b91f 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -19,7 +19,7 @@ ** along with mkxp. If not, see . */ -#include +#include #include #include @@ -111,11 +111,6 @@ int rgssThreadFun(void *userdata) printGLInfo(); - bool vsync = conf.vsync || conf.syncToRefreshrate; - SDL_GL_SetSwapInterval(vsync ? 1 : 0); - - GLDebugLogger dLogger; - /* Setup AL context */ ALCcontext *alcCtx = alcCreateContext(threadData->alcDev, 0); @@ -145,6 +140,7 @@ int rgssThreadFun(void *userdata) /* Start script execution */ scriptBinding->execute(); +#ifndef __EMSCRIPTEN__ threadData->rqTermAck.set(); threadData->ethread->requestTerminate(); @@ -152,6 +148,10 @@ int rgssThreadFun(void *userdata) alcDestroyContext(alcCtx); SDL_GL_DeleteContext(glCtx); +#endif + + bool vsync = conf.vsync || conf.syncToRefreshrate; + SDL_GL_SetSwapInterval(vsync ? 1 : 0); return 0; } @@ -239,7 +239,11 @@ int main(int argc, char *argv[]) assert(conf.rgssVersion >= 1 && conf.rgssVersion <= 3); printRgssVersion(conf.rgssVersion); +#ifdef __EMSCRIPTEN__ + int imgFlags = 0; +#else int imgFlags = IMG_INIT_PNG | IMG_INIT_JPG; +#endif if (IMG_Init(imgFlags) != imgFlags) { showInitError(std::string("Error initializing SDL_image: ") + SDL_GetError()); @@ -324,13 +328,19 @@ int main(int argc, char *argv[]) /* Load and post key bindings */ rtData.bindingUpdateMsg.post(loadBindings(conf)); - /* Start RGSS thread */ - SDL_Thread *rgssThread = - SDL_CreateThread(rgssThreadFun, "rgss", &rtData); - /* Start event processing */ eventThread.process(rtData); +#ifdef __EMSCRIPTEN__ + ::rgssThreadFun(&rtData); + printf("Exiting main function\n"); + return 0; +#endif + + /* Start RGSS thread */ + rgssThreadFun(&rtData); + return 0; + /* Request RGSS thread to stop */ rtData.rqTerm.set(); @@ -350,8 +360,8 @@ int main(int argc, char *argv[]) /* If RGSS thread ack'd request, wait for it to shutdown, * otherwise abandon hope and just end the process as is. */ - if (rtData.rqTermAck) - SDL_WaitThread(rgssThread, 0); + if (rtData.rqTermAck); +// SDL_WaitThread(rgssThread, 0); else SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, conf.windowTitle.c_str(), "The RGSS script seems to be stuck and mkxp will now force quit", win); diff --git a/src/rgssad.cpp b/src/rgssad.cpp index ac8772a..cb163ec 100644 --- a/src/rgssad.cpp +++ b/src/rgssad.cpp @@ -23,7 +23,8 @@ #include "boost-hash.h" #include -#include +#include +#include struct RGSS_entryData { @@ -293,7 +294,8 @@ processDirectories(RGSS_archiveData *data, BoostSet &topLevel, if (slash) nameBuf[i] = '\0'; - topLevel.insert(nameBuf); + std::string nameBufStr(nameBuf); + topLevel.insert(nameBufStr); if (slash) nameBuf[i] = '/'; @@ -639,3 +641,4 @@ const PHYSFS_Archiver RGSS3_Archiver = RGSS_stat, RGSS_closeArchive }; + diff --git a/src/sdl-util.h b/src/sdl-util.h index 4c94d39..bf6e3f1 100644 --- a/src/sdl-util.h +++ b/src/sdl-util.h @@ -1,7 +1,10 @@ #ifndef SDLUTIL_H #define SDLUTIL_H +#ifndef __EMSCRIPTEN__ #include +#endif + #include #include @@ -17,21 +20,37 @@ struct AtomicFlag void set() { +#ifdef __EMSCRIPTEN__ + atom = true; +#else SDL_AtomicSet(&atom, 1); +#endif } void clear() { +#ifdef __EMSCRIPTEN__ + atom = false; +#else SDL_AtomicSet(&atom, 0); +#endif } operator bool() const { +#ifdef __EMSCRIPTEN__ + return atom; +#else return SDL_AtomicGet(&atom); +#endif } private: +#ifdef __EMSCRIPTEN__ + bool atom = false; +#else mutable SDL_atomic_t atom; +#endif }; template diff --git a/src/sharedstate.cpp b/src/sharedstate.cpp index 0778da9..fc19376 100644 --- a/src/sharedstate.cpp +++ b/src/sharedstate.cpp @@ -263,16 +263,13 @@ void SharedState::bindTex() void SharedState::ensureTexSize(int minW, int minH, Vec2i ¤tSizeOut) { - if (minW > p->globalTexW) - { - p->globalTexDirty = true; - p->globalTexW = findNextPow2(minW); - } + minW = findNextPow2(minW); minH = findNextPow2(minH); - if (minH > p->globalTexH) + if (minW != p->globalTexW || minH != p->globalTexH) { + p->globalTexW = minW; + p->globalTexH = minH; p->globalTexDirty = true; - p->globalTexH = findNextPow2(minH); } currentSizeOut = Vec2i(p->globalTexW, p->globalTexH); @@ -280,22 +277,12 @@ void SharedState::ensureTexSize(int minW, int minH, Vec2i ¤tSizeOut) TEXFBO &SharedState::gpTexFBO(int minW, int minH) { - bool needResize = false; + minW = findNextPow2(minW); minH = findNextPow2(minH); - if (minW > p->gpTexFBO.width) - { - p->gpTexFBO.width = findNextPow2(minW); - needResize = true; - } - - if (minH > p->gpTexFBO.height) - { - p->gpTexFBO.height = findNextPow2(minH); - needResize = true; - } - - if (needResize) + if (minW != p->gpTexFBO.width || minH != p->gpTexFBO.height) { + p->gpTexFBO.width = minW; + p->gpTexFBO.height = minH; TEX::bind(p->gpTexFBO.tex); TEX::allocEmpty(p->gpTexFBO.width, p->gpTexFBO.height); } diff --git a/src/soundemitter.cpp b/src/soundemitter.cpp index 74eaf03..5e5dba4 100644 --- a/src/soundemitter.cpp +++ b/src/soundemitter.cpp @@ -192,7 +192,7 @@ struct SoundOpenHandler : FileSystem::OpenHandler : buffer(0) {} - bool tryRead(SDL_RWops &ops, const char *ext) + bool tryRead(SDL_RWops &ops, const char *ext, const char *fullPath) { Sound_Sample *sample = Sound_NewSample(&ops, ext, 0, STREAM_BUF_SIZE); diff --git a/src/window.cpp b/src/window.cpp index 71a8cc9..9c450d0 100644 --- a/src/window.cpp +++ b/src/window.cpp @@ -388,29 +388,16 @@ struct WindowPrivate void ensureBaseTexReady() { - /* Make sure texture is big enough */ - int newW = baseTex.width; - int newH = baseTex.height; - bool resizeNeeded = false; + /* Make sure texture is properly sized */ + int newW = findNextPow2(size.x); + int newH = findNextPow2(size.y); - if (size.x > baseTex.width) + if (newW != baseTex.width || newH != baseTex.height) { - newW = findNextPow2(size.x); - resizeNeeded = true; + shState->texPool().release(baseTex); + baseTex = shState->texPool().request(newW, newH); + baseTexDirty = true; } - if (size.y > baseTex.height) - { - newH = findNextPow2(size.y); - resizeNeeded = true; - } - - if (!resizeNeeded) - return; - - shState->texPool().release(baseTex); - baseTex = shState->texPool().request(newW, newH); - - baseTexDirty = true; } void redrawBaseTex()