diff --git a/.bumpversion.cfg b/.bumpversion.cfg index a78c358c0..ff300ef0d 100644 --- a/.bumpversion.cfg +++ b/.bumpversion.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 2.7.1-alpha +current_version = 3.0.0-alpha1 commit = True tag = False parse = (?P\d+)\.(?P\d+)\.(?P\d+)(\-(?P[a-z]+))? diff --git a/.editorconfig b/.editorconfig index 344a864e4..5d4840f4d 100644 --- a/.editorconfig +++ b/.editorconfig @@ -12,5 +12,5 @@ insert_final_newline = true [Makefile] indent_style = tab -[*.{c,h,cpp,hpp}] +[*.{c,h,cpp,hpp,js,ts,jsx,tsx,css,scss,html,xml,json,yml,md}] indent_size = 2 diff --git a/Doxyfile b/Doxyfile index c551f3c93..d7123884e 100644 --- a/Doxyfile +++ b/Doxyfile @@ -38,7 +38,7 @@ PROJECT_NAME = SensESP # could be handy for archiving the generated documentation or if some version # control system is used. -PROJECT_NUMBER = 2.7.1-alpha +PROJECT_NUMBER = 3.0.0-alpha # Using the PROJECT_BRIEF tag one can provide an optional one line description # for a project that appears at the top of each page and should give viewer a diff --git a/VERSION b/VERSION index 6ca30aaf6..ff3a37283 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -2.7.1-alpha +3.0.0-alpha diff --git a/examples/analog_input.cpp b/examples/analog_input.cpp index b0d1b9b83..68200e9ce 100644 --- a/examples/analog_input.cpp +++ b/examples/analog_input.cpp @@ -1,7 +1,8 @@ +#include "sensesp/sensors/analog_input.h" + #include -#include "sensesp/sensors/analog_input.h" #include "sensesp/signalk/signalk_output.h" #include "sensesp/transforms/linear.h" #include "sensesp_app.h" @@ -90,9 +91,6 @@ void setup() { analog_input->connect_to(new Linear(multiplier, offset, linear_config_path)) ->connect_to(new SKOutputFloat(sk_path, "", new SKMetadata("ratio", "Indoor light"))); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/async_repeat_sensor.cpp b/examples/async_repeat_sensor.cpp index 37f3dabdf..1a0cf2b8a 100644 --- a/examples/async_repeat_sensor.cpp +++ b/examples/async_repeat_sensor.cpp @@ -56,9 +56,6 @@ void setup() { // Connect the output of the digital input to the SKOutput object which // transmits the results to the Signal K server. digital->connect_to(new SKOutputFloat(sk_path, "")); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/chain_counter.cpp b/examples/chain_counter.cpp index 53a690e1a..66498e50c 100644 --- a/examples/chain_counter.cpp +++ b/examples/chain_counter.cpp @@ -1,10 +1,10 @@ -#include "sensesp_app.h" -#include "sensesp_app_builder.h" #include "sensesp/sensors/digital_input.h" #include "sensesp/signalk/signalk_output.h" #include "sensesp/system/lambda_consumer.h" #include "sensesp/transforms/debounce.h" #include "sensesp/transforms/integrator.h" +#include "sensesp_app.h" +#include "sensesp_app_builder.h" using namespace sensesp; @@ -96,8 +96,8 @@ void setup() { */ int read_delay = 10; String read_delay_config_path = "/button_watcher/read_delay"; - auto* button_watcher = new DigitalInputChange( - BUTTON_PIN, INPUT, read_delay, read_delay_config_path); + auto* button_watcher = new DigitalInputChange(BUTTON_PIN, INPUT, read_delay, + read_delay_config_path); /** * Create a DebounceInt to make sure we get a nice, clean signal from the @@ -144,9 +144,6 @@ void setup() { /* Connect the button_watcher to the debounce to the button_consumer. */ button_watcher->connect_to(debounce)->connect_to(button_consumer); - - /* Finally, start the SensESPApp */ - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/constant_sensor.cpp b/examples/constant_sensor.cpp index 54add741c..05bce5e17 100644 --- a/examples/constant_sensor.cpp +++ b/examples/constant_sensor.cpp @@ -12,6 +12,7 @@ */ #include "sensesp/sensors/constant_sensor.h" + #include "sensesp_app_builder.h" using namespace sensesp; @@ -37,9 +38,6 @@ void setup() { constant_sensor->connect_to( new SKOutputFloat("tanks.freshWater.capacity", "", new SKMetadata("m3", "Fresh Water Tank Capacity"))); - - // Start the SensESP application running - sensesp_app->start(); } void loop() { app.tick(); } diff --git a/examples/freertos_tasks.cpp b/examples/freertos_tasks.cpp index ff2305050..8a07a6a70 100644 --- a/examples/freertos_tasks.cpp +++ b/examples/freertos_tasks.cpp @@ -43,8 +43,7 @@ void setup() { SensESPMinimalAppBuilder builder; SensESPMinimalApp *sensesp_app = builder.set_hostname("async")->get_app(); - auto *networking = new Networking( - "/system/net", "", "", SensESPBaseApp::get_hostname(), "thisisfine"); + auto *networking = new Networking("/system/net", "", ""); auto *http_server = new HTTPServer(); // create the SK delta object @@ -65,7 +64,7 @@ void setup() { auto *system_status_led = new SystemStatusLed(LED_BUILTIN); system_status_controller->connect_to(system_status_led); - ws_client_->get_delta_count_producer().connect_to(system_status_led); + ws_client_->get_delta_tx_count_producer().connect_to(system_status_led); // create a new task for toggling the output pin @@ -88,17 +87,11 @@ void setup() { // create a new SKListener for navigation.headingMagnetic auto hdg = new SKValueListener("navigation.headingMagnetic"); - hdg->connect_to(new LambdaConsumer([](float input) { - debugD("Heading: %f", input); - })); + hdg->connect_to(new LambdaConsumer( + [](float input) { debugD("Heading: %f", input); })); // print out free heap - app.onRepeat(2000, []() { - debugD("Free heap: %d", ESP.getFreeHeap()); - }); - - // Start the SensESP application running - sensesp_app->start(); + app.onRepeat(2000, []() { debugD("Free heap: %d", ESP.getFreeHeap()); }); } // The loop function is called in an endless loop during program execution. diff --git a/examples/fuel_level_sensor/fuel_level_sensor_example.cpp b/examples/fuel_level_sensor/fuel_level_sensor_example.cpp index 66a0f05c9..a622efd15 100644 --- a/examples/fuel_level_sensor/fuel_level_sensor_example.cpp +++ b/examples/fuel_level_sensor/fuel_level_sensor_example.cpp @@ -1,7 +1,7 @@ -#include "sensesp_app_builder.h" #include "sensesp/sensors/analog_input.h" #include "sensesp/signalk/signalk_output.h" #include "sensesp/transforms/moving_average.h" +#include "sensesp_app_builder.h" #define SERIAL_DEBUG_DISABLED = true @@ -37,12 +37,8 @@ void setup() { // https://signalk.org/specification/1.4.0/doc/vesselsBranch.html#vesselsregexptanks input->connect_to(avg)->connect_to( new SKOutputFloat("tanks.fuel.0.currentLevel")); - - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. // It simply calls `app.tick()` which will then execute all reactions as needed. -void loop() { - app.tick(); -} +void loop() { app.tick(); } diff --git a/examples/hysteresis.cpp b/examples/hysteresis.cpp index 69aec9611..864c85392 100644 --- a/examples/hysteresis.cpp +++ b/examples/hysteresis.cpp @@ -1,9 +1,10 @@ +#include "sensesp/transforms/hysteresis.h" + #include #include "sensesp/sensors/analog_input.h" #include "sensesp/signalk/signalk_output.h" -#include "sensesp/transforms/hysteresis.h" #include "sensesp_app_builder.h" using namespace sensesp; @@ -44,8 +45,6 @@ void setup() { ->connect_to(new Hysteresis(0.3, 0.5, false, true, "/transforms/hysteresis")) ->connect_to(new SKOutputBool(sk_path)); - - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/lambda_transform.cpp b/examples/lambda_transform.cpp index 841d522f8..c41b8c644 100644 --- a/examples/lambda_transform.cpp +++ b/examples/lambda_transform.cpp @@ -1,8 +1,9 @@ +#include "sensesp/transforms/lambda_transform.h" + #include #include "sensesp/sensors/analog_input.h" #include "sensesp/signalk/signalk_output.h" -#include "sensesp/transforms/lambda_transform.h" #include "sensesp_app_builder.h" using namespace sensesp; @@ -89,8 +90,6 @@ void setup() { analog_input->connect_to(log_transform) ->connect_to(new SKOutputFloat(sk_path)); - - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/manual_networking.cpp b/examples/manual_networking.cpp index 950c87d23..01e0b7f52 100644 --- a/examples/manual_networking.cpp +++ b/examples/manual_networking.cpp @@ -59,8 +59,6 @@ void setup() { })); digin->connect_to(new SKOutputBool("electrical.switches.0.state", "/digin/state")); - - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/milone_level_sensor/milone_level_sensor.cpp b/examples/milone_level_sensor/milone_level_sensor.cpp index 150235f00..52dadf904 100644 --- a/examples/milone_level_sensor/milone_level_sensor.cpp +++ b/examples/milone_level_sensor/milone_level_sensor.cpp @@ -133,9 +133,6 @@ void setup() { "/freshWaterTank_starboard/samples")) ->connect_to( new SKOutputFloat("tanks.freshwater.starboard.currentLevel")); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/minimal_app.cpp b/examples/minimal_app.cpp index 7ea49f1ad..86614852c 100644 --- a/examples/minimal_app.cpp +++ b/examples/minimal_app.cpp @@ -37,8 +37,7 @@ void setup() { // manually create Networking and HTTPServer objects to enable // the HTTP configuration interface - auto* networking = new Networking( - "/system/net", "", "", SensESPBaseApp::get_hostname(), "thisisfine"); + auto* networking = new Networking("/system/net", "", ""); auto* http_server = new HTTPServer(); auto* digin1 = new DigitalInputCounter(input_pin1, INPUT, RISING, read_delay); @@ -67,8 +66,6 @@ void setup() { pinMode(output_pin2, OUTPUT); app.onRepeat(100, []() { digitalWrite(output_pin2, !digitalRead(output_pin2)); }); - - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/raw_json.cpp b/examples/raw_json.cpp index eb9378370..e06975bf5 100644 --- a/examples/raw_json.cpp +++ b/examples/raw_json.cpp @@ -28,7 +28,7 @@ void setup() { // take some boolean input and convert it into a simple serialized JSON // document auto jsonify = new LambdaTransform([](bool input) -> String { - DynamicJsonDocument doc(1024); + JsonDocument doc; doc["output_1"] = input; String output; serializeJson(doc, output); @@ -45,8 +45,6 @@ void setup() { const char *sk_path = "environment.json.pin15"; jsonify->connect_to(new SKOutputRawJson(sk_path, "")); - - sensesp_app->start(); } void loop() { app.tick(); } diff --git a/examples/relay_control.cpp b/examples/relay_control.cpp index 2c87ac2c5..7d3b5ef7a 100644 --- a/examples/relay_control.cpp +++ b/examples/relay_control.cpp @@ -58,9 +58,6 @@ void setup() { auto* listener = new FloatSKListener(sk_path); listener->connect_to(new FloatThreshold(0.0f, 100.0f, true, config_path)) ->connect_to(new DigitalOutput(5)); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/repeat_sensor_analog_input.cpp b/examples/repeat_sensor_analog_input.cpp index e6a73a79f..c59ec847d 100644 --- a/examples/repeat_sensor_analog_input.cpp +++ b/examples/repeat_sensor_analog_input.cpp @@ -66,9 +66,6 @@ void setup() { // consumer that displays it, is "Indoor light". analog_input->connect_to( new SKOutputFloat(sk_path, "", new SKMetadata("ratio", "Indoor light"))); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/rpm_counter.cpp b/examples/rpm_counter.cpp index 13bba04d3..45e23ffb6 100644 --- a/examples/rpm_counter.cpp +++ b/examples/rpm_counter.cpp @@ -79,11 +79,6 @@ void setup() { ->connect_to(new SKOutputFloat( sk_path, config_path_skpath)); // connect the output of Frequency() // to a Signal K Output as a number - - // Start the SensESP application running. Because of everything that's been - // set up above, it constantly monitors the interrupt pin, and every - // read_delay ms, it sends the calculated frequency to Signal K. - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/smart_switch/remote_switch_example.cpp b/examples/smart_switch/remote_switch_example.cpp index f23e8c2f1..781f10248 100644 --- a/examples/smart_switch/remote_switch_example.cpp +++ b/examples/smart_switch/remote_switch_example.cpp @@ -106,9 +106,6 @@ void setup() { // confirms it has made the change in state. auto* sk_listener = new SKValueListener(sk_path); sk_listener->connect_to(controller); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/smart_switch/smart_switch_example.cpp b/examples/smart_switch/smart_switch_example.cpp index ad8a71e86..31c1ad50d 100644 --- a/examples/smart_switch/smart_switch_example.cpp +++ b/examples/smart_switch/smart_switch_example.cpp @@ -117,9 +117,6 @@ void setup() { // lets the server know the switch is still alive. load_switch->connect_to(new RepeatReport(10000, config_path_repeat)) ->connect_to(new SKOutputBool(sk_path, config_path_sk_output)); - - // Start the SensESP application running - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/temperature_sender.cpp b/examples/temperature_sender.cpp index 727eaa54c..d1920a410 100644 --- a/examples/temperature_sender.cpp +++ b/examples/temperature_sender.cpp @@ -143,30 +143,30 @@ void setup() { const float R1 = 51.0; // An AnalogInput gets the value from the microcontroller's AnalogIn pin, - // which is a value from 0 to 1023 and then scales it to the max pin voltage (max_analog_in_voltage), giving the pin voltage. + // which is a value from 0 to 1023 and then scales it to the max pin voltage + // (max_analog_in_voltage), giving the pin voltage. const float max_analog_in_voltage = 3.3; // ESP32 has many pins that can be used for AnalogIn, and they're // expressed here as the XX in GPIOXX. - auto* analog_input = new AnalogInput(36, 1000, "/12V_alternator/temp/analog_in/", max_analog_in_voltage); + auto* analog_input = new AnalogInput( + 36, 1000, "/12V_alternator/temp/analog_in/", max_analog_in_voltage); - /* Translating the number returned by AnalogInput into a temperature, and - sending it to Signal K, requires several transforms. Wire them up in - sequence: + /* Translating the number returned by AnalogInput into a temperature, + and sending it to Signal K, requires several transforms. Wire them + up in sequence: - convert voltage into ohms with VoltageDividerR2() - find the Kelvin value for the given ohms value with TemperatureInterpreter() - use Linear() in case you want to calibrate the output at runtime - send calibrated Kelvin value to Signal K with SKOutputNumber() */ - ->connect_to(new VoltageDividerR2(R1, volt_div_v_in, "/12V_alternator/temp/sender")) + analog_input + ->connect_to(new VoltageDividerR2(R1, volt_div_v_in, + "/12V_alternator/temp/sender")) ->connect_to(new TemperatureInterpreter("/12V_alternator/temp/curve")) ->connect_to(new Linear(1.0, 0.0, "/12V_alternator/temp/calibrate")) ->connect_to( new SKOutputFloat(sk_path, "/12V_alternator/temp/sk", metadata)); - - // Start the SensESP application running, which simply activates everything - // that's been set up above - sensesp_app->start(); } // The loop function is called in an endless loop during program execution. diff --git a/examples/time_counter.cpp b/examples/time_counter.cpp index e00fe583d..b7b0a0d53 100644 --- a/examples/time_counter.cpp +++ b/examples/time_counter.cpp @@ -110,9 +110,6 @@ void setup() { engine_hours->connect_to( new SKOutput("propulsion.main.runTime", "", new SKMetadata("s", "Main Engine running time"))); - - // Start the SensESP application running - sensesp_app->start(); } void loop() { app.tick(); } diff --git a/extra_script.py b/extra_script.py index 220b08eaa..ddc1264e4 100644 --- a/extra_script.py +++ b/extra_script.py @@ -1,49 +1,30 @@ +import pathlib +import scripts.convert_html + Import("env") -import gzip - -def make_c_header(inName, outName): - - print('Writing ',inName,' to src/sensesp/net/web/',outName,'.h') - - infile = open('web/docroot/' + inName, "rb") - inFileBytes = infile.read() - print('Compressing into gzip...') - inFileGziped = gzip.compress(inFileBytes) - print('Non compressed size is ', str(len(inFileBytes)), ", gziped size is ", str(len(inFileGziped)), ".") - outfile = open("src/sensesp/net/web/" + outName + ".h","w") - print('Generating header file...') - outfile.write("#include \n") - outfile.write("const uint8_t PAGE_") - outfile.write(outName) - outfile.write("[] PROGMEM = {\n\t\t") - lineBreak = 7 - for b in inFileGziped: - outfile.write(hex(b)) - outfile.write(",") - if lineBreak == 0: - outfile.write("\n\t\t") - lineBreak = 8 - lineBreak-=1 - - #for line in infile: - # outfile.write(line) - - outfile.write("};\n\n") - #const uint PAGE_index_size = 8; - outfile.write("const uint PAGE_") - outfile.write(outName) - outfile.write("_size = ") - outfile.write(str(len(inFileGziped))) - outfile.write(";\n") - infile.close() - outfile.close() - - -def build_webUI(*args, **kwargs): - env.Execute("terser --compress --output web/docroot/js/sensesp.min.js -- web/docroot/js/sensesp.js") - make_c_header("js/sensesp.min.js", "js_sensesp") - make_c_header("js/jsoneditor.min.js", "js_jsoneditor") - make_c_header("css/bootstrap.min.css", "css_bootstrap") - make_c_header("index.html", "index") - -env.AlwaysBuild(env.Alias("webUI", None, build_webUI)) + +# install brotli if it isn't installed +#try: +# import brotli +#except ImportError: +# env.Execute("$PYTHONEXE -m pip install brotli") + + + +def convert_files(root_file_path: pathlib.Path, target): + scripts.convert_html.convert_files(root_file_path, target) + + +def build_web_ui(*args, **kwargs) -> None: + # install and build the web UI + env.Execute("cd web && npm install && npm run build") + + scripts.convert_html.convert_files( + pathlib.Path("web/dist/index.html"), + "src/sensesp/net/web/autogen/web_ui_files.h", + "kWebUIFiles", + "/" + ) + + +env.AlwaysBuild(env.Alias("webUI", None, build_web_ui)) diff --git a/library.json b/library.json index ab0254d34..3506410da 100644 --- a/library.json +++ b/library.json @@ -30,29 +30,15 @@ "name": "ReactESP", "version": "^2.0.0" }, - { - "owner": "me-no-dev", - "name": "ESPAsyncTCP" - }, - { - "owner": "me-no-dev", - "name": "ESP Async WebServer" - }, { "owner": "bblanchon", - "name": "ArduinoJson" - }, - { - "owner": "links2004", - "name": "WebSockets" + "name": "ArduinoJson", + "version": "^7.0.0" }, { "owner": "pfeerick", - "name": "elapsedMillis" - }, - { - "name": "RemoteDebug", - "version": "https://github.com/JoaoLopesF/RemoteDebug.git#0b5a9c1a49fd2ade0e3cadc3a3707781e819359a" + "name": "elapsedMillis", + "version": "^1.0.6" }, { "owner": "bxparks", @@ -60,7 +46,7 @@ "version": "^1.10.1" } ], - "version": "2.7.1-alpha", + "version": "3.0.0-alpha", "frameworks": "arduino", "platforms": ["espressif32"] } diff --git a/library.properties b/library.properties index f3ec7b7d0..65c9d7f36 100644 --- a/library.properties +++ b/library.properties @@ -1,5 +1,5 @@ name=SensESP -version=2.7.1-alpha +version=3.0.0-alpha author=Matti Airas maintainer=Matti Airas sentence=Signal K sensor development library for ESP devices diff --git a/platformio.ini b/platformio.ini index 8e06af057..c7703526a 100644 --- a/platformio.ini +++ b/platformio.ini @@ -13,45 +13,35 @@ ; for projects merely based on SensESP. For that purpose, use the file ; examples/platformio.ini instead. -[platformio] -;set default_envs to whichever board(s) you use. Build/Run/etc processes those envs -default_envs = - esp32dev -; esp-wrover-kit - -[env] -; Global data for all [env:***] +[env:esp32dev] framework = arduino lib_ldf_mode = deep + +; Serial upload and monitor settings + +;monitor_port = /dev/cu.usbserial-310 +;upload_port = /dev/cu.usbserial-310 +upload_speed = 460800 monitor_speed = 115200 + lib_deps = - mairas/ReactESP@^2.0.0 - me-no-dev/ESPAsyncTCP - me-no-dev/ESP Async Webserver - bblanchon/ArduinoJson - links2004/WebSockets - pfeerick/elapsedMillis + mairas/ReactESP @ ^2.0.0 + bblanchon/ArduinoJson @ ^7.0.0 + pfeerick/elapsedMillis @ ^1.0.6 bxparks/AceButton @ ^1.10.1 - https://github.com/JoaoLopesF/RemoteDebug.git#0b5a9c1a49fd2ade0e3cadc3a3707781e819359a - -[espressif32_base] -;this section has config items common to all ESP32 boards -platform = espressif32 @ ^4.1.0 +platform = espressif32 build_unflags = -Werror=reorder board_build.partitions = min_spiffs.csv monitor_filters = esp32_exception_decoder -extra_scripts = extra_script.py +extra_scripts = + pre:extra_script.py check_skip_packages = true - -[env:esp32dev] -extends = espressif32_base board = esp32dev build_flags = -D LED_BUILTIN=2 ; Uncomment the following to disable debug output altogether ;-D DEBUG_DISABLED - ; Uncomment the following to enable the remote debug telnet interface on port 23 - ;-D REMOTE_DEBUG + ; Uncomment the following to use the OTA interface for flashing. ; "mydevice" must correspond to the device hostname. ; "mypassword" must correspond to the device OTA password. @@ -59,3 +49,9 @@ build_flags = ;upload_port = mydevice.local ;upload_flags = ; --auth=mypassword + +; JTAG debugging settings + +;upload_protocol = esp-prog +;debug_tool = esp-prog +;debug_init_break = tbreak setup diff --git a/scripts/convert_html.py b/scripts/convert_html.py new file mode 100644 index 000000000..11d4a6a88 --- /dev/null +++ b/scripts/convert_html.py @@ -0,0 +1,162 @@ +#!/usr/bin/env python3 + +from dataclasses import dataclass +import gzip +import itertools +import pathlib +import logging +import sys + +# import brotli + +logging.basicConfig(level=logging.DEBUG) + + +def gather_files(root_dir: pathlib.Path, root_file_name: str) -> list[pathlib.Path]: + """ + Gather all files that are required by the root file. + + Assume that the presence of the filename in the root file means that the file is required. + """ + # get all files under root_dir + all_files = list(root_dir.glob("**/*")) + files = [f for f in all_files if f.is_file()] + + required_files = set([root_dir / root_file_name]) + + traverse_files = [root_dir / root_file_name] + + # search for each file in the root file + for traversing in traverse_files: + with traversing.open() as f: + contents = f.read() + for file in files: + if file.name in contents: + if file not in required_files: + traverse_files.append(file) + required_files.add(file) + + return sorted(list(required_files)) + + +@dataclass +class StaticPage: + path: str + content: bytes + length: int + content_type: str | None + # Content-encoding doesn't have to be defined because everything is Brotli + + @classmethod + def from_path(cls, path: pathlib.Path, omit_root: str = None, base_path: str = "/"): + path_ = str(path) + if omit_root is not None: + path_ = path_.replace(omit_root, "", 1) + # treat index.html as the root + if path_.endswith("index.html"): + path_ = path_.replace("index.html", "", 1) + if path_.startswith("/"): + path_ = path_[1:] + path_ = base_path + path_ + with path.open("rb") as f: + content = f.read() + # compressed_content = brotli.compress(content) + compressed_content = gzip.compress(content) + ext = path.suffix + if ext == ".js": + content_type = "application/javascript" + elif ext == ".css": + content_type = "text/css" + elif ext == ".svg": + content_type = "image/svg+xml" + elif ext == ".html": + content_type = "text/html" + else: + content_type = None + + return StaticPage( + path_, compressed_content, len(compressed_content), content_type + ) + + def export(self): + """ + Output the static page as a C++ PageData initializer. + """ + hex_content = ("\\x{:02x}".format(b) for b in self.content) + + chunk_size = 16 + + def chunks(lst, chk_size): + lst_it = iter(lst) + return iter(lambda: tuple(itertools.islice(lst_it, chk_size)), ()) + + wrapped_content = "\n".join( + ' "' + "".join(g) + '"' for g in chunks(hex_content, chunk_size) + ) + + content_type_output = ( + f'"{self.content_type}",' if self.content_type is not None else " nullptr," + ) + + output = f"""{{ + "{self.path}", + +{wrapped_content}, + {self.length}, + {content_type_output} + "gzip", +}}""" + + return output + + +@dataclass +class PageData: + static_pages: list[StaticPage] + + def export(self, target: str, constant_name: str): + page_data_list = ",\n".join(sp.export() for sp in self.static_pages) + + define_guard = target.upper().replace(".", "_").replace("/", "_") + + output = f""" +#ifndef {define_guard} +#define {define_guard} +#include "sensesp/net/web/static_file_data.h" + +namespace sensesp {{ + +const StaticFileData {constant_name}[] = {{ +{page_data_list}, + {{nullptr, nullptr, 0, nullptr, nullptr}} +}}; + +}} // namespace sensesp + +#endif // {define_guard} + """ + + with open(target, "w") as f: + f.write(output) + + +def convert_files( + root_file_path: pathlib.Path, target: str, constant_name: str, base_path: str = "/" +): + required_files = gather_files(root_file_path.parent, root_file_path.name) + + # compress and generate header files + + static_pages = [ + StaticPage.from_path( + rf, omit_root=str(root_file_path.parent), base_path=base_path + ) + for rf in required_files + ] + + page_data = PageData(static_pages) + page_data.export(target, constant_name) + + +if __name__ == "__main__": + convert_files(pathlib.Path(sys.argv[1]), sys.argv[2], sys.argv[3], sys.argv[4]) diff --git a/src/sensesp.h b/src/sensesp.h index 28ea7fd55..fb6f1bc74 100644 --- a/src/sensesp.h +++ b/src/sensesp.h @@ -3,17 +3,10 @@ #include -#ifdef REMOTE_DEBUG -#include -#ifndef DEBUG_DISABLED -#define DEBUG_CLASS RemoteDebug -#endif // DEBUG_DISABLED -#else // REMOTE_DEBUG #include "sensesp/system/local_debug.h" #ifndef DEBUG_DISABLED #define DEBUG_CLASS LocalDebug #endif // DEBUG_DISABLED -#endif // REMOTE_DEBUG #if ESP8266 #error "ESP8266 isn't supported by SensESP version 2. To compile an existing project, add @^1.0.0 to the SensESP depdenency in platformio.ini." diff --git a/src/sensesp/controllers/smart_switch_controller.cpp b/src/sensesp/controllers/smart_switch_controller.cpp index 39b5a3676..2589601f3 100644 --- a/src/sensesp/controllers/smart_switch_controller.cpp +++ b/src/sensesp/controllers/smart_switch_controller.cpp @@ -19,20 +19,19 @@ SmartSwitchController::SmartSwitchController(bool auto_initialize, } load_configuration(); -} -void SmartSwitchController::start() { + // Emit the initial state once the event loop starts if (auto_initialize_) { - this->emit(is_on); + ReactESP::app->onDelay(0, [this]() { this->emit(is_on); }); } } -void SmartSwitchController::set_input(bool new_value, uint8_t input_channel) { +void SmartSwitchController::set(bool new_value, uint8_t input_channel) { is_on = new_value; this->emit(is_on); } -void SmartSwitchController::set_input(ClickTypes new_value, +void SmartSwitchController::set(ClickTypes new_value, uint8_t input_channel) { if (!ClickType::is_click(new_value)) { // Ignore button presses (we only want interpreted clicks) @@ -53,12 +52,12 @@ void SmartSwitchController::set_input(ClickTypes new_value, // Sync any specified sync paths... for (auto& path : sync_paths) { debugD("Sync status to %s", path.sk_sync_path.c_str()); - path.put_request->set_input(is_on); + path.put_request->set(is_on); } } } -void SmartSwitchController::set_input(String new_value, uint8_t input_channel) { +void SmartSwitchController::set(String new_value, uint8_t input_channel) { if (TextToTruth::is_valid_true(new_value)) { is_on = true; } else if (TextToTruth::is_valid_false(new_value)) { @@ -71,7 +70,7 @@ void SmartSwitchController::set_input(String new_value, uint8_t input_channel) { } void SmartSwitchController::get_configuration(JsonObject& root) { - JsonArray jPaths = root.createNestedArray("sync_paths"); + JsonArray jPaths = root["sync_paths"].to(); for (auto& path : sync_paths) { jPaths.add(path.sk_sync_path); } diff --git a/src/sensesp/controllers/smart_switch_controller.h b/src/sensesp/controllers/smart_switch_controller.h index 19cb59de3..5eb038289 100644 --- a/src/sensesp/controllers/smart_switch_controller.h +++ b/src/sensesp/controllers/smart_switch_controller.h @@ -61,10 +61,9 @@ class SmartSwitchController : public BooleanTransform, */ SmartSwitchController(bool auto_initialize = true, String config_path = "", const char* sk_sync_paths[] = NULL); - void start() override; - void set_input(bool new_value, uint8_t input_channel = 0) override; - void set_input(String new_value, uint8_t input_channel = 0) override; - void set_input(ClickTypes new_value, uint8_t input_channel = 0) override; + void set(bool new_value, uint8_t input_channel = 0) override; + void set(String new_value, uint8_t input_channel = 0) override; + void set(ClickTypes new_value, uint8_t input_channel = 0) override; // For reading and writing the configuration of this transformation virtual void get_configuration(JsonObject& doc) override; diff --git a/src/sensesp/controllers/system_status_controller.cpp b/src/sensesp/controllers/system_status_controller.cpp index 28a7e46b7..e664bfe70 100644 --- a/src/sensesp/controllers/system_status_controller.cpp +++ b/src/sensesp/controllers/system_status_controller.cpp @@ -2,7 +2,7 @@ namespace sensesp { -void SystemStatusController::set_input(WiFiState new_value, +void SystemStatusController::set(WiFiState new_value, uint8_t input_channel) { // FIXME: If pointers to member functions would be held in an array, // this would be a simple array dereferencing @@ -23,7 +23,7 @@ void SystemStatusController::set_input(WiFiState new_value, } } -void SystemStatusController::set_input(WSConnectionState new_value, +void SystemStatusController::set(WSConnectionState new_value, uint8_t input_channel) { switch (new_value) { case WSConnectionState::kWSDisconnected: diff --git a/src/sensesp/controllers/system_status_controller.h b/src/sensesp/controllers/system_status_controller.h index 7e4de9ad3..fbaca419e 100644 --- a/src/sensesp/controllers/system_status_controller.h +++ b/src/sensesp/controllers/system_status_controller.h @@ -32,11 +32,11 @@ class SystemStatusController : public ValueConsumer, /// ValueConsumer interface for ValueConsumer (Networking object /// state updates) - virtual void set_input(WiFiState new_value, + virtual void set(WiFiState new_value, uint8_t input_channel = 0) override; /// ValueConsumer interface for ValueConsumer /// (WSClient object state updates) - virtual void set_input(WSConnectionState new_value, + virtual void set(WSConnectionState new_value, uint8_t input_channel = 0) override; protected: diff --git a/src/sensesp/net/debug_output.cpp b/src/sensesp/net/debug_output.cpp index e36eed846..653817112 100644 --- a/src/sensesp/net/debug_output.cpp +++ b/src/sensesp/net/debug_output.cpp @@ -1,11 +1,6 @@ #include "debug_output.h" -#ifdef REMOTE_DEBUG -#include -#else #include "sensesp/system/local_debug.h" -#endif - #include "sensesp_app.h" namespace sensesp { @@ -14,9 +9,9 @@ namespace sensesp { DEBUG_CLASS Debug; #endif -void DebugOutput::start() { +DebugOutput::DebugOutput() { #ifndef DEBUG_DISABLED - Debug.begin(SensESPBaseApp::get_hostname()); + Debug.begin(); Debug.setResetCmdEnabled(true); // serial port debugging happens synchronously #ifdef REMOTE_DEBUG diff --git a/src/sensesp/net/debug_output.h b/src/sensesp/net/debug_output.h index 009e1d5e7..b6da3d295 100644 --- a/src/sensesp/net/debug_output.h +++ b/src/sensesp/net/debug_output.h @@ -3,8 +3,6 @@ #include -#include "sensesp/system/startable.h" - namespace sensesp { void SetupSerialDebug(uint32_t baudrate); @@ -20,10 +18,9 @@ void SetupSerialDebug(uint32_t baudrate); * and over telnet on port 23. * By default, output is enabled only on the serial interface. **/ -class DebugOutput : public Startable { +class DebugOutput { public: - DebugOutput() : Startable{0} {} - virtual void start() override; + DebugOutput(); }; } // namespace sensesp diff --git a/src/sensesp/net/discovery.cpp b/src/sensesp/net/discovery.cpp index 829f345cc..be9d5e210 100644 --- a/src/sensesp/net/discovery.cpp +++ b/src/sensesp/net/discovery.cpp @@ -1,26 +1,26 @@ #include "discovery.h" -#include "sensesp.h" -#include "sensesp_app.h" - -#include +#include "sensesp_base_app.h" namespace sensesp { -void MDNSDiscovery::start() { - String hostname = SensESPBaseApp::get_hostname(); +MDNSDiscovery::MDNSDiscovery() { + ReactESP::app->onDelay(0, [this]() { + String hostname = SensESPBaseApp::get_hostname(); - // MDNS.begin(hostname) will crash if hostname is blank - if ((hostname == "")) { - debugE("hostname has not been set - mDNS can't start"); - return; - } - if (!MDNS.begin(hostname.c_str())) { // Start the mDNS responder for hostname.local - debugW("Error setting up mDNS responder"); - } else { - debugI("mDNS responder started for hostname '%s'", hostname.c_str()); - } - mdns_instance_name_set(hostname.c_str()); // mDNS hostname for ESP32 + // MDNS.begin(hostname) will crash if hostname is blank + if ((hostname == "")) { + debugE("hostname has not been set - mDNS can't start"); + return; + } + if (!MDNS.begin( + hostname.c_str())) { // Start the mDNS responder for hostname.local + debugW("Error setting up mDNS responder"); + } else { + debugI("mDNS responder started for hostname '%s'", hostname.c_str()); + } + mdns_instance_name_set(hostname.c_str()); // mDNS hostname for ESP32 + }); } } // namespace sensesp diff --git a/src/sensesp/net/discovery.h b/src/sensesp/net/discovery.h index b9d96d000..c2a0c0517 100644 --- a/src/sensesp/net/discovery.h +++ b/src/sensesp/net/discovery.h @@ -1,14 +1,13 @@ #ifndef _discovery_H_ #define _discovery_H_ -#include "sensesp/system/startable.h" +#include namespace sensesp { -class MDNSDiscovery : public Startable { +class MDNSDiscovery { public: - MDNSDiscovery() : Startable(79) {} - virtual void start() override; + MDNSDiscovery(); }; } // namespace sensesp diff --git a/src/sensesp/net/http_authenticator.cpp b/src/sensesp/net/http_authenticator.cpp new file mode 100644 index 000000000..ddc861cdc --- /dev/null +++ b/src/sensesp/net/http_authenticator.cpp @@ -0,0 +1,219 @@ +#include "http_authenticator.h" + +namespace sensesp { + +String get_random_hex_string() { + char buffer[33]; // buffer to hold 32 Hex Digit + /0 + int i; + for (i = 0; i < 4; i++) { + sprintf(buffer + (i * 8), "%08x", esp_random()); + } + return String(buffer); +} + +bool HTTPDigestAuthenticator::authenticate_request(httpd_req_t* req) { + int result = authenticate_digest(req); + + if (result == 1) { + return true; + } else if (result == 0) { + request_authentication(req, false); + return 0; + } else { + request_authentication(req, true); + return 0; + } +} + +int HTTPDigestAuthenticator::authenticate_digest(httpd_req_t* req) { + char auth_header[1024]; + if (httpd_req_get_hdr_value_str(req, "Authorization", auth_header, 1024) != + ESP_OK) { + return 0; + } + + String auth_header_str(auth_header); + int space_pos = auth_header_str.indexOf(' '); + if (space_pos == -1) { + return 0; + } + + String auth_type = auth_header_str.substring(0, space_pos); + if (auth_type != "Digest") { + return 0; + } + + String auth_str = auth_header_str.substring(space_pos + 1); + + String username = extract_param("username", auth_str); + String userhash = extract_param("userhash", auth_str, false); + + if (userhash == "true") { + String ref_username = MD5(username_ + ":" + realm_); + if (username != ref_username) { + return 0; + } + } else if (username != username_) { + // FIXME: Should we disallow unhashed usernames? + return 0; + } + + // Extract required parameters from the auth string + String realm = extract_param("realm", auth_str); + String nonce = extract_param("nonce", auth_str); + String uri = extract_param("uri", auth_str); + String algorithm = extract_param("algorithm", auth_str, false); + String qop = extract_param("qop", auth_str, false); + String response = extract_param("response", auth_str); + String opaque = extract_param("opaque", auth_str); + String nc = extract_param("nc", auth_str, false); + String cnonce = extract_param("cnonce", auth_str); + + // check that all required parameters are present + if (realm == "" || nonce == "" || uri == "" || response == "" || + opaque == "" || nc == "" || cnonce == "") { + return 0; + } + + // Get the nonce count as an integer + int count = strtol(nc.c_str(), NULL, 16); + + // Check if the nonce is valid + int nonce_status = find_nonce(nonce, count); + if (nonce_status == 0) { + return 0; + } else if (nonce_status == -1) { + return -1; + } + + // Check that the realm matches + if (realm != realm_) { + return 0; + } + + int method = req->method; + String method_str; + switch (method) { + case HTTP_GET: + method_str = "GET"; + break; + case HTTP_POST: + method_str = "POST"; + break; + case HTTP_PUT: + method_str = "PUT"; + break; + case HTTP_DELETE: + method_str = "DELETE"; + break; + default: + return 0; + } + + // Calculate the expected response + String a1 = username_ + ":" + realm_ + ":" + password_; + String a2 = method_str + ":" + uri; + String expected_response = MD5(MD5(a1) + ":" + nonce + ":" + nc + ":" + + cnonce + ":" + qop + ":" + MD5(a2)); + + return response == expected_response ? 1 : 0; +} + +esp_err_t HTTPDigestAuthenticator::request_authentication(httpd_req_t* req, + bool stale) { + String server_nonce = create_nonce(); + String opaque = get_random_hex_string(); + + httpd_resp_set_status(req, "401 Unauthorized"); + + String header = "Digest realm=\"" + realm_ + + "\", qop=\"auth\", " + "userhash=true, " + "algorithm=\"MD5\", nonce=\"" + + server_nonce + "\", opaque=\"" + opaque + "\""; + + if (stale) { + header += ", stale=true"; + } + + httpd_resp_set_hdr(req, "WWW-Authenticate", header.c_str()); + httpd_resp_send(req, "401 Unauthorized", 0); + return ESP_OK; +} + +String HTTPDigestAuthenticator::create_nonce() { + // The nonce to return is of the form: + // "timestamp MD5(timestamp:secret)" + + String timestamp_str = String(millis()); + String to_hash = timestamp_str + ":" + secret_; + String hash = MD5(to_hash); + String nonce = timestamp_str + " " + hash; + + // The nonce should be base64-encoded + char encoded[64]; + size_t output_length; + mbedtls_base64_encode((unsigned char*)encoded, sizeof(encoded), + &output_length, (uint8_t*)nonce.c_str(), + nonce.length()); + encoded[output_length] = '\0'; + String nonce_str(encoded); + // Add un-encoded nonce to the list of nonces + nonces_.push_front({nonce, 1}); + return nonce_str; +} + +int HTTPDigestAuthenticator::find_nonce(String nonce, int count) { + std::list::iterator it; + String decoded_nonce; + // Decode the base64 encoding + size_t output_length; + char decoded[64]; + mbedtls_base64_decode((unsigned char*)decoded, sizeof(decoded), + &output_length, (uint8_t*)nonce.c_str(), + nonce.length()); + decoded[output_length] = '\0'; + decoded_nonce = String(decoded); + for (it = nonces_.begin(); it != nonces_.end(); it++) { + if (it->nonce == decoded_nonce) { + // Disable nonce count checking; at least Chrome sends NC values out of + // order if (it->count > count) { + // return 0; + // } + it->count++; + // Check if the nonce is stale + String timestamp_str = decoded_nonce.substring(0, nonce.indexOf(' ')); + unsigned long timestamp = timestamp_str.toInt(); + if (millis() - timestamp > nonce_max_age_) { + nonces_.erase(it); + return -1; + } + it->count = count + 1; + return 1; + } + // If the nonce age is 4*nonce_max_age_, remove it from the list + String timestamp_str = it->nonce.substring(0, it->nonce.indexOf(' ')); + unsigned long timestamp = timestamp_str.toInt(); + if (millis() - timestamp > 4 * nonce_max_age_) { + it = nonces_.erase(it); + } + } + return 0; +} + +String HTTPDigestAuthenticator::extract_param(String param, String auth_str, + bool quoted) { + String quote = quoted ? "\"" : ""; + int start = auth_str.indexOf(param + "=" + quote); + if (start == -1) { + return ""; + } + start += param.length() + 1 + (quoted ? 1 : 0); + int end = auth_str.indexOf(quoted ? quote : ",", start); + if (end == -1) { + end = auth_str.length(); + } + return auth_str.substring(start, end); +} + +} // namespace sensesp diff --git a/src/sensesp/net/http_authenticator.h b/src/sensesp/net/http_authenticator.h new file mode 100644 index 000000000..99bb7dec3 --- /dev/null +++ b/src/sensesp/net/http_authenticator.h @@ -0,0 +1,91 @@ +#ifndef SENSESP_SRC_SENSESP_NET_HTTP_AUTHENTICATOR_H_ +#define SENSESP_SRC_SENSESP_NET_HTTP_AUTHENTICATOR_H_ + +#include +#include + +#include + +#include "sensesp.h" +#include "sensesp/system/hash.h" + +namespace sensesp { + +String get_random_hex_string(); + +/** + * @brief HTTP Authenticator base class. + * + */ +class HTTPAuthenticator { + public: + HTTPAuthenticator() {} + /** + * @brief Authenticate an incoming request. + * + * This method should be called at the beginning of each request handler + * to ensure that the request is authenticated. + * + * @param req + * @return true Authentication successful. + * @return false Authentication failed. + */ + virtual bool authenticate_request(httpd_req_t* req) = 0; +}; + +struct NonceData { + String nonce; + int count; +}; + +/** + * @brief HTTP Digest Authenticator class. + * + */ +class HTTPDigestAuthenticator : public HTTPAuthenticator { + public: + HTTPDigestAuthenticator(String username, String password, String realm, + unsigned long nonce_max_age = 900000) + : username_(username), + password_(password), + realm_(realm), + nonce_max_age_(nonce_max_age), + HTTPAuthenticator() { + secret_ = get_random_hex_string(); + } + + virtual bool authenticate_request(httpd_req_t* req) override; + + int authenticate_digest(httpd_req_t* req); + + protected: + esp_err_t request_authentication(httpd_req_t* req, bool stale = false); + + String username_; + String password_; + String realm_; + unsigned long nonce_max_age_; + String secret_; ///< Secret used to generate the nonce. Gets reset every + ///< restart. + std::list nonces_; + + String create_nonce(); + + /** + * @brief Find a nonce in the list of nonces. + * + * @param nonce Nonce to find + * @param count Count of the nonce + * @param max_age Maximum age of the nonce in milliseconds + * @return 1 Nonce found + * @return 0 Nonce not found + * @return -1 Nonce found but stale + */ + int find_nonce(String nonce, int count); + + String extract_param(String param, String auth_str, bool quoted = true); +}; + +} // namespace sensesp + +#endif // SENSESP_SRC_SENSESP_NET_HTTP_AUTHENTICATOR_H_ diff --git a/src/sensesp/net/http_server.cpp b/src/sensesp/net/http_server.cpp index 006736191..89ce7fbda 100644 --- a/src/sensesp/net/http_server.cpp +++ b/src/sensesp/net/http_server.cpp @@ -1,318 +1,178 @@ -#include "http_server.h" +#include "sensesp/net/http_server.h" -#include -#include -#include +#include #include +#include -#include "ArduinoJson.h" -#include "AsyncJson.h" -#include "sensesp/system/configurable.h" -#include "sensesp/ui/ui_button.h" -#include "sensesp/ui/ui_output.h" -#include "sensesp_base_app.h" - -// Include the web UI stored in PROGMEM space -#include "web/css_bootstrap.h" -#include "web/index.h" -#include "web/js_jsoneditor.h" -#include "web/js_sensesp.h" +#include "sensesp.h" namespace sensesp { -// HTTP port for the configuration interface -#ifndef HTTP_SERVER_PORT -#define HTTP_SERVER_PORT 80 -#endif - -HTTPServer::HTTPServer() : Startable(50) { - server = new AsyncWebServer(HTTP_SERVER_PORT); - using std::placeholders::_1; - - server->onNotFound(std::bind(&HTTPServer::handle_not_found, this, _1)); - - // Handle setting configuration values of a Configurable via a Json PUT to - // /config - AsyncCallbackJsonWebHandler* config_put_handler = - new AsyncCallbackJsonWebHandler( - "/config", - [](AsyncWebServerRequest* request, JsonVariant& json) { - // omit the "/config" part of the url - String url_tail = request->url().substring(7); - - if (url_tail == "") { - request->send(405, "text/plain", - F("PUT to /config not allowed.\n")); - return; - } - - std::map::iterator it = - configurables.find(url_tail); - if (it == configurables.end()) { - request->send(404, "text/plain", - F("Configuration key not found.\n")); - return; - } - Configurable* confable = it->second; - - JsonObject body = json.as(); +// from: +// https://stackoverflow.com/questions/2673207/c-c-url-decode-library/2766963 +void urldecode2(char* dst, const char* src) { + char a, b; + while (*src) { + if ((*src == '%') && ((a = src[1]) && (b = src[2])) && + (isxdigit(a) && isxdigit(b))) { + if (a >= 'a') a -= 'a' - 'A'; + if (a >= 'A') + a -= ('A' - 10); + else + a -= '0'; + if (b >= 'a') b -= 'a' - 'A'; + if (b >= 'A') + b -= ('A' - 10); + else + b -= '0'; + *dst++ = 16 * a + b; + src += 3; + } else if (*src == '+') { + *dst++ = ' '; + src++; + } else { + *dst++ = *src++; + } + } + *dst++ = '\0'; +} - if (!confable->set_configuration(body)) { - request->send(400, "text/plain", - F("Unable to extract keys from JSON.\n")); - return; - } - confable->save_configuration(); - request->send(200, "text/plain", F("Configuration successful.\n")); - return; - }, - 4096); - config_put_handler->setMethod(HTTP_PUT); - server->addHandler(config_put_handler); +HTTPServer* HTTPServer::singleton_ = nullptr; - // Handle requests to retrieve the current Json configuration of a - // Configurable via HTTP GET on /config - server->on("/config", HTTP_GET, [this](AsyncWebServerRequest* request) { - // omit the "/config" part of the url - String url_tail = request->url().substring(7); +esp_err_t HTTPServer::dispatch_request(httpd_req_t* req) { + debugI("Handling request: %s", req->uri); - if (url_tail == "" || url_tail == "/") { - this->handle_config_list(request); - return; + if (captive_portal_) { + bool captured; + captured = handle_captive_portal(req); + if (captured) { + return ESP_OK; } + } - std::map::iterator it = configurables.find(url_tail); - if (it == configurables.end()) { - request->send(404, "text/plain", F("Configuration key not found.\n")); - return; + if (auth_required_) { + bool success; + success = + authenticate_request(authenticator_, call_request_dispatcher, req); + if (!success) { + // Authentication failed; do not continue but return success. + // The client already received a 401 response. + return ESP_OK; } - Configurable* confable = it->second; - - AsyncResponseStream* response = - request->beginResponseStream("application/json"); - DynamicJsonDocument json_doc(4096); - JsonObject config = json_doc.createNestedObject("config"); - confable->get_configuration(config); - json_doc["schema"] = serialized(confable->get_config_schema()); - json_doc["description"] = confable->get_description(); - serializeJson(json_doc, *response); - request->send(response); - }); - - server->on("/", HTTP_GET, [](AsyncWebServerRequest* request) { - debugD("Serving gziped index.html"); - AsyncWebServerResponse* response = request->beginResponse_P( - 200, "text/html", PAGE_index, PAGE_index_size, NULL); - response->addHeader("Content-Encoding", "gzip"); - request->send(response); - }); - - server->on( - "/css/bootstrap.min.css", HTTP_GET, [](AsyncWebServerRequest* request) { - debugD("Serving gziped bootstrap.min.css"); - AsyncWebServerResponse* response = request->beginResponse_P( - 200, "text/css", PAGE_css_bootstrap, PAGE_css_bootstrap_size); - response->addHeader("Content-Encoding", "gzip"); - request->send(response); - }); - - server->on( - "/js/jsoneditor.min.js", HTTP_GET, [](AsyncWebServerRequest* request) { - debugD("Serving gziped jsoneditor.min.js"); - AsyncWebServerResponse* response = request->beginResponse_P( - 200, "text/html", PAGE_js_jsoneditor, PAGE_js_jsoneditor_size); - response->addHeader("Content-Encoding", "gzip"); - request->send(response); - }); - - server->on("/js/sensesp.js", HTTP_GET, [](AsyncWebServerRequest* request) { - debugD("Serving gziped sensesp.js"); - AsyncWebServerResponse* response = request->beginResponse_P( - 200, "text/javascript", PAGE_js_sensesp, PAGE_js_jsoneditor_size); - response->addHeader("Content-Encoding", "gzip"); - request->send(response); - }); - - server->on("/device/reset", HTTP_GET, - std::bind(&HTTPServer::handle_device_reset, this, _1)); - server->on("/device/restart", HTTP_GET, - std::bind(&HTTPServer::handle_device_restart, this, _1)); - server->on("/info", HTTP_GET, std::bind(&HTTPServer::handle_info, this, _1)); - - server->on("/command", HTTP_GET, - std::bind(&HTTPServer::handle_command, this, _1)); -} - -void HTTPServer::start() { - // only start the server if WiFi is connected - if (WiFi.status() == WL_CONNECTED || WiFi.getMode() == WIFI_MODE_AP) { - server->begin(); - debugI("HTTP server started"); - } else { - debugW("HTTP server not started, WiFi not connected"); } - WiFi.onEvent([this](WiFiEvent_t event, WiFiEventInfo_t info) { - if (event == ARDUINO_EVENT_WIFI_STA_GOT_IP || - event == ARDUINO_EVENT_WIFI_AP_START) { - server->begin(); - debugI("HTTP server started"); - } - }); - // announce the server over mDNS - MDNS.addService("http", "tcp", 80); -} + // dispatch request to the appropriate handler -void HTTPServer::handle_not_found(AsyncWebServerRequest* request) { - debugD("NOT_FOUND: "); - if (request->method() == HTTP_GET) { - debugD("GET"); - } else if (request->method() == HTTP_POST) { - debugD("POST"); - } else if (request->method() == HTTP_DELETE) { - debugD("DELETE"); - } else if (request->method() == HTTP_PUT) { - debugD("PUT"); - } else if (request->method() == HTTP_PATCH) { - debugD("PATCH"); - } else if (request->method() == HTTP_HEAD) { - debugD("HEAD"); - } else if (request->method() == HTTP_OPTIONS) { - debugD("OPTIONS"); - } else { - debugD("UNKNOWN"); - } - debugD(" http://%s%s", request->host().c_str(), request->url().c_str()); + String uri = req->uri; - if (request->contentLength()) { - debugD("_CONTENT_TYPE: %s", request->contentType().c_str()); - debugD("_CONTENT_LENGTH: %u", request->contentLength()); - } + // decode the uri + char decoded_uri[uri.length() + 1]; + urldecode2(decoded_uri, uri.c_str()); + String decoded_uri_str = String(decoded_uri); - int headers = request->headers(); - for (int i = 0; i < headers; i++) { - AsyncWebHeader* h = request->getHeader(i); - debugD("_HEADER[%s]: %s", h->name().c_str(), h->value().c_str()); + // Drop the query part of the URI + int query_pos = decoded_uri_str.indexOf('?'); + if (query_pos != -1) { + decoded_uri_str = decoded_uri_str.substring(0, query_pos); } - int params = request->params(); - for (int i = 0; i < params; i++) { - AsyncWebParameter* p = request->getParam(i); - if (p->isFile()) { - debugD("_FILE[%s]: %s, size: %u", p->name().c_str(), p->value().c_str(), - p->size()); - } else if (p->isPost()) { - debugD("_POST[%s]: %s", p->name().c_str(), p->value().c_str()); - } else { - debugD("_GET[%s]: %s", p->name().c_str(), p->value().c_str()); + for (auto handler : handlers_) { + String match_uri = handler->match_uri_; + + // Check if the match uri ends with a wildcard + if (match_uri.endsWith("*")) { + // Remove the wildcard from the match uri + match_uri = match_uri.substring(0, match_uri.length() - 1); + // Check if the request uri starts with the match uri + if (decoded_uri_str.startsWith(match_uri)) { + if (handler->method_mask_ & (1 << req->method)) { + return handler->call(req); + } + } + } else if (handler->match_uri_ == req->uri) { + if (handler->method_mask_ & (1 << req->method)) { + return handler->call(req); + } } } - request->send(404); + return httpd_resp_send_404(req); } -void HTTPServer::handle_config_list(AsyncWebServerRequest* request) { - // to save memory, guesstimate the required output buffer size based - // on the number of elements - auto output_buffer_size = 200 * configurables.size(); - AsyncResponseStream* response = - request->beginResponseStream("application/json"); - DynamicJsonDocument json_doc(output_buffer_size); - JsonArray arr = json_doc.createNestedArray("keys"); - for (auto it = configurables.begin(); it != configurables.end(); ++it) { - arr.add(it->first); +bool HTTPServer::handle_captive_portal(httpd_req_t* req) { + // Get HTTP Host header + char host[100]; + if (httpd_req_get_hdr_value_str(req, "Host", host, sizeof(host)) != ESP_OK) { + return false; } - serializeJson(json_doc, *response); - request->send(response); -} - -void HTTPServer::handle_config(AsyncWebServerRequest* request) { - debugD("%s", request->url().c_str()); - request->send(200, "text/plain", "/config"); -} - -void HTTPServer::handle_device_reset(AsyncWebServerRequest* request) { - request->send( - 200, "text/plain", - "OK, resetting the device settings back to factory defaults.\n"); - ReactESP::app->onDelay(500, [this]() { SensESPBaseApp::get()->reset(); }); -} - -void HTTPServer::handle_device_restart(AsyncWebServerRequest* request) { - request->send(200, "text/plain", "OK, restarting\n"); - ReactESP::app->onDelay(50, []() { ESP.restart(); }); -} - -void HTTPServer::add_sorted_configurables(JsonArray& config) { - // sort the configurables by their sort_order - std::vector> pairs; - for (auto it = configurables.begin(); it != configurables.end(); ++it) { - pairs.push_back(std::make_pair(it->second->get_sort_order(), it->first)); + String host_hdr = host; + // Drop port number + int pos = host_hdr.indexOf(':'); + if (pos != -1) { + host_hdr = host_hdr.substring(0, pos); } - std::sort(pairs.begin(), pairs.end()); - - // add all configuration paths - for (auto it = pairs.begin(); it != pairs.end(); ++it) { - config.add(it->second); + // Get the HTTP request socket local IP address + int sockfd = httpd_req_to_sockfd(req); + char ipstr[INET6_ADDRSTRLEN]; + struct sockaddr_in6 addr; // esp_http_server uses IPv6 addressing + socklen_t addr_size = sizeof(addr); + if (getsockname(sockfd, (struct sockaddr*)&addr, &addr_size) < 0) { + debugE("Error getting client IP"); + return false; } -} - -void HTTPServer::handle_info(AsyncWebServerRequest* request) { - auto* response = request->beginResponseStream("application/json"); - response->setCode(200); + inet_ntop(AF_INET, &addr.sin6_addr.un.u32_addr[3], ipstr, sizeof(ipstr)); + debugD("Local IP address: %s", ipstr); - auto ui_outputs = UIOutputBase::get_ui_outputs(); - auto ui_buttons = UIButton::get_ui_buttons(); + String ap_ip = WiFi.softAPIP().toString(); - std::size_t output_buffer_size = - (200 * configurables.size() + // configuration cards - 200 * ui_outputs->size() + // status output entities - 200 * ui_buttons.size()) // custom UI controls - + 512; - DynamicJsonDocument json_doc(output_buffer_size); - - auto properties = json_doc.createNestedObject("Properties"); - auto commands = json_doc.createNestedArray("Commands"); - auto pages = json_doc.createNestedArray("Pages"); - auto config = json_doc.createNestedArray("Config"); - - for (auto property = ui_outputs->begin(); property != ui_outputs->end(); - ++property) { - property->second->set_json(properties); + // We should only apply the captive portal to the soft AP IP address + if (ap_ip != ipstr) { + debugD("Not a captive portal request"); + return false; } - add_sorted_configurables(config); + // Check if the host matches our soft AP IP address + if (host_hdr != ap_ip) { + // Redirect the client to the captive portal url /wifi + httpd_resp_set_status(req, "302 Found"); + String destination = String("http://") + ap_ip + "/wifi"; + httpd_resp_set_hdr(req, "Location", destination.c_str()); + httpd_resp_sendstr(req, "Redirecting to captive portal"); + return true; + } + return false; +} - for (auto button_it = ui_buttons.begin(); button_it != ui_buttons.end(); - ++button_it) { - auto command_obj = commands.createNestedObject(); - command_obj["Name"] = button_it->second->get_name(); - command_obj["Title"] = button_it->second->get_title(); - command_obj["Confirm"] = button_it->second->get_must_confirm(); +bool HTTPServer::authenticate_request( + HTTPAuthenticator* auth, std::function handler, + httpd_req_t* req) { + bool continue_ = false; + if (auth == nullptr) { + continue_ = true; + } else { + continue_ = auth->authenticate_request(req); } - serializeJson(json_doc, *response); - request->send(response); + return continue_; } -void HTTPServer::handle_command(AsyncWebServerRequest* request) { - auto ui_buttons = UIButton::get_ui_buttons(); +esp_err_t call_request_dispatcher(httpd_req_t* req) { + HTTPServer* server = HTTPServer::get_server(); + bool continue_; - if (request->hasParam("id")) { - String id = request->getParam("id")->value(); - auto button_it = ui_buttons.find(id); + return server->dispatch_request(req); +} - if (button_it != ui_buttons.end()) { - debugI("Handle button_it %s id=%s", request->url().c_str(), id.c_str()); - button_it->second->notify(); - request->send(200, "text/html", "Success!"); - } else { - request->send(404, "text/html", "Command not found!"); - } +String get_content_type(httpd_req_t* req) { + if (httpd_req_get_hdr_value_len(req, "Content-Type") != 16) { + debugE("Invalid content type"); + return ""; } else { - request->send(400, "text/html", "Missing id parameter."); + char content_type[32]; + httpd_req_get_hdr_value_str(req, "Content-Type", content_type, 32); + return String(content_type); } } diff --git a/src/sensesp/net/http_server.h b/src/sensesp/net/http_server.h index c906d61c8..be6a0b1bd 100644 --- a/src/sensesp/net/http_server.h +++ b/src/sensesp/net/http_server.h @@ -1,42 +1,186 @@ -#ifndef _http_H_ -#define _http_H_ +#ifndef SENSESP_NET_HTTP_SERVER_H_ +#define SENSESP_NET_HTTP_SERVER_H_ -#include +#include +#include #include +#include -#include "ArduinoJson.h" -#include "sensesp/ui/ui_button.h" -#include "sensesp/system/startable.h" +#include "WiFi.h" +#include "sensesp.h" +#include "sensesp/net/http_authenticator.h" +#include "sensesp/system/configurable.h" +#include "sensesp_base_app.h" namespace sensesp { +#ifndef HTTP_DEFAULT_PORT +#define HTTP_DEFAULT_PORT 80 +#endif + +#include +#include + +void urldecode2(char* dst, const char* src); +String get_content_type(httpd_req_t* req); +esp_err_t call_request_dispatcher(httpd_req_t* req); + +class HTTPServer; + /** - * @brief Handles external interactions with the device via the web interface. + * @brief HTTP request handler storage class. + * */ -class HTTPServer : public Startable { +class HTTPRequestHandler { public: - HTTPServer(); - ~HTTPServer() { delete server; } - virtual void start() override; - void handle_not_found(AsyncWebServerRequest* request); - void handle_config(AsyncWebServerRequest* request); - void handle_device_reset(AsyncWebServerRequest* request); - void handle_device_restart(AsyncWebServerRequest* request); - void handle_info(AsyncWebServerRequest* request); - void handle_static_reponse(AsyncWebServerRequest* request, - const uint8_t* content, uint32_t size); - - void handle_command(AsyncWebServerRequest* request); + HTTPRequestHandler(uint32_t method_mask, String match_uri, + std::function handler_func) + : method_mask_(method_mask), + match_uri_(match_uri), + handler_func_(handler_func) {} + + const uint32_t method_mask_; + const String match_uri_; + + esp_err_t call(httpd_req_t* req) { return this->handler_func_(req); } protected: - void add_sorted_configurables(JsonArray& config); + const std::function handler_func_; +}; + +/** + * @brief HTTP server class wrapping the esp-idf http server. + * + */ +class HTTPServer : public Configurable { + public: + HTTPServer(int port = HTTP_DEFAULT_PORT, + String config_path = "/system/httpserver", String description = "", + int sort_order = 0) + : config_(HTTPD_DEFAULT_CONFIG()), + Configurable(config_path, description, sort_order) { + config_.server_port = port; + config_.max_uri_handlers = 20; + config_.uri_match_fn = httpd_uri_match_wildcard; + String auth_realm_ = "Login required for " + SensESPBaseApp::get_hostname(); + load_configuration(); + if (auth_required_) { + authenticator_ = + new HTTPDigestAuthenticator(username_, password_, auth_realm_); + } + if (singleton_ == nullptr) { + singleton_ = this; + debugD("HTTPServer instance created"); + } else { + debugE("Only one HTTPServer instance is allowed"); + return; + } + ReactESP::app->onDelay(0, [this]() { + esp_err_t error = httpd_start(&server_, &config_); + if (error != ESP_OK) { + debugE("Error starting HTTP server: %s", esp_err_to_name(error)); + } else { + debugI("HTTP server started"); + } + + // register the request dispatcher for all methods and all URIs + httpd_uri_t uri = { + .uri = "/*", + .method = HTTP_GET, + .handler = call_request_dispatcher, + .user_ctx = this, + }; + httpd_register_uri_handler(server_, &uri); + uri.method = HTTP_HEAD; + httpd_register_uri_handler(server_, &uri); + uri.method = HTTP_POST; + httpd_register_uri_handler(server_, &uri); + uri.method = HTTP_PUT; + httpd_register_uri_handler(server_, &uri); + uri.method = HTTP_DELETE; + httpd_register_uri_handler(server_, &uri); + + // announce the server over mDNS + MDNS.addService("http", "tcp", 80); + }); + }; + ~HTTPServer() {} - private: - AsyncWebServer* server; - void handle_config_list(AsyncWebServerRequest* request); + void stop() { httpd_stop(server_); } + + void set_auth_credentials(const String& username, const String& password, + bool auth_required = true) { + username_ = username; + password_ = password; + auth_required_ = auth_required; + } + + void set_captive_portal(bool captive_portal) { + captive_portal_ = captive_portal; + } + + virtual void get_configuration(JsonObject& config) override { + config["auth_required"] = auth_required_; + config["username"] = username_; + config["password"] = password_; + } + + virtual bool set_configuration(const JsonObject& config) override { + if (config.containsKey("auth_required")) { + auth_required_ = config["auth_required"]; + } + if (config.containsKey("username")) { + username_ = config["username"].as(); + } + if (config.containsKey("password")) { + password_ = config["password"].as(); + } + return true; + } + + void add_handler(HTTPRequestHandler* handler) { + handlers_.push_back(handler); + } + + protected: + static HTTPServer* get_server() { return singleton_; } + static HTTPServer* singleton_; + bool captive_portal_ = false; + httpd_handle_t server_ = nullptr; + httpd_config_t config_; + String username_; + String password_; + bool auth_required_ = false; + HTTPAuthenticator* authenticator_ = nullptr; + + bool authenticate_request(HTTPAuthenticator* auth, + std::function handler, + httpd_req_t* req); + + /** + * @brief Dispatcher method that captures all requests and forwards them to + * the appropriate handlers. + * + * @param req + * @return esp_err_t + */ + esp_err_t dispatch_request(httpd_req_t* req); + + /** + * @brief Check if the request is for the captive portal and handle it if it + * + * @param req + * @return true Request was handled + * @return false Request was not handled + */ + bool handle_captive_portal(httpd_req_t* req); + + std::list handlers_; + + friend esp_err_t call_request_dispatcher(httpd_req_t* req); }; } // namespace sensesp -#endif +#endif // SENSESP_NET_HTTP_SERVER_H_ diff --git a/src/sensesp/net/networking.cpp b/src/sensesp/net/networking.cpp index 8e830d58b..c36bb86e8 100644 --- a/src/sensesp/net/networking.cpp +++ b/src/sensesp/net/networking.cpp @@ -21,135 +21,217 @@ namespace sensesp { // 3. If the hard-coded hostname is changed, use that instead of the saved one. // (But keep using the saved WiFi credentials!) -Networking::Networking(String config_path, String ssid, String password, - String hostname) - : Configurable{config_path, "Basic WiFi Setup", 100}, - Startable(80), - Resettable(0) { - +Networking::Networking(String config_path, String client_ssid, + String client_password) + : Configurable{config_path, "Basic WiFi Setup", 100}, Resettable(0) { // Get the WiFi state producer singleton and make it update this object output wifi_state_producer = WiFiStateProducer::get_singleton(); wifi_state_producer->connect_to(new LambdaConsumer( [this](WiFiState state) { this->emit(state); })); - preset_ssid = ssid; - preset_password = password; - preset_hostname = hostname; - default_hostname = hostname; - load_configuration(); - if (default_hostname != preset_hostname) { - // if the preset hostname has changed, use it instead of the loaded one - SensESPBaseApp::get()->get_hostname_observable()->set(preset_hostname); - default_hostname = preset_hostname; + // Fill in the rest of the client settings array with empty configs + int num_fill = kMaxNumClientConfigs - client_settings_.size(); + for (int i = 0; i < num_fill; i++) { + client_settings_.push_back(ClientSSIDConfig()); } - if (ap_ssid == "" && preset_ssid != "") { - // there is no saved config and preset config is available - ap_ssid = preset_ssid; + if (client_ssid != "" && client_password != "" && + client_settings_.size() == 0) { + ClientSSIDConfig preset_client_config = {client_ssid, client_password, + true}; + client_settings_.push_back(preset_client_config); + client_enabled_ = true; } - if (ap_password == "" && preset_password != "") { - // there is no saved config and preset config is available - ap_password = preset_password; + debugD("Enabling Networking"); + + // If both saved AP settings and saved client settings + // are available, start in STA+AP mode. + + if (this->ap_settings_.enabled_ && this->client_enabled_ == true) { + WiFi.mode(WIFI_AP_STA); + start_access_point(); + start_client_autoconnect(); } -} -void Networking::start() { - debugD("Enabling Networking object"); + // If saved AP settings are available, use them. + + else if (this->ap_settings_.enabled_) { + WiFi.mode(WIFI_AP); + start_access_point(); + } - // If we have preset or saved WiFi config, always use it. Otherwise, - // start WiFiManager. WiFiManager always starts the configuration portal - // instead of trying to connect. + // If saved client settings are available, use them. - if (ap_ssid != "" && ap_password != "") { - debugI("Using SSID %s", ap_ssid.c_str()); - setup_client(); + else if (this->client_enabled_) { + WiFi.mode(WIFI_STA); + start_client_autoconnect(); } else { - debugE("No SSID or password available."); + // Start WiFi with a bogus SSID to initialize the network stack but + // don't connect to any network. + WiFi.begin("0", "0"); + } + + if (this->ap_settings_.enabled_ && + this->ap_settings_.captive_portal_enabled_) { + dns_server_ = new DNSServer(); + + dns_server_->setErrorReplyCode(DNSReplyCode::NoError); + dns_server_->start(53, "*", WiFi.softAPIP()); + + ReactESP::app->onRepeat(1, [this]() { dns_server_->processNextRequest(); }); } - // otherwise, fall through and WiFi will remain disconnected - // TODO: Start AP mode if no SSID or password is available } /** - * @brief Start WiFi using preset SSID and password. + * @brief Start an access point. + * */ -void Networking::setup_client() { +void Networking::start_access_point() { String hostname = SensESPBaseApp::get_hostname(); WiFi.setHostname(hostname.c_str()); - if (ap_mode_ == false) { - // set up WiFi in regular STA (client) mode - auto reconnect_cb = [this]() { - if (WiFi.status() != WL_CONNECTED) { - debugI("Connecting to wifi SSID %s.", ap_ssid.c_str()); - WiFi.begin(ap_ssid.c_str(), ap_password.c_str()); - } - }; + debugI("Starting access point %s", ap_settings_.ssid_.c_str()); - // Perform an initial connection without a delay. - reconnect_cb(); + bool result = + WiFi.softAP(ap_settings_.ssid_.c_str(), ap_settings_.password_.c_str(), + ap_settings_.channel_, ap_settings_.hidden_); - // Launch a separate onRepeat reaction to (re-)establish WiFi connection. - // Connecting is attempted only every 20 s to allow the previous connection - // attempt to complete even if the network is slow. - ReactESP::app->onRepeat(20000, reconnect_cb); - } else { - // Set up WiFi in AP mode. In this case, we don't need a reconnect loop. - debugI("Setting up a WiFi access point..."); - WiFi.softAP(ap_ssid.c_str(), ap_password.c_str()); + if (!result) { + debugE("Failed to start access point."); + return; } } -String Networking::get_config_schema() { - static const char kSchema[] = R"###({ - "type": "object", - "properties": { - "hostname": { "title": "Device hostname", "type": "string" }, - "ssid": { "title": "WiFi SSID", "type": "string" }, - "password": { "title": "WiFi password", "type": "string", "format": "password" }, - "ap_mode": { "type": "string", "format": "radio", "title": "WiFi mode", "enum": ["Client", "Access Point"] } +/** + * @brief Start WiFi using preset SSID and password. + */ +void Networking::start_client_autoconnect() { + String hostname = SensESPBaseApp::get_hostname(); + WiFi.setHostname(hostname.c_str()); + + // set up WiFi in regular STA (client) mode + auto reconnect_cb = [this]() { + static uint32_t attempt_num = 0; + static uint32_t current_config_idx = 0; + + // First check if any of the client settings are defined + if (client_settings_.size() == 0) { + debugW("No client settings defined. Leaving WiFi client disconnected."); + return; } - })###"; - return String(kSchema); -} + uint32_t prev_config_idx = current_config_idx; -// FIXME: hostname should be saved in SensESPApp + ClientSSIDConfig config; -void Networking::get_configuration(JsonObject& root) { - String hostname = SensESPBaseApp::get_hostname(); - root["hostname"] = hostname; - root["default_hostname"] = default_hostname; - root["ssid"] = ap_ssid; - root["password"] = ap_password; - root["ap_mode"] = ap_mode_ ? "Access Point" : "Client"; -} + while (true) { + config = client_settings_[current_config_idx % client_settings_.size()]; + current_config_idx += 1; + if (config.ssid_ != "" && config.password_ != "") { + break; + } + if (current_config_idx == prev_config_idx + client_settings_.size()) { + debugW( + "No enabled client settings found. Leaving WiFi client " + "disconnected."); + return; + } + } -bool Networking::set_configuration(const JsonObject& config) { - if (!config.containsKey("hostname")) { - return false; - } + if (client_enabled_ && WiFi.status() != WL_CONNECTED) { + debugI("Connecting to wifi SSID %s (connection attempt #%d).", + config.ssid_.c_str(), attempt_num); + if (!config.use_dhcp_) { + debugI("Using static IP address: %s", config.ip_.toString().c_str()); + WiFi.config(config.ip_, config.dns_server_, config.gateway_, + config.netmask_); + } + WiFi.begin(config.ssid_.c_str(), config.password_.c_str()); + attempt_num++; + } + }; - SensESPBaseApp::get()->get_hostname_observable()->set( - config["hostname"].as()); + // Perform an initial connection without a delay. + reconnect_cb(); - if (config.containsKey("default_hostname")) { - default_hostname = config["default_hostname"].as(); + // Launch a separate onRepeat reaction to (re-)establish WiFi connection. + // Connecting is attempted only every 20 s to allow the previous connection + // attempt to complete even if the network is slow. + ReactESP::app->onRepeat(20000, reconnect_cb); +} + +/** + * @brief Serialize the current configuration to a JSON document. + * + */ +void Networking::get_configuration(JsonObject& root) { + JsonObject apSettingsJson = root["apSettings"].to(); + ap_settings_.as_json(apSettingsJson); + + JsonObject clientSettingsJson = root["clientSettings"].to(); + clientSettingsJson["enabled"] = client_enabled_; + JsonArray clientConfigsJson = clientSettingsJson["settings"].to(); + int num_serialized = 0; + for (auto& config : client_settings_) { + if (num_serialized++ >= kMaxNumClientConfigs) { + break; + } + JsonObject clientConfigJson = clientConfigsJson.add(); + config.as_json(clientConfigJson); } - ap_ssid = config["ssid"].as(); - ap_password = config["password"].as(); +} - if (config.containsKey("ap_mode")) { - if (config["ap_mode"].as() == "Access Point" || - config["ap_mode"].as() == "Hotspot") { - ap_mode_ = true; +bool Networking::set_configuration(const JsonObject& config) { + if (config.containsKey("hostname")) { + // deal with the legacy Json format + String hostname = config["hostname"].as(); + SensESPBaseApp::get()->get_hostname_observable()->set(hostname); + + if (config.containsKey("ssid")) { + String ssid = config["ssid"].as(); + String password = config["password"].as(); + + if (config.containsKey("ap_mode")) { + bool ap_mode; + if (config["ap_mode"].as() == "Access Point" || + config["ap_mode"].as() == "Hotspot") { + ap_settings_ = {true, ssid, password}; + } else { + ClientSSIDConfig client_settings = {ssid, password}; + client_settings_.clear(); + client_settings_.push_back(client_settings); + client_enabled_ = true; + } + } + } + } else { + // Either an empty config or a new-style config + if (config.containsKey("apSettings")) { + ap_settings_ = AccessPointSettings::from_json(config["apSettings"]); } else { - ap_mode_ = false; + ap_settings_ = AccessPointSettings(true); + } + if (config.containsKey("clientSettings")) { + const JsonObject& client_settings_json = config["clientSettings"]; + client_enabled_ = client_settings_json["enabled"] | false; + client_settings_.clear(); + const JsonArray& client_settings_json_array = + client_settings_json["settings"]; + for (const JsonObject& cfg_json : client_settings_json_array) { + client_settings_.push_back(ClientSSIDConfig::from_json(cfg_json)); + } + if (client_settings_.size() == 0) { + client_enabled_ = false; + } } } + // Fill in the rest of the client settings array with empty configs + while (client_settings_.size() < kMaxNumClientConfigs) { + client_settings_.push_back(ClientSSIDConfig()); + } return true; } @@ -157,10 +239,7 @@ bool Networking::set_configuration(const JsonObject& config) { void Networking::reset() { debugI("Resetting WiFi SSID settings"); - ap_ssid = preset_ssid; - ap_password = preset_password; - - save_configuration(); + clear_configuration(); WiFi.disconnect(true); // On ESP32, disconnect does not erase previous credentials. Let's connect // to a bogus network instead @@ -176,4 +255,28 @@ WiFiStateProducer* WiFiStateProducer::get_singleton() { return instance_; } +void Networking::start_wifi_scan() { + debugI("Starting WiFi network scan"); + WiFi.scanNetworks(true); +} + +int16_t Networking::get_wifi_scan_results( + std::vector& ssid_list) { + int num_networks = WiFi.scanComplete(); + if (num_networks == WIFI_SCAN_RUNNING) { + return WIFI_SCAN_RUNNING; + } + if (num_networks == WIFI_SCAN_FAILED) { + return WIFI_SCAN_FAILED; + } + ssid_list.clear(); + for (int i = 0; i < num_networks; i++) { + WiFiNetworkInfo info(WiFi.SSID(i), WiFi.RSSI(i), WiFi.encryptionType(i), + WiFi.BSSID(i), WiFi.channel(i)); + ssid_list.push_back(info); + } + + return num_networks; +} + } // namespace sensesp diff --git a/src/sensesp/net/networking.h b/src/sensesp/net/networking.h index ebe6b1356..ea691dbae 100644 --- a/src/sensesp/net/networking.h +++ b/src/sensesp/net/networking.h @@ -2,18 +2,19 @@ #define _networking_H_ #include "Arduino.h" - #include "WiFi.h" +#include #include "sensesp/net/wifi_state.h" #include "sensesp/system/configurable.h" #include "sensesp/system/observablevalue.h" #include "sensesp/system/resettable.h" -#include "sensesp/system/startable.h" #include "sensesp/system/valueproducer.h" namespace sensesp { +constexpr int kMaxNumClientConfigs = 3; + /** * @brief Provide information about the current WiFi state. * @@ -23,7 +24,7 @@ namespace sensesp { * from the rest of the system. This allows for replacing the Networking * class with a different implementation. */ -class WiFiStateProducer : public ValueProducer, public Startable { +class WiFiStateProducer : public ValueProducer { public: /** * Singletons should not be cloneable @@ -40,14 +41,15 @@ class WiFiStateProducer : public ValueProducer, public Startable { */ static WiFiStateProducer* get_singleton(); - virtual void start() override { + protected: + WiFiStateProducer() { + this->output = WiFiState::kWifiNoAP; + setup_wifi_callbacks(); - // Emit the current state immediately - this->emit(this->output); - } - protected: - WiFiStateProducer() : Startable(81) { this->output = WiFiState::kWifiNoAP; } + // Emit the current state as soon as the event loop starts + ReactESP::app->onDelay(0, [this]() { this->emit(this->output); }); + } void setup_wifi_callbacks() { WiFi.onEvent( @@ -94,26 +96,154 @@ class WiFiStateProducer : public ValueProducer, public Startable { static WiFiStateProducer* instance_; }; +/** + * @brief Storage object for WiFi access point settings. + * + */ +class AccessPointSettings { + public: + AccessPointSettings(bool enabled = true, String ssid = "SensESP", + String password = "thisisfine", int channel = 9, + bool hidden = false, bool captive_portal_enabled = true) + : enabled_{enabled}, + ssid_{ssid}, + password_{password}, + channel_{channel}, + hidden_{hidden}, + captive_portal_enabled_{captive_portal_enabled} {}; + + bool enabled_; + String ssid_; + String password_; + int channel_; + bool hidden_; + bool captive_portal_enabled_ = true; + + static AccessPointSettings from_json(const JsonObject& json) { + AccessPointSettings settings; + settings.enabled_ = json["enabled"] | false; + settings.ssid_ = json["name"] | ""; + settings.password_ = json["password"] | ""; + settings.channel_ = json["channel"] | 1; + settings.hidden_ = json["hidden"] | false; + settings.captive_portal_enabled_ = json["captivePortalEnabled"] | true; + return settings; + } + + void as_json(JsonObject& doc) { + doc["enabled"] = enabled_; + doc["name"] = ssid_; + doc["password"] = password_; + doc["channel"] = channel_; + doc["hidden"] = hidden_; + doc["captivePortalEnabled"] = captive_portal_enabled_; + } +}; + +/** + * @brief Storage object for WiFi client settings. + * + */ +class ClientSSIDConfig { + public: + ClientSSIDConfig(String ssid = "", String password = "", bool use_dhcp = true, + IPAddress ip = IPAddress(169, 254, 0, 1), + IPAddress netmask = IPAddress(255, 255, 255, 0), + IPAddress gateway = IPAddress(192, 168, 0, 1), + IPAddress dns_server = IPAddress(8, 8, 8, 8)) + : ssid_{ssid}, + password_{password}, + use_dhcp_{use_dhcp}, + ip_{ip}, + netmask_{netmask}, + gateway_{gateway}, + dns_server_{dns_server} {}; + + String ssid_; + String password_; + bool use_dhcp_; + IPAddress ip_; + IPAddress netmask_; + IPAddress gateway_; + IPAddress dns_server_; + + static ClientSSIDConfig from_json(const JsonObject& json) { + ClientSSIDConfig config; + config.ssid_ = json["name"] | ""; + config.password_ = json["password"] | ""; + config.use_dhcp_ = json["useDHCP"] | true; + config.ip_.fromString(json["ipAddress"] | "169.254.0.1"); + config.netmask_.fromString(json["netmask"] | "255.255.255.0"); + config.gateway_.fromString(json["gateway"] | "192.168.0.1"); + config.dns_server_.fromString(json["dnsServer"] | "8.8.8.8"); + return config; + } + + void as_json(JsonObject& doc) { + doc["name"] = ssid_; + doc["password"] = password_; + doc["useDHCP"] = use_dhcp_; + doc["ipAddress"] = ip_.toString(); + doc["netmask"] = netmask_.toString(); + doc["gateway"] = gateway_.toString(); + doc["dnsServer"] = dns_server_.toString(); + } +}; + +/** + * @brief WiFi Network Information storage class. + * + */ +class WiFiNetworkInfo { + public: + WiFiNetworkInfo() + : ssid_{""}, rssi_{0}, encryption_{0}, bssid_{0}, channel_{0} {} + WiFiNetworkInfo(String ssid, int32_t rssi, uint8_t encryption, uint8_t* bssid, + int32_t channel) + : ssid_{ssid}, rssi_{rssi}, encryption_{encryption}, channel_{channel} { + memcpy(bssid_, bssid, 6); + } + + String ssid_; + int32_t rssi_; + uint8_t encryption_; + uint8_t bssid_[6]; + int32_t channel_; + + void as_json(JsonObject& doc) { + doc["ssid"] = ssid_; + doc["rssi"] = rssi_; + doc["encryption"] = encryption_; + doc["channel"] = channel_; + // Add bssid as a string + doc["bssid"] = String(bssid_[0], HEX) + ":" + String(bssid_[1], HEX) + ":" + + String(bssid_[2], HEX) + ":" + String(bssid_[3], HEX) + ":" + + String(bssid_[4], HEX) + ":" + String(bssid_[5], HEX); + } +}; + /** * @brief Manages the ESP's connection to the Wifi network. */ class Networking : public Configurable, - public Startable, public Resettable, public ValueProducer { public: - Networking(String config_path, String ssid, String password, String hostname); - virtual void start() override; + Networking(String config_path, String client_ssid = "", + String client_password = ""); virtual void reset() override; virtual void get_configuration(JsonObject& doc) override final; virtual bool set_configuration(const JsonObject& config) override final; - virtual String get_config_schema() override; - void set_ap_mode(bool state) { ap_mode_ = state; } + void start_wifi_scan(); + int16_t get_wifi_scan_results(std::vector& ssid_list); + + bool is_captive_portal_enabled() { return ap_settings_.captive_portal_enabled_; } protected: - void setup_client(); + void start_access_point(); + void start_client_autoconnect(); // callbacks @@ -122,24 +252,12 @@ class Networking : public Configurable, void wifi_disconnected(); private: - // If true, the device will set up its own WiFi access point - - bool ap_mode_ = false; - - // Values saved from previous configuration - - String ap_ssid = ""; - String ap_password = ""; - - // hardcoded values provided as constructor parameters + AccessPointSettings ap_settings_; - String preset_ssid = ""; - String preset_password = ""; - String preset_hostname = ""; + bool client_enabled_ = false; + std::vector client_settings_; - // original value of hardcoded hostname; used to detect changes - // in the hardcoded value - String default_hostname = ""; + DNSServer* dns_server_ = nullptr; WiFiStateProducer* wifi_state_producer; }; diff --git a/src/sensesp/net/ota.cpp b/src/sensesp/net/ota.cpp index 4c302b9ef..ea21524f0 100644 --- a/src/sensesp/net/ota.cpp +++ b/src/sensesp/net/ota.cpp @@ -1,37 +1,7 @@ #include "ota.h" -#include -#include - -#include "sensesp.h" - namespace sensesp { -void OTA::start() { - ArduinoOTA.setPassword(password_); - ArduinoOTA.onStart([]() { debugW("Starting OTA"); }); - ArduinoOTA.onEnd([]() { debugW("OTA End"); }); - ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { - debugI("OTA Progress: %u%%\r", (progress / (total / 100))); - }); - ArduinoOTA.onError([](ota_error_t error) { - debugE("OTA Error[%u]: ", error); - if (error == OTA_AUTH_ERROR) { - debugE("OTA Auth Failed"); - } else if (error == OTA_BEGIN_ERROR) { - debugE("OTA Begin Failed"); - } else if (error == OTA_CONNECT_ERROR) { - debugE("OTA Connect Failed"); - } else if (error == OTA_RECEIVE_ERROR) { - debugE("OTA Receive Failed"); - } else if (error == OTA_END_ERROR) { - debugE("OTA End Failed"); - } - }); - ArduinoOTA.begin(); - ReactESP::app->onRepeat(20, OTA::handle_ota); -} - void OTA::handle_ota() { ArduinoOTA.handle(); } } // namespace sensesp diff --git a/src/sensesp/net/ota.h b/src/sensesp/net/ota.h index 2af446ef0..ed2afdf2b 100644 --- a/src/sensesp/net/ota.h +++ b/src/sensesp/net/ota.h @@ -1,19 +1,46 @@ #ifndef _ota_H_ #define _ota_H_ -#include "sensesp/system/startable.h" +#include +#include + +#include "sensesp.h" namespace sensesp { -class OTA : public Startable { +class OTA { public: /** * @brief Construct a new OTA (Over-the-air update) object * * @param password A password to be used for the OTA update. */ - OTA(const char* password) : Startable{0}, password_{password} {} - virtual void start() override; + OTA(const char* password) : password_{password} { + ReactESP::app->onDelay(0, [this]() { + ArduinoOTA.setPassword(password_); + ArduinoOTA.onStart([]() { debugW("Starting OTA"); }); + ArduinoOTA.onEnd([]() { debugW("OTA End"); }); + ArduinoOTA.onProgress([](unsigned int progress, unsigned int total) { + debugI("OTA Progress: %u%%\r", (progress / (total / 100))); + }); + ArduinoOTA.onError([](ota_error_t error) { + debugE("OTA Error[%u]: ", error); + if (error == OTA_AUTH_ERROR) { + debugE("OTA Auth Failed"); + } else if (error == OTA_BEGIN_ERROR) { + debugE("OTA Begin Failed"); + } else if (error == OTA_CONNECT_ERROR) { + debugE("OTA Connect Failed"); + } else if (error == OTA_RECEIVE_ERROR) { + debugE("OTA Receive Failed"); + } else if (error == OTA_END_ERROR) { + debugE("OTA End Failed"); + } + }); + ArduinoOTA.begin(); + ReactESP::app->onRepeat(20, OTA::handle_ota); + }); + } private: const char* password_; diff --git a/src/sensesp/net/web/app_command_handler.cpp b/src/sensesp/net/web/app_command_handler.cpp new file mode 100644 index 000000000..79348602e --- /dev/null +++ b/src/sensesp/net/web/app_command_handler.cpp @@ -0,0 +1,58 @@ +#include "app_command_handler.h" + +#include + +namespace sensesp { + +void add_scan_wifi_networks_handlers(HTTPServer* server) { + HTTPRequestHandler* scan_wifi_networks_handler = + new HTTPRequestHandler(1 << HTTP_POST, "/api/wifi/scan", [](httpd_req_t* req) { + auto networking = SensESPApp::get()->get_networking(); + networking->start_wifi_scan(); + // Return status code 202 and "SCAN STARTED" message + httpd_resp_set_status(req, "202 Accepted"); + httpd_resp_send(req, "SCAN STARTED", 0); + return ESP_OK; + }); + + server->add_handler(scan_wifi_networks_handler); + + HTTPRequestHandler* scan_results_handler = + new HTTPRequestHandler(1 << HTTP_GET, "/api/wifi/scan-results", + [](httpd_req_t* req) { + auto networking = SensESPApp::get()->get_networking(); + std::vector ssid_list; + int16_t result = networking->get_wifi_scan_results(ssid_list); + if (result == WIFI_SCAN_RUNNING) { + // Return status code 202 and "SCAN RUNNING" message + httpd_resp_set_status(req, "202 Accepted"); + httpd_resp_send(req, "SCAN RUNNING", 0); + return ESP_OK; + } else if (result == WIFI_SCAN_FAILED) { + // Return status code 400 and "SCAN FAILED" message + httpd_resp_set_status(req, "400 Bad Request"); + httpd_resp_send(req, "SCAN FAILED", 0); + return ESP_OK; + } + // Construct a JSON array of the scan results + JsonDocument doc; + JsonArray networks = doc["networks"].to(); + for (auto& ssid_info : ssid_list) { + JsonObject network = networks.add(); + ssid_info.as_json(network); + } + String json_str; + serializeJson(doc, json_str); + httpd_resp_set_type(req, "application/json"); + httpd_resp_send(req, json_str.c_str(), json_str.length()); + return ESP_OK; + }); + + server->add_handler(scan_results_handler); +} + +void add_app_http_command_handlers(HTTPServer* server) { + add_scan_wifi_networks_handlers(server); +} + +} // namespace sensesp diff --git a/src/sensesp/net/web/app_command_handler.h b/src/sensesp/net/web/app_command_handler.h new file mode 100644 index 000000000..caf2859aa --- /dev/null +++ b/src/sensesp/net/web/app_command_handler.h @@ -0,0 +1,17 @@ +#ifndef SENSESP_NET_HTTP_APP_COMMAND_HANDLER_H_ +#define SENSESP_NET_HTTP_APP_COMMAND_HANDLER_H_ + +#include + +#include "ArduinoJson.h" +#include "sensesp/net/http_server.h" +#include "sensesp/system/configurable.h" +#include "sensesp_app.h" + +namespace sensesp { + +void add_app_http_command_handlers(HTTPServer* server); + +} // namespace sensesp + +#endif diff --git a/src/sensesp/net/web/autogen/web_ui_files.h b/src/sensesp/net/web/autogen/web_ui_files.h new file mode 100644 index 000000000..45a27b4e8 --- /dev/null +++ b/src/sensesp/net/web/autogen/web_ui_files.h @@ -0,0 +1,5278 @@ + +#ifndef SRC_SENSESP_NET_WEB_AUTOGEN_WEB_UI_FILES_H +#define SRC_SENSESP_NET_WEB_AUTOGEN_WEB_UI_FILES_H +#include "sensesp/net/web/static_file_data.h" + +namespace sensesp { + +const StaticFileData kWebUIFiles[] = { +{ + "/SensESP_logo_symbol.svg", + + "\x1f\x8b\x08\x00\xac\x20\xc5\x65\x02\xff\xed\x59\x59\x73\x1b\xc7" + "\x11\xfe\x2b\x93\x4d\xe5\x6d\x67\x30\xf7\x41\x91\x74\xc5\x92\xe3" + "\x4a\x95\x93\xb8\x2a\x72\x52\xf1\x1b\xb3\x00\x49\xc4\x2b\x80\x05" + "\xc2\xa4\xfc\xef\xd3\xc7\xec\xe2\x08\x44\x00\x8c\x94\xbc\xf8\x41" + "\x04\x66\xe7\xeb\xf3\xeb\xee\x99\x85\x2e\xbf\xfa\xf8\xa1\x17\x4f" + "\xb3\xd5\xe3\x7c\xb9\xb8\x6a\x8c\xd2\x8d\x98\x2d\xba\xe5\x74\xbe" + "\xb8\xbb\x6a\x7e\x78\xff\x07\x99\x1b\xf1\xb8\xbe\x59\x4c\x6f\xfa" + "\xe5\x62\x76\xd5\x2c\x96\xcd\x57\xd7\x97\xbf\x79\xf7\x97\xb7\xef" + "\xff\xf1\xfd\x37\xe2\xf1\xe9\x4e\x7c\xff\xc3\xd7\xdf\xfd\xf1\xad" + "\x68\xe4\x64\xf2\x77\xf7\x76\x32\x79\xf7\xfe\x9d\xf8\xeb\xdf\xbe" + "\x15\x46\x99\xc9\xe4\x9b\x3f\x37\xa2\xb9\x5f\xaf\x1f\x2e\x26\x93" + "\xe7\xe7\x67\xf5\xec\xd4\x72\x75\x37\xf9\x76\x75\xf3\x70\x3f\xef" + "\x1e\x27\x00\x9c\x20\x10\x84\x26\xa0\xcc\x18\x35\x5d\x4f\x9b\xeb" + "\x4b\x54\xfc\x3c\x9f\xae\xef\xc1\x29\xad\x7f\xd7\x88\xfb\xd9\xfc" + "\xee\x7e\x3d\xac\x9e\xe6\xb3\xe7\xaf\x97\x1f\xaf\x1a\x2d\xb4\x88" + "\x49\x8b\x60\x7c\xb3\x1d\x87\x69\x04\x44\xb6\x78\xbc\x3a\x60\xdc" + "\x6a\xad\xd1\x58\x85\x5c\x7c\xec\xe7\x8b\x9f\x0e\x01\x4d\x29\x65" + "\x42\xbb\x04\xbd\x78\x7c\xb8\xe9\x20\x07\x0f\xab\xd9\xe3\x6c\xf5" + "\x34\x1b\xe4\x61\x31\xbf\xdd\x91\xa7\x27\xaa\x5b\x7e\x98\x60\xf6" + "\x7e\xe9\x41\xe8\x76\xde\xf7\x72\xf5\x73\x3f\xbb\x98\x3d\xcd\x16" + "\xcb\xe9\xf4\x4d\xd7\xcf\x1f\x76\x9f\x3c\xae\x57\xcb\x9f\x66\x12" + "\x0c\xce\xfe\xb5\x9c\x2f\x2e\x56\xcb\x9f\x17\xe3\xd3\x0f\xf3\xf5" + "\x6c\xd5\xcf\xe1\xe3\xc2\xbe\x81\x0c\xdd\x89\xf9\xf4\xaa\x79\x3f" + "\xfb\xb8\x86\xc5\xe4\xee\xfa\x72\x35\xeb\xd6\xf4\xec\xf7\xab\xf5" + "\x3f\x97\x37\xab\x29\xe6\x00\x32\xd4\x88\x5f\xe8\x6f\x4d\x67\x8c" + "\x45\xa5\x14\x37\x19\x0d\xc6\xa9\x68\xf2\x8e\xa7\x17\x0b\x60\xfb" + "\x4d\x33\x19\xcc\x7c\xb7\xbc\x5b\xa2\xcd\xeb\xcb\x87\x9b\xf5\xbd" + "\x80\x27\x7f\x32\x3a\x2b\x1f\x4d\x6b\x82\x56\xc6\x75\x32\x29\x93" + "\x7c\x2b\xb5\x90\xc6\xb5\x32\xa8\x6c\x23\x7f\x85\x4d\xdd\xd2\x76" + "\x10\xf4\x18\x1f\x09\xde\xe9\x93\x57\xd1\xc3\x13\xdd\x39\x95\x5d" + "\x46\xf9\xa4\x7c\x6e\x8d\x8a\x25\x8a\xa2\x4a\x30\x2d\x40\x9c\xef" + "\x83\x51\xa1\x8d\x46\xd9\x10\x3a\x8f\x0e\xb7\x41\xf9\x62\x85\x53" + "\x45\x03\x1e\x62\x28\x05\x0c\xaa\x90\x7d\x6b\xb2\x72\x26\x75\x92" + "\x10\x28\x6f\x12\xfa\x82\x90\x16\xf1\xb8\x22\x48\x4b\x02\xa1\x97" + "\x3e\xa9\xa8\xc1\xfd\x10\x55\xb4\xa6\x97\x31\xab\x00\xa2\x52\xff" + "\xb8\x9b\x97\xdf\x6a\x57\x28\x2f\x63\x1e\xac\x05\xfd\xe0\x41\x06" + "\xc5\x21\x76\xd2\xa3\x42\x4c\x40\x30\xe0\x8f\x1b\x02\x56\xc9\x5a" + "\x81\x51\x61\xdc\x60\x5b\xa7\x0e\x20\x60\x01\xf1\x5e\x30\xa0\x25" + "\x7c\x10\x0c\xa0\x24\xf8\x1e\x62\x2e\x29\xb4\x98\x29\xd3\x11\xba" + "\x65\xe5\x84\x6d\xab\x6a\x49\xe0\xb6\xaa\x66\xf3\x2d\xeb\xae\xd6" + "\x5b\xd6\x5d\xad\xb7\x2c\x00\x91\xa2\x7a\x88\x9c\xf4\x1f\x8d\xd6" + "\xdb\xa8\x2c\x44\x1b\x13\xe4\xc7\x83\x3b\xde\x53\xb0\xd1\x19\x61" + "\x2c\xe4\x0e\x14\x47\xdc\xc2\x18\x6c\x00\x42\xad\x32\x3e\x77\x88" + "\x40\x26\x00\x2e\x70\x1f\xfc\x26\xb4\xc0\xed\xd2\x12\xb8\x80\x33" + "\x9e\xa2\xc8\xe0\x13\x08\x49\xc4\xc7\x96\xb5\xcb\xaa\x9e\xb5\x4b" + "\x96\x68\x59\x3b\x3b\xd0\x4a\xd6\xcf\x0e\xb4\x55\x40\xb0\x07\x2d" + "\x4b\xe4\xbe\x9a\x90\x64\xa3\x1c\x0d\x38\x64\x48\x97\x43\x77\x3d" + "\x96\x39\x95\x31\x56\x29\xd4\x6f\x60\xae\x5c\x8b\xe5\xaf\x5b\x6a" + "\x00\x41\x95\x8f\xac\x50\xf1\x43\x85\xcb\x12\x20\x63\x05\x64\x7a" + "\x19\xb2\xd2\x29\xb7\x09\xaa\xd8\x1b\x2a\x15\x87\x6a\x42\xe4\xf0" + "\x92\x2d\x10\x9e\x2b\x91\xc3\x83\xb4\xa8\x1c\x2d\x91\x19\x29\x3a" + "\x80\x63\x74\x0e\xd2\x57\xf1\xc8\x3b\x60\x38\xba\xc2\xb5\x02\xb6" + "\x52\x54\xda\xe6\xce\x42\x87\x16\x2c\x2a\x58\x40\xda\x0d\x2e\xbc" + "\x4a\x19\xbc\xd6\xe0\x49\xac\xab\xde\x68\xa3\x5c\xf6\xa7\x94\xfb" + "\x90\x0f\x07\x79\xf4\x50\x69\xaf\x48\xc8\xc6\x5a\x87\xf5\xae\x0d" + "\x4d\x0d\x68\x7b\x9a\x09\x2a\x46\xa0\xb0\xa8\x9c\x1d\x85\x1c\x42" + "\xad\x51\x0c\xcb\x42\xcb\x50\x8f\x45\x4c\x08\xb4\x77\x00\xac\x57" + "\x9a\x3a\x19\xfa\x3b\x66\xe8\x31\xef\x98\x6d\x67\x4b\x87\x10\xdf" + "\xb2\x80\x20\x44\x6a\x59\x80\x9a\xcc\xe2\xa4\xf1\x2e\xf5\xc8\x4c" + "\x4e\x58\xd6\x25\xb9\x1e\x28\x73\xd8\xa8\xc7\xd3\x01\xf5\xa9\x2c" + "\x24\xc0\xdb\xa2\x68\x2e\x25\x4c\x83\xf7\x5e\x80\x11\xcf\x73\x29" + "\x64\x64\x09\x49\x43\x93\x8e\x08\x05\x04\xce\xa5\xc4\xdd\x09\x90" + "\x16\xf1\x85\xbb\xd3\x21\x9f\x28\xd0\x4b\x28\x15\xe3\x80\xa7\x6c" + "\x55\x0e\x96\x22\x4f\x34\x5e\xd1\x84\x64\x1b\x55\x83\x30\xb5\x30" + "\xd8\x08\xdb\x90\x6c\xa4\xda\x90\x6c\xa4\xda\x60\x13\xd5\x02\x1b" + "\x38\x3e\xed\x3c\x54\x0c\xf4\x24\xc6\x6d\x34\x51\xe1\x8b\xc1\x1a" + "\x2e\x81\x5b\x14\x66\x03\xcd\x65\xaa\x48\xc8\x8c\x55\x5a\x1b\xaa" + "\xe1\x42\xf5\x06\x70\xac\x61\x1c\xcc\x8c\xc7\x06\xd5\x58\x04\x24" + "\x10\xfb\xa4\xa1\x92\x31\x64\x18\x31\xd9\x76\x6c\x40\xb2\x05\x36" + "\xc0\xe2\x82\xf1\x30\x61\x3a\xda\x6c\x59\x37\xab\x66\xcd\xb6\x65" + "\x27\x20\x8f\xac\x94\x75\x1e\x8d\x12\x66\x83\xf7\x30\x30\x8b\xa6" + "\x1a\x97\x63\x91\x1f\x38\xdb\xe4\xce\xe1\x16\xb6\x0f\x37\x28\x23" + "\x6c\x69\xe8\xfc\x18\x55\x32\xdc\x97\x25\x3b\x88\x29\x11\x87\x78" + "\x24\x58\x55\x0c\x0d\x4d\xad\x2b\x33\x99\xd8\x37\x1d\x01\xb0\x4a" + "\xe0\x60\xa3\xed\x96\xc0\x11\x89\x36\x5c\x4b\x99\x22\x8b\x30\xce" + "\xd1\xe5\x58\x3a\xc9\x2d\x0f\x64\x62\x31\x81\x54\xc0\x3a\xf3\x39" + "\x52\x4b\xd9\xba\xe0\x1e\x84\x46\x7b\xa1\xc4\xbb\xf9\xaa\xeb\x67" + "\xa2\x83\x2b\x04\xa7\xa3\x11\x1d\x5c\x24\x8c\x83\x60\x5d\x23\x56" + "\x57\x8d\x4d\x30\x57\xf6\xa4\x6f\x6f\x6f\x0f\xa6\xb2\x24\x3c\xbd" + "\x2c\x0c\x2b\x43\xed\xee\x0a\x1d\x50\x26\xa9\xa4\xf3\xb0\xc2\x0f" + "\x0b\x97\x05\x86\x41\x86\x69\xb7\xe5\x5d\x38\x4b\x37\x28\x83\x91" + "\x22\xca\xb6\x9a\x37\xb0\x9a\x58\xd9\xb0\x1c\x70\xc0\x0f\x43\x45" + "\xd5\xc7\x00\xb1\x05\xb3\x3f\x7e\x00\x98\x0d\x9d\x84\x31\x60\xea" + "\x2d\xc6\xe3\x36\x1c\x25\x3a\x0e\x0b\xfa\x8b\x0a\x11\xe5\x04\xed" + "\xd1\x43\xf0\x6e\x83\x00\x9b\xb4\x0f\x9e\xf1\x92\x4e\x44\xd0\x32" + "\xac\x2a\x08\xfc\x22\x6b\x82\xb7\xf9\xb9\x15\x72\x1b\x66\xcf\x64" + "\xc7\xa5\x84\x15\x7b\x36\x3d\x0e\x58\xcd\x39\xfd\x4a\xd0\x97\x20" + "\xc8\x3a\xba\x21\x32\x43\x70\xd8\xa8\x12\xcb\xe9\x0c\x55\x69\xc8" + "\x2a\xdc\xb7\x7d\xd9\xa3\xc8\x6e\x33\x64\x2b\x41\x72\x8f\xa1\xb2" + "\xc3\x90\x3d\x97\xa0\xcf\xcd\xcf\x69\xf4\xf8\x4a\x8f\xdd\x66\xc7" + "\x8e\xe4\xc8\x97\xd8\xb1\xa7\x93\xe3\x1d\x1c\x18\xc6\xbc\x92\x9c" + "\x2a\xbd\x4b\x8e\x7d\x91\x9c\x17\xbb\x67\x8f\x1b\x33\x70\x43\xe5" + "\xb6\x45\x0e\xae\x4f\x69\x9f\x01\x07\xfc\x6c\xe8\x71\x23\x3d\xa6" + "\x6c\xf3\x83\xed\x7e\xa4\x81\x2a\xe4\x34\x8a\x3e\x13\x43\xf5\xc6" + "\xf9\xca\x01\x37\xde\x57\x0f\x4e\xb8\xff\x45\xfb\xfc\xbf\xe7\xdb" + "\x69\x0d\x94\x5e\xdd\x40\x39\xe2\x5b\x3a\xd3\x63\x43\x52\x36\xe6" + "\x33\x1a\x88\xa5\x21\xe1\x90\x1a\x78\x93\x1b\x73\x7a\xac\x7f\xec" + "\x4e\xff\xd8\x6d\x6e\xec\xd8\x3d\xf2\x45\x6e\xec\xfe\x64\x2b\x87" + "\x99\xd9\xee\x9c\xe3\x73\xcd\x0b\x4e\x27\x67\x73\x7b\x7f\xa4\xf6" + "\x53\xac\xd8\xcf\xd5\x32\x26\x6b\x78\x65\xcc\xaf\xe4\xa4\x4a\x7f" + "\x61\x4e\x3e\x35\xd2\xec\xab\x26\xda\x49\x03\xcd\x6f\x75\x8c\x15" + "\x3b\x88\x2f\xcc\xcd\x98\x5b\x07\xa7\x39\x25\x08\xde\xb7\xe0\x6d" + "\xa5\x8b\x45\x99\x50\xb0\x53\x6d\x50\xd6\x3a\xfa\x05\x4a\x47\xbf" + "\x59\xd7\x2f\x68\x9e\xc1\xa2\x42\xc6\x2d\x21\xf7\xc1\x3d\xa6\x46" + "\xe3\x8f\x27\x67\x3b\x24\x47\x8f\xe4\xbe\x4b\xff\x61\x86\x98\xaa" + "\x4e\xed\xfb\x74\xba\x4b\xb7\x9d\x3e\xec\x92\x81\x57\x9c\xe0\x43" + "\x07\x2f\x4d\x21\xd2\x34\x73\x19\x5e\xa8\x5c\x1b\xad\xc2\xb7\xa0" + "\xba\xaa\x9f\x90\x20\x06\x02\x3f\xb8\x3f\x3c\xc7\x17\xb5\x5d\xa0" + "\x1c\x15\x8e\x5b\x2c\xb2\xb5\xde\x28\xad\x68\xc1\x4a\x87\x0d\xb1" + "\x8f\xa4\x72\xd4\x90\x3e\xfc\x55\x2f\x90\x6e\xc3\x88\xe0\x94\x29" + "\x79\xb3\xae\x9f\xa0\x9a\xb1\x82\x01\xc3\x73\xb1\x8f\x1b\x35\x0e" + "\x1b\xb2\x6a\x1c\xd7\x1b\x8d\xd5\xbc\xa8\x90\x71\x6b\x63\x7d\xf8" + "\x72\xee\xbd\x35\x05\x15\xfd\x6b\xae\xad\x11\x7f\x36\x3b\x7a\xea" + "\xf2\x81\xb4\x33\x45\xca\xa7\xa7\xc8\x91\x43\x77\x33\xd8\xcd\xce" + "\x04\xc1\xdf\x4c\xb7\x8f\xe6\xd3\x0f\x5d\xba\xcd\x1c\x1e\x21\xbb" + "\xd3\xfd\xa5\x01\x32\x9c\xb8\x6e\x67\x82\xe0\xbd\x62\xe7\x64\x3e" + "\xf7\xd2\x7a\x2e\x33\xe3\x9d\x75\xc3\x8c\x7d\x99\x99\x73\xc6\xfb" + "\xe9\xd3\xfd\x20\x37\x9b\x8b\xed\x19\x37\x56\x2e\x9e\x93\x26\xfc" + "\x09\x03\xfe\xbf\xa7\x67\xe7\xc6\x7a\xee\x0f\x26\xc3\x85\xf5\xd0" + "\x2f\x26\xbf\x5e\x57\x5f\x77\x5d\xc5\xff\x1e\xa3\x7f\x8f\x4f\x77" + "\xd7\xff\x06\x34\x95\x4b\x83\xf4\x1c\x00\x00", + 1931, + "image/svg+xml", + "gzip", +}, +{ + "/assets/__federation_shared_bootstrap-NAH9EMTf.js", + + "\x1f\x8b\x08\x00\xac\x20\xc5\x65\x02\xff\xcd\xbd\xf9\x57\xdb\xc8" + "\xd2\x30\xfc\xfb\xfb\x57\x80\x2e\x0f\x23\x0d\x8d\x21\x33\xef\x7d" + "\xce\xf7\xc9\x57\xf1\x21\x40\x12\xb2\x40\x26\x90\xd5\xd7\x97\x08" + "\xbb\x8d\x95\xd8\x92\x23\xc9\x2c\x31\xfa\xdf\xdf\xaa\xea\x55\x9b" + "\x21\x33\xf7\x59\xce\x49\xb0\xd4\xdd\xea\xa5\xba\xba\xba\xb6\xae" + "\xbe\x0a\xd3\xb5\x57\x81\x93\x27\x73\x87\xdd\x04\xce\x45\x92\xe7" + "\xc9\xcc\x61\x6f\x03\x27\x8d\x2e\x27\xb9\xc3\x8e\x02\x67\xca\xc7" + "\xf0\x30\xe6\x81\x13\x2e\xf2\x04\x92\xf2\xa0\xff\x8a\xdd\xb0\xb7" + "\xec\x68\xc0\xe6\x79\xe0\x64\x79\x98\x42\x89\x13\x78\xe4\xf1\xc8" + "\x61\x59\x16\x38\xc3\x69\x34\x9f\x47\xf1\xe5\x9b\x30\xe5\x71\x9e" + "\x39\xec\x07\x7c\x7f\x15\xf1\xeb\x79\x82\x65\xf7\xa0\xec\x3c\x99" + "\xcf\x79\xea\xb0\x08\x8a\xa7\x7c\xcc\xa1\xe0\x90\x3b\xec\x03\x0f" + "\x8e\xf2\x4e\xca\x47\x8b\x21\x77\xc7\x8b\x78\x98\x47\x49\xec\xc6" + "\x2c\xf7\x96\x29\xcf\x17\x69\xbc\x16\x77\x86\x49\x3c\x0c\x73\xb7" + "\x9f\x6f\x39\xdb\xce\xd6\x3c\x67\xe2\xe1\x24\x1f\x78\x05\xeb\x0f" + "\x3c\xf6\x8c\x07\xfd\x81\x2a\x76\x94\xb3\xfe\x98\x0f\xbc\x87\x56" + "\xca\x5a\xab\x4d\xa1\xab\x17\x7c\x9c\xa4\xfc\x2d\x0f\x61\xa4\x09" + "\x75\x1d\x9f\x42\x78\x0a\xc7\x39\x4f\x45\xc6\x50\x17\x7c\x1d\x46" + "\xb1\xc3\xa6\xf0\x3e\xa3\xa7\x85\x2a\x28\x32\x26\xba\xe0\x87\x34" + "\xca\x61\xf8\x23\x48\xb8\x16\x8f\x63\x55\x54\x66\xcd\xb3\xa0\x9f" + "\x66\xd0\x28\xb4\x06\x2d\x40\xa5\x50\x1b\xd4\x00\xdf\x40\xd9\x41" + "\x57\x8d\x6b\xed\x87\x1b\x9b\x71\xf5\xdc\xb8\x13\x27\x23\x7e\x1c" + "\xce\xf8\xdd\x9d\xe3\x78\x9d\x3c\x79\x95\x5c\xf3\x74\x3f\xcc\xb8" + "\xeb\xf9\xf1\x62\x3a\x2d\xf4\xa7\xdf\xf0\xd3\x68\xec\xc6\x41\x80" + "\x19\x9e\xac\xe5\x3a\x8a\x47\xc9\x75\x17\x33\xe0\xf3\xd3\x3c\x85" + "\xa9\x75\xbd\xf5\x20\x70\xfa\xc9\xc5\x57\x3e\xcc\xd7\x3e\x50\x89" + "\x81\xe3\x2d\xaf\x00\xa7\xf2\x20\xee\x24\xd7\x31\x4f\x0f\x92\xe1" + "\x62\x06\x18\xd0\x95\x15\xe5\x9b\x9b\x79\x67\xc4\xc7\xe1\x62\x9a" + "\xbf\x07\x74\xb8\xbb\x13\x55\x17\xaa\xbb\xa6\x2b\xe7\x39\xf6\x45" + "\xd4\x86\xdd\xea\x1c\x4e\xb9\x5d\x55\xbc\x16\xc5\x80\x7a\x80\x34" + "\xc9\x78\x2d\xbf\xbb\x2b\xbd\xcb\xb2\xa6\xb6\xf7\x95\xca\x9e\x9f" + "\xbd\x7e\xf5\x33\x15\x5a\xe5\x4d\xa5\xdf\xb9\x04\x57\x7e\x3b\xc7" + "\x42\xa7\x93\x10\xc6\xf2\x36\x49\xf2\xc7\xce\xc2\x91\xc0\x5b\x7f" + "\xd4\xb5\xda\x35\x45\x1e\xd4\xac\x29\x6e\x5a\x9d\x46\x66\x2c\x71" + "\x07\x8a\xe6\xbc\x7b\x42\xb3\xd0\xf9\xc6\x6f\x33\x37\xef\x70\xd1" + "\xd1\xcc\xeb\x00\x66\x1d\x86\xc3\x89\xc1\x79\x2e\xbe\xcc\x82\x1c" + "\xbe\xbc\x9d\xf2\xac\xcf\x07\x77\x77\xcb\x82\x45\x90\x12\xe6\x30" + "\xb3\x17\x8b\xdc\xa4\xa6\x81\xa9\x0d\xd2\xba\xeb\xef\xdd\xd4\xbb" + "\xbb\x5b\xff\x41\x3f\xae\x6c\x36\xcc\xb2\xe8\x32\x76\x53\x51\x25" + "\xcb\x3c\x66\xf7\x27\x6a\xe8\x46\x22\xba\x11\x06\x51\x3f\x19\x74" + "\xc3\x20\x08\xd6\x1f\xf5\x52\x58\xa1\xb3\xe4\x8a\xef\xa9\x6e\x40" + "\x31\x1f\x2a\xe5\xb9\x95\xc2\xa8\xf0\x6e\xcf\x71\xfc\xd0\x2b\x3c" + "\xf8\x67\x20\xb3\xa8\x43\x86\xf1\x60\x29\x28\x8d\x0f\xbf\x59\x84" + "\xe5\xfc\xbc\x93\xcc\xf1\x21\x83\x32\x29\x14\xba\xbc\x65\x48\xe5" + "\x7c\x67\xd7\x61\x40\x0b\xe9\x77\x16\xa6\x97\x51\x8c\x8f\x05\x0b" + "\xd3\x34\xb9\xb6\xbe\x77\xc2\x8b\x2c\x99\x42\x77\x20\x4f\x93\x2e" + "\x7f\x59\x14\x6a\x4e\xcb\x70\x31\x20\xec\x88\xae\x48\x38\x71\xf9" + "\xea\x31\x35\x19\x01\x67\x56\x61\x6a\x76\x73\xb3\xb5\x32\xca\xd7" + "\x75\xd1\x9b\xc7\x34\x88\xbd\xe5\x83\x91\x22\x13\x40\x8b\xec\xc9" + "\xce\x06\x34\xf9\x16\x4a\x64\x02\x25\x92\xa0\x5c\xaf\xe8\x79\x67" + "\x12\x66\x27\xd7\xf1\x9b\x34\x81\x01\xe5\xb7\x50\x65\x4f\x63\x58" + "\x36\xf0\x39\xfc\xf1\x60\xea\x92\x1a\x11\x9e\xb2\x89\x26\x56\xd3" + "\xfe\x64\x10\x38\x40\x2e\x0b\xb6\x2c\x3c\x44\xb6\x48\x20\x5b\x54" + "\x47\xb6\x48\x0e\x3c\x2c\x23\x5b\xda\x30\xbc\x29\xac\xd1\x1a\x6a" + "\x4d\x25\xf2\x14\x40\xf7\xb3\x7c\xed\x23\xe0\x49\x0c\x24\x12\xe6" + "\x76\x3e\x9f\xde\x9e\x52\xcf\x1d\xc6\xe3\xf0\x62\xca\x47\xfe\xfa" + "\x2e\x9b\xc3\x08\x21\x5b\x11\xe7\xd8\x9f\x46\x8c\x8f\xc7\xd0\xb2" + "\xbf\x88\x00\x0d\xbe\x2f\xa2\x94\x67\x7e\xdf\x19\x26\xb3\x39\xb4" + "\x20\xab\x18\x14\x86\x30\x7f\xb2\x09\x73\x27\x9b\x4f\xa3\xdc\x85" + "\x1d\xc6\xeb\xef\x0e\x0a\x9c\x80\x71\x1e\xbc\x0e\xf3\x49\x67\x16" + "\xde\x00\x42\xca\xe7\x28\x66\xfb\x32\x3d\x4d\x16\xf1\xc8\x54\xf7" + "\x04\xe8\x37\x4d\x5c\x1c\xc4\xe1\x55\x74\x19\xe6\x49\xda\x59\x64" + "\x3c\xdd\xbb\x84\x29\x3c\x08\xf3\x50\xd3\x98\x75\x22\xe7\x9b\x9b" + "\x71\xe7\x22\x0d\xe3\x51\xb6\xb9\xb9\x97\xa6\xe1\x6d\x27\xca\xe8" + "\xd7\x55\xe9\x5e\x4f\x3d\x41\x27\xe6\x06\x84\x66\xa3\xcc\x45\xfe" + "\x96\xb3\xe3\x6c\xe5\x9d\x2b\x9e\x66\x90\x5f\x78\x9d\xaf\x49\x14" + "\xbb\xce\x9a\x03\x3b\x4a\xbd\x2f\x16\x55\xcf\x5c\x55\xd5\xfa\xce" + "\xbf\x5c\xb7\xb7\x3e\x9c\xa4\x09\x6c\x4d\x50\x67\x9a\x44\x23\xaf" + "\xe3\xfd\x9a\x85\xe3\x30\x8d\x76\xa2\x0e\x60\x5d\xee\xe2\x28\xad" + "\x35\x7e\x9c\xe3\xbe\xcd\x80\x8e\xe5\x40\x08\xae\xe0\x93\xb5\xdd" + "\xcd\x4d\x37\x07\x02\xe2\xc1\x62\xb7\x92\x38\x26\x75\x05\xb5\x8b" + "\x3b\x97\x3c\x7f\x82\xe0\x83\x9d\x6b\x7f\x1a\x41\x9f\xde\xc2\xcc" + "\xb9\x1e\xd0\xbd\x47\x80\xe8\x8f\xba\xb0\x33\xe1\x1e\x01\xdf\x45" + "\xb8\x79\x8d\xc7\x40\x76\x3e\x44\xa3\x7c\xf2\x18\xea\xda\xcf\xdd" + "\xac\x73\x8d\x6f\xde\x4e\x29\xf3\xee\x0e\xbf\x56\x49\xcf\x39\x72" + "\x4d\xfa\x83\x09\xbd\x9a\x2f\x44\x36\x7c\x22\x7a\x95\x04\xb4\xc5" + "\xf5\x70\x5f\xf0\xc5\x36\x48\x2b\xe4\x2a\xca\x16\xe1\xf4\xbd\x64" + "\x96\xd8\x34\x58\x47\xa0\x6d\x6e\x72\x36\x09\xa0\x56\xa4\x54\x5b" + "\x2e\xcc\x65\xd8\x0b\x65\xc5\xaf\x90\x78\xed\x7a\xde\x4e\xc4\x16" + "\x58\x04\x68\x58\xa5\xc4\x19\x50\x35\x2c\x90\xb2\x79\x20\x47\x02" + "\x85\xcf\x03\xd5\xc9\x9d\x54\xa2\xca\x92\xf2\xfc\x39\x13\xe9\xfe" + "\x39\x11\xc4\x05\x23\x7e\xd0\x9f\x6c\xcd\x99\x60\x12\xfd\xc5\xd6" + "\xb9\x20\x9a\x13\x76\x03\xff\x6f\xfd\x45\x61\x26\xe9\x0f\x6e\x08" + "\x31\x4e\x18\xce\x4c\x09\x6e\x2c\xab\x00\x4d\x61\x2a\xe1\x39\x90" + "\x57\x20\x2c\xd4\x93\x6d\xee\xfd\x23\x78\x44\xb3\x29\x53\x3c\x66" + "\x95\x11\xbd\xdc\xce\x64\x21\xdc\xd6\x24\xd4\xd9\xf2\xc6\x8f\x2d" + "\xf8\x40\x0f\x63\x03\x0c\x26\x86\xc9\xd5\x30\x33\xab\xf3\xb3\x4c" + "\x70\x86\xd8\x7d\x6c\x15\x30\x07\x37\xe0\x63\x60\xa2\x90\x7b\xb1" + "\x5e\x5d\x4f\xb0\x44\x40\x42\x72\x60\xe7\xa0\x43\x9e\xda\xf4\x77" + "\x31\x07\xca\x03\x8b\xc0\x3d\xbd\xe7\x76\x47\x09\xb2\x0b\x19\x2e" + "\xc4\x28\x3b\x05\x7a\x43\xd5\x64\xd6\x67\x19\xcc\xc9\x9c\xb8\x66" + "\xcc\xba\xbb\x83\x19\x4a\xb2\xbc\xb8\x9e\x44\x53\x2c\x58\x28\xa6" + "\xc2\xf4\xf7\xa3\x45\x55\x88\xc7\x80\x1e\xee\x0b\x1a\x34\x22\x22" + "\x04\x69\xa6\xf4\x24\x32\xc5\xfb\x4e\x8e\xe4\xcd\x61\x4e\x3e\xc2" + "\x3f\x13\x67\xd0\x01\x3c\xe4\x37\x27\x63\x17\x99\x48\xef\x71\xb0" + "\x6b\xbe\xcc\x72\xf3\xa5\xeb\x0a\xdc\xad\xb0\x79\x00\xe2\x91\x7c" + "\xf4\x14\x6b\x67\x52\xf4\x53\x8d\x91\x9a\x73\x6b\x0c\xd8\x32\xac" + "\x63\x67\x92\xcf\xa6\x4e\x2f\x86\x3a\x05\xc9\x87\xd1\x4c\x13\x64" + "\x90\x4a\xf0\x71\x89\x09\x83\x8e\x20\x98\x88\x9b\x85\x96\xa9\xab" + "\xa6\xfa\xbd\xd8\x54\xbf\x8e\xab\xfc\xee\x0e\x81\xd6\x51\x1b\x3a" + "\xb6\x36\x8e\x6e\xf8\x08\x9a\x83\x0a\x34\xa2\x08\xe9\xc5\xd4\x33" + "\xb2\xf8\x8b\x9d\x31\x90\xfb\x71\x72\x53\x22\x53\x80\xe6\x3b\x67" + "\x69\x34\x82\xaf\x4a\xe9\x12\x19\xb0\x69\x85\x0b\xd8\x01\x4c\xce" + "\x1a\x7a\xa1\xd8\x6e\xe2\xcd\xc5\xce\x4c\x10\xea\xc2\xd6\x86\xe3" + "\x8d\x04\x99\x8a\x68\xcc\x5e\xf7\x3d\x25\xf4\x05\xc0\x18\x48\x71" + "\xa3\xdb\xd2\x44\x46\x9e\xf7\x8f\xdd\xae\x68\x38\x85\x86\x23\x6a" + "\x38\xed\x00\xef\x13\x67\x50\xe5\x0c\x19\xf9\x38\x89\xb9\x73\x77" + "\x97\x76\x60\xff\xce\xe6\x40\x1b\xa3\x2b\x5e\x4a\x97\x48\x8e\xbd" + "\x9c\xc3\x6f\x0e\x89\x80\x3f\xaa\x0a\x68\xd7\xfa\xd0\x6a\x3e\x85" + "\x55\x3b\x9d\xee\x4f\xc2\xf8\x92\xa3\xc4\xb0\xfd\xe8\xee\x0e\x68" + "\xad\x9d\x2c\x06\x3e\x05\x49\xc7\x91\x79\xe2\xcd\x3c\xe9\x8e\x28" + "\xc8\x44\x5d\x1c\xbe\xc1\x83\xc2\x86\x98\x9e\xaf\xa7\x84\xb1\x08" + "\x34\xc3\x81\xc3\x14\x11\x3a\x74\x61\x3e\x60\x2d\x70\x80\xdc\x47" + "\xf8\x5b\x9a\x05\xe4\x1c\xa3\xa1\xd3\xf5\xa8\x2c\xf7\x14\x71\x82" + "\x4f\x00\x9c\xdc\x60\xe7\xdd\x9d\x7a\x25\xa0\xb7\x57\x05\xdc\x90" + "\x0f\xc8\x4a\x08\x04\x63\x34\x5d\xfc\xcc\x4b\xcb\x11\x05\x71\x25" + "\x86\x1b\x18\xc6\xb8\x10\x7b\xce\x8d\xe3\x3b\xb7\x8e\xf9\xf6\x83" + "\xde\x0a\x65\xff\xc6\x98\x00\xeb\x1d\xd3\x2c\xf4\x1f\x47\xaa\x9c" + "\x40\x3d\xfd\x9d\x1a\x57\xf6\x98\xf7\x38\xd0\x40\xfd\xc5\xa5\xd9" + "\xa5\x97\x48\xff\x77\x25\xfd\xdf\x55\xd4\x7f\x57\xd0\xfe\x5d\x8b" + "\x6c\x1e\x66\xd6\x1a\x2e\xf3\x6a\xc0\x35\x62\x8d\xcc\x5e\x93\x57" + "\x59\x49\xfe\xae\x8b\xfc\x28\x47\xa8\x5c\x64\x1f\x83\x98\x71\xe2" + "\x0b\x69\x45\xcc\xa3\xc0\x30\x27\x16\x08\xf2\x40\xca\x62\x39\x22" + "\x95\x2c\xe1\xf4\x72\xb7\xd6\x23\x0e\x2d\x0e\xf3\x8c\x2d\xe7\xd3" + "\x70\x48\xf4\xc8\x07\x86\x5c\x3d\x03\x73\xe8\xe7\x0c\xc6\xa4\xaa" + "\x5b\x07\x0c\x5c\xcc\x2e\x00\x47\x61\x2a\xa1\xf3\x39\x3b\x02\x6a" + "\x6f\x31\x77\xe7\x86\x38\xd0\x6e\x27\xc4\x0f\xdc\xe7\x90\xaf\x64" + "\xc4\x55\x08\xa9\x03\x38\x06\x5e\xe1\xe2\x81\xab\xe6\x9d\x59\x32" + "\x8a\xc6\x11\xac\x22\x64\xdd\xa4\x6c\x70\x42\x84\x08\x44\xfe\xe0" + "\x93\x6b\x75\xcf\x03\xb6\x00\x50\x07\x98\xdf\x49\xd0\x3f\x62\x6f" + "\x0d\xae\x84\x88\x2b\xc0\x06\x4c\x7a\x8e\xd8\xdb\x00\x69\x68\xb3" + "\x73\x70\xd1\xaf\xbb\xeb\x29\x70\xd4\x89\x24\x43\xf3\x60\x1e\xb9" + "\xb8\x8e\x46\xc8\x17\x01\x18\x81\x25\x80\xbd\x1b\x24\x92\x71\x30" + "\x45\xf4\xbd\x75\x7a\xaf\xfc\x23\xb6\xa7\xdf\x6e\xfc\xb7\x6c\x16" + "\x48\xd8\x75\xb4\xf0\xd3\x5f\x0c\xb6\xea\x89\xd3\xc1\x76\x82\x7f" + "\x54\x8e\x18\x12\x94\x65\x87\x41\x29\xc3\xfe\x84\x9d\x05\xb0\x6e" + "\xa1\x0b\xd7\xc1\x59\x4f\x35\x7b\xd6\x19\x12\xd3\xa6\x58\xa8\x5d" + "\x5f\xa5\x48\x36\x6c\x17\x50\xf2\x24\x98\xed\xfc\xb6\x7d\xb8\xf3" + "\x1b\xbb\x0c\xe6\xfd\xf1\x80\x5d\x05\xd7\xdb\xe7\xd0\xdc\xf6\xbc" + "\xbf\x37\x60\x17\xc1\x35\x64\xe3\xfb\xce\x6f\x5b\x27\xec\x16\xd7" + "\xc1\x25\xbb\x60\x57\x1e\x3b\x0d\xa6\xdd\x0a\xfc\x11\xe3\x80\xab" + "\x04\x44\xc9\xfb\xa7\x83\xe0\x16\x04\xb3\x21\x34\xa7\x66\x24\xb8" + "\xdd\xbe\x00\xf4\xb5\xd9\x86\x46\xe1\xd3\x4c\x7a\x66\x26\x1d\x90" + "\x21\xd3\x9c\x6a\xcf\xe9\x8f\xa0\xbd\x6d\x01\x9c\x6d\x42\x87\x81" + "\xe3\x67\xdd\x48\x31\xed\x0a\x07\x23\xa2\x27\xa8\x7b\x71\x88\xfe" + "\xd7\xe5\xca\xef\x0b\x9e\xde\x9e\x42\xea\x10\xd8\x6f\xa0\xf3\x6c" + "\x1d\x25\xa7\x59\x56\x17\x41\x19\xed\x21\x55\x61\x32\x80\xad\x42" + "\x0a\x44\x17\x99\x16\x88\x30\xa7\x49\x14\x12\x1a\x2d\x90\x84\xce" + "\xb5\x24\x34\x2b\x49\x42\x25\x14\x76\x06\x3a\xeb\x68\x7c\x78\x13" + "\x65\x39\x15\x49\xf9\x15\xb4\x7f\x02\x82\xc4\x78\x0a\xcd\xd8\xe2" + "\xd2\x69\xde\x26\x2f\x3d\x12\xf2\xd2\x65\x14\x10\x79\x92\x9a\x49" + "\x41\xa3\xe4\x8b\x24\x54\xf2\x4d\x88\xf7\xf4\x6c\x35\x70\x18\xd9" + "\x9c\x5e\xdc\xb9\xa1\xe5\x7a\x4b\xba\x90\x11\xbf\x8a\x86\xfc\x0d" + "\xec\xc7\xd3\xb7\x40\xc2\x13\x60\xdb\x15\x8b\x7c\xe3\x03\x7b\xcf" + "\x7f\x8d\x80\xdf\x06\xc4\x03\xc6\x12\xb9\x7d\xf5\x6a\x61\xc4\x59" + "\x5c\xa6\x08\x12\xf2\x99\x7e\x44\x11\x84\x08\x83\x5e\xd7\x24\x4c" + "\xc0\x17\x11\x36\x19\x03\x55\x50\xac\x08\x52\x80\x58\xef\x2c\xb0" + "\xfa\x41\xa2\x99\x2f\xf6\x86\x43\x98\xc0\x54\x14\x9e\x40\x5a\x38" + "\x0a\xe7\xb8\x01\x03\x01\x88\x85\xb8\xa8\x08\xc8\x3c\x40\x96\xf3" + "\x29\xf2\x17\xb0\xc8\x13\x18\xeb\x38\x38\x37\x48\xb8\x0b\x9c\xfe" + "\x1e\x24\xdf\xc2\xea\xde\xb3\x93\xf7\x60\xad\x4a\xfc\x5b\x94\x48" + "\xea\xc2\x05\x40\x8c\x61\xf4\xb3\xc2\xf3\xf5\x63\x77\x1c\x1c\x42" + "\xdd\x33\xf8\x7b\x4b\x52\xce\x19\x54\x5a\xd1\x0d\xc0\x46\x86\xab" + "\xbb\x9e\x7e\x0b\xe9\x27\xc1\x11\x2c\xdf\x57\xb8\x76\xb5\xd2\x71" + "\x22\xa0\x78\x81\x84\x01\x68\xd4\x2d\xe9\x97\x35\x35\x70\x60\xf9" + "\x3a\x16\x31\x20\x42\x77\x01\x63\xf8\x46\xbb\x3b\x3c\x66\xf4\xd9" + "\x47\xf7\xc2\xec\xcd\xeb\x66\x6f\x06\x39\x09\xa9\x8c\xd6\xe9\xc0" + "\x27\xd0\x42\x36\x4c\x93\xe9\xd4\x6a\x41\x24\x88\x16\x80\xd3\xbb" + "\x08\x2e\x60\xea\x82\xe0\x15\xb0\xa0\xf8\x7b\x74\x77\x87\x3f\x6f" + "\xa1\xc5\x14\x7e\x4f\x00\xad\x2e\x83\x1b\x02\xc1\x71\x30\xdf\xdc" + "\xc4\x0e\x5d\x6d\x6e\x5e\x55\xc4\xbb\x5e\x35\x41\xca\x2f\xfe\x45" + "\xff\x76\xd0\x9d\x6d\x07\xc7\xdb\x4a\x46\x63\xb3\x5f\x83\x69\xef" + "\x91\xbf\xfd\xa8\x80\x01\xca\x36\x5d\xd9\x07\xfc\xb9\xb1\xda\x3e" + "\x09\xde\x52\xdb\xfb\x3f\xd5\xb6\x90\x8a\x2e\x80\xe0\x75\xc7\xdb" + "\xc1\xfe\xb6\x14\x15\xd9\x58\xb7\x4c\xeb\xee\x20\xa8\xec\xa6\x5a" + "\x33\x16\x16\x6c\xb2\xb9\x79\x09\x94\xe7\x6b\xb0\x10\x8a\x3a\x58" + "\x64\x1a\x3b\x18\x4e\x89\x8d\x2d\x30\x90\x71\xf0\x95\x10\xe6\x2b" + "\xe0\xde\x54\x4c\xf4\x46\xb7\x8d\x8d\x38\x60\xee\x06\xd2\xe4\x8d" + "\xfe\xe5\x20\xb8\xee\x39\xbb\xb0\xbb\x39\xf0\x76\x32\x80\xcd\x42" + "\xbd\x19\xc6\x36\x70\xaf\x9a\x16\x32\x4a\x8b\x3d\xc1\xbb\x4e\x81" + "\x4c\xbb\xce\xd6\x78\xcb\x99\xdf\xb0\x35\x67\x6b\x86\x0f\x1e\xd4" + "\xa3\x73\x7f\x1f\xd5\xf2\xd9\xda\xae\x07\xed\x78\x4a\x1a\x6b\xec" + "\xa7\xdc\x3b\xa8\x9f\xf4\x15\x75\x2e\x17\x5d\x1d\x9b\x04\xab\xb7" + "\xf8\x6a\x33\x6e\x57\x0f\xd8\x52\xaa\x54\xa0\xb4\xb5\xac\xef\xfa" + "\x82\xdb\xd0\x74\x21\x09\xd2\x52\x76\x0a\x74\x85\x97\x29\xc5\x34" + "\x08\x4b\x45\x42\xa0\x2c\x16\x93\xf4\x09\x76\x0d\x8b\x0f\xd1\xc4" + "\xca\x07\x72\x5d\xca\x91\x6a\xd7\xfa\xd6\x63\x88\x9f\x9f\x97\x38" + "\x03\x56\x19\x8c\x1f\x31\x49\xb2\x1a\x54\xb6\x46\x5c\x2a\xba\xf9" + "\x2a\xde\xc9\x6c\xa3\x4a\x57\x29\xb2\x83\xda\xac\x55\x0a\x30\x20" + "\xe0\xb5\x32\x13\xb6\x94\x14\xd9\x5f\xd9\x2a\x5b\xa5\x6d\x56\xd3" + "\xe1\x27\xcc\x06\xbd\x3f\x05\xb6\xd3\x43\x75\x70\xb9\x62\xda\x81" + "\xeb\xc3\x10\x5b\x76\xfb\x28\x04\x67\xf9\x93\x83\x10\x1f\x35\xa8" + "\xba\x4d\xa7\xd7\x1f\xb5\xf4\xda\x28\x8b\x57\x80\xb8\x56\x88\x2d" + "\x1d\x9b\x01\xd2\x18\xe4\xf8\xb9\xcd\x8f\x4b\xbe\xe4\x85\x56\xd4" + "\x96\xf5\xac\x0d\xfc\x49\xc9\xb0\x06\x6c\xca\x55\xc4\xb0\x21\x52" + "\xd4\xe3\xa2\x7a\x01\x4b\x74\x8e\x5d\xc3\x31\xed\x5a\x7c\xc1\x45" + "\xcb\xba\x53\x86\x19\xa1\xbd\x92\x8b\x10\x16\x5c\x47\xec\x0d\xb0" + "\xd2\xa2\xd2\xca\x89\x60\xb9\x21\x73\x9b\x45\x3f\x38\xaa\xf6\x4a" + "\x99\x09\x2c\xb4\x6f\x75\xc6\x8c\x38\x7a\x6d\xbb\xcc\x65\xd5\xd2" + "\x8e\x6a\x18\x65\x56\xcd\x91\x5f\x2b\xca\x09\xc2\xf3\xa4\xae\x09" + "\x5f\x78\xcb\x05\xd0\x82\xd1\x21\xf2\x5c\xaf\x80\x05\xe3\x31\x4f" + "\x5d\xb9\xb5\x01\x08\x3b\x8b\xf9\x08\x07\xfb\x02\x38\x5b\x8f\x85" + "\x9b\x9b\xd3\x86\xd2\x62\x3c\xe5\xd2\xb6\xd9\x61\x45\xd3\x42\x09" + "\xff\x13\xad\x37\x7e\xd0\xd4\x01\xa5\xc7\xcf\x63\x85\x1e\xdc\xfe" + "\xe8\x1e\x55\xbe\xd5\xfb\x42\xb1\xb2\x17\x15\x6c\xd9\x03\x66\x53" + "\xb0\x91\xd2\x36\x2e\xd9\x4d\x61\x1f\x57\xec\x26\x49\xf0\xc4\x93" + "\x4a\x29\xde\x42\xab\x84\x97\xf8\xd9\x94\x13\x76\xbb\x3b\x58\xc3" + "\x1d\xd5\x76\x27\x3e\xba\x83\x0a\x76\x2e\x59\x83\xf6\x7d\x2f\xea" + "\xe7\x03\x29\x02\x9f\x41\x87\xc8\xf6\xee\x0b\xbb\x3b\xfc\xf1\xa5" + "\x31\xde\x6a\xf4\x36\x6e\x6e\x94\x0a\xde\xc1\x37\xcd\x0d\x9d\xc9" + "\x86\x74\x3d\x3c\x2e\x5b\x50\x19\xaa\x46\xe7\xe1\x25\xff\x28\xc8" + "\x00\xcb\xe4\xfb\x27\xf1\xae\x98\x65\x31\xbb\xa4\xa1\x86\x75\x43" + "\x2f\xa8\x8c\xb6\x15\xae\xb1\xdd\xc5\x63\xe0\xa5\x91\xef\xf7\x84" + "\xa2\x9b\x9a\xed\x98\x4a\xcc\x57\xb7\x25\xe6\x9d\xba\x94\x05\xf4" + "\x29\x2c\x49\x5e\xd5\xa2\xa7\xb0\x10\x2d\x1e\x91\x16\xa6\xcd\x44" + "\xc2\xf2\xdc\x85\x05\x49\x6a\xdb\x08\x3a\x13\x44\x92\xf5\x49\x50" + "\xcd\x26\x54\xd4\xd8\xd2\x24\x40\x65\x7c\xd7\x05\x91\x73\x1d\x38" + "\x9d\xdc\x52\xda\x01\x69\x0e\xa1\xb0\xa5\x72\x9e\xea\x57\x18\xb2" + "\x62\x16\xa4\x86\x3d\x55\xaa\xe7\x84\xdd\xf8\xe1\x16\xc1\x00\x78" + "\xa2\xa9\x05\x97\xeb\x92\x46\x41\x0c\x0d\xb6\xfc\x58\x0c\xd1\xad" + "\x19\xd9\x3d\x61\xb4\xef\x09\x1a\x03\xd4\x13\x95\x52\x30\xf2\x31" + "\xb0\xbf\x1d\x8b\x7d\x85\x85\x63\x83\x22\xea\x45\x76\x2e\x08\xd2" + "\x98\x62\x95\xf0\x77\x3d\x00\x83\x55\x8b\x04\x19\x2f\x43\xd0\xd4" + "\x23\x12\x4a\x15\xa9\x24\x34\x02\x6e\x67\xd6\x84\xca\x91\x4f\x4d" + "\x2a\xc0\x4a\x51\xb1\x8f\x2e\x88\x54\xdc\xeb\x8c\x22\x64\x13\xa4" + "\x4a\x2d\xcd\xa7\xc8\xa3\x87\x5b\xa2\x4b\xd5\xa1\x94\x3b\xbe\x0d" + "\x04\xb5\x11\xe2\x15\x58\x67\x16\x7a\x7f\x54\xe8\x9d\x48\xa9\x94" + "\x70\x5b\xbd\x7c\x24\xf1\x50\xbd\x7d\x92\x5d\xdd\x41\xd9\xf2\x4e" + "\x0c\xe0\x0e\x33\xa7\xe1\xed\xdd\x24\x1a\x8d\x78\xbc\x23\x14\xc1" + "\x7c\x2b\xda\xca\x6c\xa5\x74\x66\x6b\xfe\x6c\xdd\x2d\x73\xfe\xa6" + "\x34\xe5\x0d\x0a\xf9\xaa\xce\x9d\x66\xd9\x17\xb6\x2b\x1a\x45\x2f" + "\xf6\xa1\x6e\x52\x18\x5b\xcd\x3d\xc9\xad\xe5\xd2\xad\xd8\xce\xfa" + "\x03\x65\x28\xa3\x5e\x49\x26\xd2\x75\xf9\x3d\x28\xc6\xa9\x71\x0f" + "\x70\xec\x9b\x9b\x21\x92\x44\xbd\x7e\xaa\x37\xaf\xb4\xb2\x08\xef" + "\xee\xfa\x03\x96\xa1\xb9\xb9\x07\xa2\xff\xc0\xf3\x51\xa8\xcd\x55" + "\xe9\x44\xef\x5d\x51\x2f\xf4\x43\x95\x0c\xfd\x9e\xa3\x23\x80\x3d" + "\x96\xaf\x7c\x95\xaa\x31\x66\x82\x4e\xa3\x3c\x8f\x94\x18\x25\x7a" + "\x41\xab\x21\x65\x2b\x96\xeb\x5a\x12\x6c\xc8\x84\x24\x81\x18\x36" + "\xb9\x3b\x29\x51\x17\x32\x3a\x02\xdb\x63\x2f\x77\xad\x14\x46\x73" + "\x5b\x40\x7f\xa1\x26\x81\x7d\x68\x61\xe2\x44\xc0\x02\xf1\xa3\x73" + "\x88\x2e\x20\xd8\xb0\xf5\xca\x57\x7a\x59\x51\x6f\xab\x5f\xaa\xa5" + "\x4b\xdd\x0f\xaa\xa9\x62\x04\x41\xad\xaa\x1b\x59\x0d\x3c\xde\x8a" + "\xe6\x18\xb7\x28\x4c\x5c\xd1\x20\xe3\x00\x7f\xf0\x1e\x00\x98\xc8" + "\x2b\x0a\x6b\xe7\xc0\x85\x78\x3d\x80\x07\x96\xf3\x21\x07\xc8\x92" + "\xa0\xd0\x16\xb8\xf6\x2d\x8e\x49\xcc\x58\x4c\xd6\x90\xbe\xc5\x3f" + "\x4a\xc0\x19\x8c\x2e\xd9\x60\x48\x6d\x09\xd4\x4d\x58\x49\x7a\xa4" + "\xba\xf7\x63\x05\x64\xe8\x04\x79\x14\x08\x73\x80\xe1\x2a\x22\xdd" + "\x73\x28\x81\x2a\xad\x59\xe6\x46\x2c\x83\x07\x34\x7b\xac\x2b\xc5" + "\x7c\xe1\x01\xbe\x59\x36\x64\xa9\x10\x67\xc6\xf1\x01\x27\xb6\xea" + "\xb4\xd6\xa3\x51\xf9\x16\x37\x86\x98\x6e\x5e\x23\xd6\xe7\x03\xc4" + "\xfa\xb4\xbf\x3b\x00\x54\x4e\x9b\x9d\x1b\xb0\x85\x45\x40\xa0\x9e" + "\x40\x8b\x6a\x48\x53\xc2\x1b\x20\x61\x0b\x9a\x15\x7a\x05\x3a\x28" + "\x27\x7f\xca\x21\x9d\x1e\x55\x12\xe6\x49\xb4\xa1\x4c\xf1\xac\x13" + "\x31\x9b\x10\x8e\x6a\xa4\x29\x17\x09\x1e\xba\x53\x50\xeb\x09\xb4" + "\xae\x9b\x0f\x25\x22\x85\xa2\xf6\xed\x50\x7c\x13\x2a\x4c\x0a\x65" + "\xbd\x90\x81\xdd\x0b\x01\x93\x74\x91\xdb\x40\x26\x5a\xba\xae\xcc" + "\x66\x99\x0d\x9b\x8a\x14\x44\x69\x3d\xb3\x92\xa6\x0b\x68\x4c\xef" + "\x13\xcc\x2a\xd9\xec\x70\x7f\xee\x9d\xe6\xfa\x35\x01\xba\x70\xb3" + "\x25\x15\x12\x3b\xbf\x6d\x73\xf5\x44\x14\xe3\x76\x4b\xa9\x49\x28" + "\x4b\x3d\xb2\x69\x37\xbb\x8e\x72\xe0\x3a\x01\x2d\x86\xc0\xe2\xad" + "\xbd\xf2\xa7\xc1\xf2\x06\x08\xfe\x2d\xec\x86\xb7\xba\x68\xd1\xbd" + "\x48\x79\xf8\xad\x4b\x65\x6e\x4a\x65\x74\xcd\xa5\x32\x6f\x45\x19" + "\xab\x4f\x50\x3a\x2c\x15\x39\xd2\x45\x54\x67\xed\x22\xd2\xe5\x4d" + "\x97\x11\x8d\x09\x6d\xca\x04\xa8\xe6\x67\x34\xea\xd1\xd0\x49\xdf" + "\x25\x64\x3d\x85\x3a\x13\xa9\x04\xaf\x29\xf4\xe5\x68\x53\x39\xda" + "\x39\xd4\x8f\x1e\x34\xf8\x67\xdb\xcd\x49\xd1\xbd\xcd\xe9\xc7\xb3" + "\xbb\x7a\x62\x95\xdb\x6a\x2c\x57\x28\xc5\x86\x65\x4c\x3b\x90\x1b" + "\x48\x65\xeb\x40\x47\x1d\x69\x29\x27\x7d\x44\x69\x82\x8d\xc0\x63" + "\xcd\xbc\x54\x49\x68\x61\xb8\xa4\x92\x88\x75\xba\x54\x4d\x5c\xa0" + "\xa4\x19\xa6\xb7\x65\xb5\x44\x96\x91\x5a\x02\x35\x17\x89\xf0\xeb" + "\xc0\x22\x02\x54\xb2\xc8\x0f\xee\x4f\xd8\xdc\x28\xdd\xf7\x93\x38" + "\xe7\x37\x39\x3b\x0f\xe6\xa6\xd0\x5e\xee\xcf\xd9\x18\x15\x24\x53" + "\x53\xcd\x5e\x30\xb6\x24\xb5\x47\xfe\x98\x2c\x1e\xca\x48\x72\x18" + "\xcc\x6c\xfd\xe8\x8c\x9d\x05\xc6\x4c\x74\x68\x99\x89\x0e\xd1\x4c" + "\x74\x48\x66\x22\x76\x4d\xba\xd6\xbd\xbc\x17\x65\xfe\x5e\xce\x4e" + "\x68\x8d\xd8\x8a\x0f\xb3\x4c\xb2\xfe\x5e\xef\xda\x3f\x47\xeb\x05" + "\xd0\x29\x20\x6b\x97\x5e\xef\xd2\xbf\x24\xfb\x2b\xf4\x5f\xda\xce" + "\x85\x8d\xbb\x2e\x3c\x4e\xd9\x82\x25\xa8\x9d\x3c\x2e\x65\xeb\x05" + "\x89\xda\x53\x58\xab\x4b\xe3\xb6\x76\xc1\x64\x29\xff\x84\x69\xd8" + "\x5b\x64\xdb\xcc\x5b\x54\xa0\xa5\x04\x76\x80\xda\x96\x7b\xc2\x6e" + "\x61\x90\xc7\x6a\x90\xa7\x50\xe9\xbe\x50\xcd\x5f\x21\xa1\xd8\x3e" + "\xa6\x7d\xee\x8c\x88\x86\xdc\x78\x8f\x15\x7d\xb9\x92\x0f\x90\xad" + "\x48\x1a\xee\xde\x57\x44\x6c\xe0\x4b\xda\x04\xcf\x04\xe9\x11\xdb" + "\xf8\xb1\x24\x59\x57\xe2\x17\x32\xe9\xb7\x60\x07\x00\xc5\xb2\x36" + "\x43\x70\xdf\xb8\xa6\x44\xd7\x36\x37\x0f\xc4\xaa\xfa\x1a\x1c\xf4" + "\xa3\x41\xc9\x6f\x72\xbf\xc1\x75\x6c\x43\x94\x4e\x80\x45\x7a\xcb" + "\x6e\xcc\xd6\xb5\x41\x9c\x18\x6a\x44\x59\x28\xfc\xa1\xab\x79\xb0" + "\x60\x7d\xe7\xc6\xe9\xee\xf7\x37\x06\x5b\xc1\xd7\x7e\x98\x0f\x7e" + "\x4d\x90\xc5\x90\x2b\x6b\xdf\xac\xac\xd3\xe8\xa7\x57\x96\xb5\x2e" + "\xd2\xea\x2a\x48\x2c\x64\xc5\x15\x34\x86\x6d\xed\xbd\xd2\xd2\xa1" + "\x7a\x0f\xb1\x1d\x58\x57\x3e\xda\x03\x9e\xf5\x8d\xaa\x35\x83\xf5" + "\x34\x35\x98\xfd\x8c\xfb\x80\x4b\x01\xd1\x64\x58\x46\x8b\x5e\xd8" + "\xfb\xc0\xfd\x0f\xbc\xb6\x05\xef\xe9\x2d\x18\xca\xee\xa1\x31\x7c" + "\x01\xdb\xed\x11\x2d\xb4\x15\x85\x27\x1a\x5e\x7b\xe4\x66\xe2\x75" + "\xcf\x61\x8e\xe3\xcb\x1c\x97\x30\x02\x00\x3e\x17\xe3\x1f\x07\xe7" + "\xb5\x8d\x75\x8f\xcd\x8c\x4c\xdc\x9f\x0d\x02\xa2\x4e\x96\x96\x72" + "\xc6\x14\x80\xfc\x88\xd9\xe0\x01\xb2\x22\x81\xe3\x27\x85\xd7\xff" + "\xe4\xce\xbc\x01\xdb\x13\x0e\x87\x65\x8e\x92\x90\x62\x0c\xc2\x27" + "\xb0\xae\xcd\x2d\x8f\xfb\x7b\x83\xed\x31\x34\x6f\x73\x8e\x07\x91" + "\x74\x0a\xfe\x24\xfc\x58\xc6\x5c\x3a\x2d\xf4\x07\xd2\x11\x98\xf4" + "\x00\xb2\xb1\x3e\xc9\xe7\xc0\x8c\xdc\xa2\xf4\x6d\xf1\x28\x1b\xf7" + "\xea\x7e\x85\x61\x99\xac\xba\x79\xcd\x76\xd9\x39\xcf\xbe\x45\x73" + "\xe3\xfc\x80\x28\x83\xf6\xba\xbd\x9b\x28\x6b\xd4\x53\x11\x09\xa4" + "\xdc\x26\x45\x15\x4c\x3b\xe0\xcc\x45\x38\xfc\x56\xc2\x17\x83\x68" + "\x0b\x1b\x25\xe7\x55\x94\x3c\xaf\x50\xd8\x71\x1d\x2d\xcb\x44\x77" + "\x57\x12\xdd\x66\x44\x3d\x0c\x8c\x4e\xd5\xac\x8a\xb3\xe0\x93\x7b" + "\x48\x66\x63\xa8\xe8\x10\x68\xec\xf4\xee\xce\xbd\x06\x39\x7d\xaf" + "\xd7\x07\x90\x1f\x7a\x03\x1f\xe6\xe6\x10\x08\xd5\x65\xd0\x3f\xd4" + "\x5c\xdc\x49\xfd\x60\xc0\x61\xce\x3e\xeb\x49\x3e\xd4\x12\xca\x27" + "\xf7\xb3\x98\xd0\xde\x29\x72\xc3\x16\xb6\x7d\x36\xd8\xb6\x28\x63" + "\xdb\x5c\x63\xdb\x84\x95\x47\xec\xef\xb1\xc6\xd1\x91\x3d\xed\xb3" + "\x3c\x71\x70\x15\xe4\x55\x13\x39\xd0\xf6\x8a\xd6\xfc\x36\x88\xf9" + "\xf5\xda\xeb\x70\x0e\xd4\x79\x7d\x17\xc8\xf0\x25\xf2\xa3\xfb\xc1" + "\x6e\x77\xff\x1f\x97\x72\x51\x75\xf7\xb7\xb6\x04\x3a\x1d\x40\xf6" + "\xfe\x80\x7d\x05\x68\x1d\x78\x6c\x03\x57\xf8\x01\x0e\x6b\x9e\xb3" + "\xa4\x4a\xca\xbe\x12\x57\x0e\x14\x2e\xc9\x7b\x92\xe9\xf0\x15\x17" + "\xc2\x5e\xe3\xa2\x2b\x81\xe1\x60\x05\x18\xac\xe9\xf7\xcf\x0d\x50" + "\x60\x4b\x79\x8a\xb5\x6f\xf4\xde\xfa\x47\xfe\x46\xef\xc6\x7f\xd5" + "\xbd\x42\x62\xf9\xf8\x02\xff\x02\x1d\x78\x8a\xeb\xe5\xa9\x27\x68" + "\xc1\xb3\x5c\xbc\xb1\x21\x0a\xad\xe4\xc6\xb4\xb9\x09\x6b\x75\xbe" + "\xc8\x26\xee\xeb\xfe\xd7\xc1\x3f\x82\x5d\x52\x1d\x9a\xb4\xa7\x98" + "\xc6\x5e\xf7\x9f\xe5\x22\x13\x72\x38\xc8\xe7\xb7\xf6\x74\x5b\x93" + "\x5d\x78\xde\xf2\x38\x38\x40\x50\x3e\x92\xcc\xd0\x2d\xba\xa0\xbb" + "\x07\xf0\xa5\x87\x96\xb7\x53\x4f\x2d\xaa\xef\x79\xb0\xd7\xfb\xdd" + "\x7f\xc4\xf6\xb8\xf1\x46\xf9\x2c\xc0\xfc\x2d\x0f\x2e\x81\xfc\xc5" + "\x23\xd3\xce\x1f\x52\x9e\x9c\xe6\xc1\x2d\x3a\xe9\x61\x02\x0e\x61" + "\x9a\x2b\xb7\xa6\x69\xde\xc9\xa6\x11\xa0\xe2\x2e\x20\x60\xb5\x9b" + "\x67\x46\x4c\x3b\xe3\x40\x71\xe8\xdb\x6f\xfa\xdb\xe3\xe0\x5b\xce" + "\x1c\xea\xb1\x53\xb0\xb7\x79\xf0\x3d\xef\xbe\xcd\x1f\xef\xc2\x9f" + "\xed\x6d\xd1\xf0\x47\xe8\x2f\x77\xdf\x8a\x56\x3f\x92\xcc\x23\xca" + "\x7b\x62\xa0\x96\xbe\x1d\x44\xa7\x63\xb2\x35\x34\x13\x16\xc4\x33" + "\xab\x74\x70\xcc\x10\x27\xd1\x2f\x62\x7d\x57\xeb\x62\x6f\xb5\x0b" + "\x01\x62\xfe\x4a\x0f\x82\x8d\xa8\xc9\x39\x40\xec\xde\xce\x40\x2a" + "\x62\xa9\x65\x7f\xfd\x51\x61\xa9\x37\x4f\xaa\x12\x6c\xc5\x05\x18" + "\xd8\x6d\xb4\xd0\xc3\xfe\xc2\x96\x42\x19\x80\xfc\x88\x76\x1c\xe5" + "\x96\x6e\x40\x30\x15\x92\xbf\xdf\x02\xd1\xd9\xe8\x08\x24\xab\xa2" + "\x3e\xdb\xc2\xcf\xa4\x8e\x81\xb8\x14\xed\xac\xda\xb9\xb1\x74\x4a" + "\xfb\x96\x5e\x13\xd6\x15\x30\x10\xec\x68\x00\xdb\xc9\x8c\x37\x39" + "\x56\xc7\x7d\x40\x7a\xdc\x08\x4d\x05\xaf\x5a\xf6\x00\x72\x28\xca" + "\x1a\x48\x43\x54\x25\x0d\xe8\xc2\x5f\x31\x52\x95\x1d\x2e\x80\xf2" + "\x8b\x55\x5c\xe6\x92\x7d\xeb\x48\x16\xea\xe2\x65\x21\x7b\x11\xaf" + "\x23\x4c\xa7\x01\x4c\x00\xca\x95\xb0\x19\xc0\x53\xc8\x60\x1e\x3d" + "\xd8\x0c\xf6\xd1\xeb\x1e\xf6\x01\xf8\x9d\x78\x55\xf3\x1c\x48\xcd" + "\x81\x61\x40\xf7\xa5\xd4\xad\xad\x49\xd2\x3e\x78\x98\x0d\xc3\x39" + "\x57\xa9\x13\x16\x65\x6f\xd5\x27\xcf\x49\xaf\x06\x34\x06\xb0\xe8" + "\x8d\x55\x78\xe4\xcf\x8b\x7f\x97\x19\x4a\xf7\x6f\x5b\x68\xf1\x1c" + "\x68\xae\x54\x80\x8b\x26\x1d\x68\x53\xd9\xa6\xae\x35\xc2\xc3\x37" + "\xbc\x1d\xe1\x1f\xe2\x07\x83\xab\xe2\x55\x64\x61\xfa\x51\xc5\x8b" + "\xef\x93\x50\xd4\xf5\x8f\xd8\x2b\x43\xb0\x33\xe2\x3d\xb7\x1f\xf9" + "\xe8\x96\x2e\x65\x12\x5e\x72\xdb\x68\xe0\xde\x4b\x34\x3c\x46\xcf" + "\x37\x6e\x29\x35\xfa\x8f\x06\x8a\x31\x4a\x82\x04\x1d\x5e\xc2\xc0" + "\x0d\xe1\xd7\xfb\x35\x62\x65\xdf\x33\xd1\xfa\x52\x68\x57\x93\xc2" + "\x97\x62\x75\x68\xad\x89\x37\x0f\x64\x6b\x88\xc7\x15\xeb\xbf\xcc" + "\xae\xf4\x77\xd9\xee\x80\x38\x96\x67\xbc\xb6\x71\x2f\xd8\x5c\xaf" + "\xa7\x45\x7f\x3e\x08\x00\x68\x73\x26\xd7\x04\x61\x26\x31\x7a\xc8" + "\xe2\xf4\x2d\xf2\x35\x40\xe1\x12\xd6\x3b\x6a\x43\x6e\x1f\x6c\x4c" + "\x5e\x51\xaa\x73\xb3\x15\x4c\xd9\xea\x22\xb7\x5b\xc1\xa4\x66\xea" + "\x45\xaf\xb3\x44\x62\xd3\x89\xc6\x26\x49\x07\xef\xc5\xa7\x06\x97" + "\x2b\xc0\xa2\x37\x36\x16\xbd\x5e\x41\x52\x9a\xd6\x69\x59\x56\xac" + "\x53\x1c\x25\x3b\x56\xe8\xce\x6a\x41\xb2\xc9\xae\x9b\x6a\xc3\x5d" + "\x79\x08\x0d\x83\x16\x47\x2e\x61\x64\xaf\x2d\x13\x9d\x1e\xe1\x4d" + "\x64\x1b\xbc\x70\x8f\xbb\x71\x94\x34\x66\xf0\xf0\xed\xcf\xe0\xe1" + "\x9f\x62\x9c\x1f\x49\xc6\x59\x73\xc5\x0d\xea\x8a\x32\x57\x3c\xb7" + "\xf8\x69\xe4\x98\x73\x9e\x4f\x00\x96\x25\x3f\xad\x75\xe1\xa8\xa5" + "\x32\xa5\xed\xad\xc1\x67\x4b\x10\x6c\xcd\x8f\x4d\xcb\xfc\xd8\x44" + "\x73\x60\x65\xce\x0c\x44\x37\xe2\xa3\x4b\x8e\x1c\xd7\x41\xd5\xb5" + "\xe3\x24\x58\xbf\x06\x2e\xfa\x33\x77\xcf\x90\x47\x05\x90\x5f\x7a" + "\xc4\x97\xae\x72\x88\xb8\x6d\xd8\xb0\x4e\xab\x1b\xd6\xb1\xa2\x5a" + "\xb3\x12\xd5\x9a\x35\x50\xad\xba\xff\x6e\x5e\xf6\xdf\x9d\x01\x0f" + "\x2c\x6b\x3b\x0e\x8c\x5e\x66\xa9\xa6\xd3\x3f\x66\x72\xea\xfc\xe3" + "\xc2\xaf\x34\xa0\x0b\xed\xea\x42\xbb\x05\x3b\xf6\xd8\x41\x6d\x98" + "\x62\x79\xf6\x9a\x93\x4b\x74\x46\x28\x37\xbf\x1a\xae\x84\x5c\xd5" + "\x48\x5a\x4c\xa5\xeb\x13\x32\xe1\x97\x96\xeb\x6d\x68\x5e\xd1\xf7" + "\xf6\xb5\x7e\xab\x6a\x03\x81\x8f\xbe\xe8\x5f\x0e\x18\xb0\xc8\x4f" + "\xb7\x0e\xfb\x09\x50\x35\x60\x92\x9f\x6e\x1f\x22\x1f\xcd\x80\x55" + "\x1d\xf7\xb6\x4f\xfb\xaf\x07\x3b\xbf\x41\xdb\xc0\xb0\x5e\x13\xcf" + "\xdf\xbb\x85\x24\x1f\xd3\x91\x65\x94\x69\x54\xce\xdf\xc6\x2c\x06" + "\x6c\x62\xd5\x4b\x94\x1d\x42\x65\x9b\x9b\x1f\xf3\xde\x1f\x1c\xd8" + "\x48\xcf\x97\x06\xb6\x5d\x65\x60\x03\x40\x7d\xae\x42\xa9\x2f\xfc" + "\x48\xff\x86\xa7\x04\xc8\x28\x0f\x7c\x5d\xef\x01\x65\xd4\x8a\xf0" + "\xc9\x83\x1c\xb8\xea\xcf\x34\xb4\x3f\xf0\x01\x07\x06\xcc\xf4\x87" + "\x1c\xf8\x65\xea\xec\x61\x0e\x7f\x01\x83\x79\x70\x42\x03\xdb\xf9" + "\x6d\xfb\x7b\xbe\x3d\xcd\xb7\xbf\xe5\xdb\xfb\x7a\x19\xfb\x7b\xbc" + "\x96\xc6\xb2\x08\xbe\xd9\x16\x1f\x6d\x7d\xcf\xb7\xa6\xf9\xd6\x1f" + "\xf9\x96\xf5\xd1\xdb\x7a\x1a\xbb\xe5\x41\xfd\xbc\xe6\xd3\xbc\xe6" + "\x57\x0b\x1b\x75\x14\xdc\xf2\x9e\x9a\xbb\x5b\x6e\x0c\x45\xe8\xbb" + "\xac\xdf\xd1\x3c\x24\x9c\x99\x47\x71\xe0\x6e\x04\x07\xbd\x0e\xcc" + "\xa9\x27\x76\x9d\xde\x06\x39\xe2\xc3\xf4\x9e\xf1\xed\x51\xbc\x1d" + "\x01\xf9\xc1\xb7\x2c\x82\x37\xa0\x87\x08\x88\x71\x6f\xca\xdd\x67" + "\xa8\x29\xf3\x7c\xf8\x79\xca\xc6\xbd\x71\xee\x0e\x41\xb6\x83\x04" + "\x10\x60\xba\x88\x23\xc1\x38\x66\x5f\xc5\xef\xf6\x53\x14\x69\x42" + "\xe9\x0e\x1e\xb3\x30\x12\x08\x76\x23\xb0\x6f\x68\x5e\x11\xfb\x16" + "\x39\xe0\xd8\xd5\x80\x7d\xce\x83\xab\x36\x34\x3c\x8f\x83\x45\x0e" + "\x08\x18\x46\x03\x36\xc3\x67\xc0\xc0\x21\x3c\x5f\x73\x14\x2e\x8f" + "\x0c\xb7\x70\x26\x8e\x83\xb0\x4b\x18\xe9\x3c\xa6\xa1\x5e\xe9\xa1" + "\xce\x63\x18\xeb\x61\x1c\x5c\xf3\xde\x39\x70\x7a\x39\xcc\xcc\xe7" + "\x7c\x00\x88\x89\x7f\x2f\x63\x98\x04\x45\x75\xaf\xa8\x10\x34\x49" + "\x25\xb6\x54\x89\x6d\x5d\xc2\x9f\xc5\xec\x22\x46\x8c\x85\x72\xe3" + "\xc8\x3d\x8c\x61\x1c\xf0\x99\xe7\x13\xbc\x0e\x63\xff\x9c\x52\xc6" + "\xbd\xab\x18\xca\x22\x88\xae\x06\xc1\x05\x82\x88\x7e\xb7\x17\x79" + "\xd1\xb0\x4d\x7f\x55\x62\xce\xbe\xde\xa7\xab\x4c\xdc\x2a\x89\xe7" + "\xed\x4a\x89\xc7\xda\xcf\xbe\x59\xfb\x99\xed\x4d\x11\x5b\x46\x74" + "\xcb\xb1\x22\x36\x56\x74\x8b\xed\x7a\x5f\xdd\x14\xbf\xd1\x41\x14" + "\x3a\x0c\xd5\x23\x8f\x02\x9f\xda\x31\x5f\x3c\x2f\x6d\x90\x6d\xa7" + "\x27\x79\xb0\x9f\xab\xa3\x7a\x0d\x47\x23\x33\x91\xdd\x7a\x10\x52" + "\xdb\x50\x01\x13\x1e\xdd\xdd\x65\xf8\x63\x9d\x6f\xd1\x1c\x6f\xeb" + "\xb9\xce\xf7\x68\x93\x8b\xe8\x67\x73\x13\xba\x4c\x16\xba\x8c\x2c" + "\x75\x89\xb0\xda\x46\x78\xaa\x21\x0c\x6c\xc8\xed\x5a\xe0\x02\x52" + "\x35\xb5\xc8\xb1\x3c\xdd\x96\x01\x68\xb2\xcd\xcd\x75\xf2\x1f\x76" + "\x7f\x40\x75\xda\x94\x08\xbd\x8c\x81\x58\x0b\x6f\x8f\xf7\xd8\xa2" + "\xc7\xb0\xf9\x9e\x3b\xc5\x06\x73\x06\x02\x30\x9b\x22\x03\x98\xdb" + "\x26\xdf\x29\xf2\x7b\xb9\x59\xf5\x9e\x9f\x42\x0d\x50\x2e\x88\xa9" + "\x3a\x3a\xaf\x98\x08\x65\x77\x68\xcd\xec\xf6\x94\x8c\x45\x09\x29" + "\xd0\x43\x33\xb7\x90\x7e\x2b\x0f\x31\x26\xd2\xdc\xa4\xbc\x1b\x94" + "\x01\xcb\xb2\xfd\xdb\x73\x29\x55\x45\x9c\x9e\x4e\xc9\x71\xa7\x3f" + "\xe8\xc6\x75\xdd\x37\xec\x48\x39\x69\x3e\x52\xc1\x09\xa5\xa8\x72" + "\xd0\x75\x46\x98\x8f\x8e\xa5\x23\x99\xaf\x0e\xb5\xf6\x2d\xfb\xbf" + "\xc2\x70\xb2\xfc\x9b\x57\x85\xf0\x98\xec\x75\x93\x7a\xd3\x21\x6d" + "\x89\xeb\x1c\x3d\xc4\xe1\x45\xaa\x4d\xc4\x59\x4c\x78\xef\x02\x03" + "\x1e\xe1\x09\x6e\xe0\x56\x32\xa1\xe7\x49\xb5\x62\xbd\x79\x24\xa2" + "\x2a\xd9\xd3\xbb\x3b\xec\x3d\x7e\x6c\xf9\x14\xd8\x16\xec\xc8\x28" + "\x68\xd7\xe6\xd9\xea\xa3\x49\xc6\x55\xaf\xdd\x38\x1d\x75\x68\xf9" + "\x03\x16\x67\x78\xea\x1c\x55\x7b\xd6\x29\x35\xd3\xb2\x6a\xd3\xf6" + "\xa6\x93\x86\xf9\xbb\x3b\x57\x4c\xde\x9b\x34\x99\x45\x19\x2f\x85" + "\x74\x90\x69\xa8\x82\x49\xa6\x57\xdc\xf5\x3a\xc0\x1c\xc6\xae\x55" + "\x4d\x2e\xd7\x0f\xe3\x6e\xec\xd2\xc1\x77\xf4\xd8\xb4\x70\xe4\x65" + "\x54\x36\xe0\x36\x8c\x58\xea\x91\xfb\x19\x41\x51\x4b\x85\x3a\x21" + "\x88\x7a\x35\x2e\x2d\x62\xc0\xa1\x49\xa6\xda\xaf\xe7\x1a\x7e\x5b" + "\x3d\x79\x82\xa5\x6f\x28\x8a\xe9\x50\x0e\x7f\xa0\xf7\x7e\x26\x8f" + "\x83\x35\x69\xed\x73\xaf\x7c\x7c\xdd\x72\x70\x00\xa1\x46\xfa\xcf" + "\x1d\xc7\xb6\x5b\xb3\x0e\x7e\xa3\x09\xbd\x8f\xde\x2a\x75\x39\xc6" + "\x3e\xa0\x82\x90\x55\xca\xc0\x38\x08\xd3\xcb\x85\xd8\xf4\x85\xce" + "\x95\x89\x09\x93\x27\xec\x91\x58\xee\x76\xf9\x3f\xe2\x2e\xdf\xda" + "\xf2\xb0\x1f\xe6\x83\xbe\x86\xe6\x7a\x5e\x51\x10\x69\x4c\x5b\xc7" + "\x63\xc3\x92\x9d\xcd\x9a\x09\xb2\xcd\x32\x97\x02\x63\x9c\x93\xc3" + "\x4c\x6c\x53\xd1\x58\xdb\x97\x72\x3c\x59\x17\xe8\xb0\x2c\xaf\xd5" + "\xf8\xd1\xe8\x64\xc9\xdd\x03\x9f\xcb\x83\x31\x54\xec\x44\x9f\x65" + "\xb3\x44\xa2\xe3\xd8\x8f\x6a\x38\x1c\x32\x72\x83\x98\xd8\xad\x4f" + "\x82\x54\x34\xbe\x68\x9c\x83\x24\x1d\x81\x80\x30\x7a\x6d\x4f\x45" + "\x2b\x12\x1d\xc7\x28\xd9\x97\xf6\x67\x1f\xdd\x38\x25\x07\xe6\x5b" + "\xf2\x6b\xa8\x9c\xd2\xa7\x05\x33\x0a\x20\x2c\x2d\x5c\xa6\x51\x92" + "\x04\x31\x0c\x5a\x3b\x87\x4d\x06\x24\xaf\x25\x49\x86\xfe\x82\x01" + "\x1d\x94\x23\x36\xce\xa2\x67\x62\x49\x5c\x2b\x21\xe3\xac\x24\xb2" + "\x9c\xb9\x0b\x8d\xd3\xfe\x59\x77\x06\xbb\xa5\x4e\xa8\x2b\xa4\x52" + "\x93\xc9\xae\xb1\x64\xc9\xbb\xd7\x52\x97\xa1\x3f\x4e\xe8\xf5\x9e" + "\xe0\x5f\xe1\x25\x65\x59\x85\x29\xb9\x92\x86\x0e\x2c\x6a\xd8\x90" + "\x0d\x54\x93\x00\x7f\x12\x00\xc5\x83\x45\x6f\xc8\x75\x66\xba\x60" + "\xb8\x1d\xcf\x78\x8c\x40\x6e\x65\x5a\x82\x93\x1a\xcd\xbb\xd4\x2b" + "\xed\xb2\x23\xb9\x1f\xa0\xb3\x7b\x30\xf8\xb1\xf4\xd6\x75\x81\xfe" + "\xc1\x9a\x19\xf2\x77\xf4\x6a\xfb\xde\x22\xcd\x3f\x17\x40\x3d\x0b" + "\x16\x9a\x87\x46\x93\x8e\x25\x33\x9e\xc0\x9b\x18\x0f\x4a\x4f\xb0" + "\x06\xaf\xd9\x89\x27\xbc\x8b\x87\x65\x50\x01\x03\x71\xcd\x9e\xa2" + "\x89\xc7\x1a\x5a\xfd\xfc\x80\x3e\xaa\x00\xe2\xcc\x09\xf4\x6e\xa1" + "\x54\xd9\x8f\xe0\xd1\xe8\xb8\x17\x0d\x36\xa7\x3a\x4c\xea\xbb\xcf" + "\xbe\x51\x49\x55\xb8\xc8\x7d\x49\x37\x6b\xd8\xb0\xaf\xa8\x5c\x57" + "\x51\x97\x4b\xa0\x1d\x97\xff\x68\x68\x4e\x9a\x77\x2e\xd1\xbc\x03" + "\xe0\x50\x7d\xc7\xa3\x37\x02\x26\x72\x24\x97\xc0\x6a\x77\x11\x33" + "\xa2\x78\xc1\x89\xfe\x5d\x05\xf5\xea\x50\x80\xbc\x08\xae\x3a\x20" + "\x20\xdc\xc2\x8f\xc2\xc8\xd3\xe0\xd6\x2c\xf2\x65\xe1\xdf\x82\x9c" + "\x7e\x25\x75\x46\x02\xf7\x2f\x6c\xdc\x87\x05\xbe\x08\x2e\x5c\xbd" + "\x78\xd4\xd2\x3d\x65\xc4\x27\x1f\x33\xe5\x48\xef\x8f\x0b\xd8\x8c" + "\x17\xb0\x91\xc3\xba\x13\xe8\xe1\xc3\x76\x58\xdf\xfe\x1a\x37\xbe" + "\x43\x20\xbe\x1d\x0b\x95\x00\xc9\x0e\xdd\x05\xed\x6d\x6c\xc4\x61" + "\x9e\x93\x5b\x1b\xbb\x70\x05\xc2\xb2\xde\x2d\x48\xea\x5e\x3f\x25" + "\xca\xa4\x22\x2f\xac\x8d\xbb\xe3\x8e\x59\xe4\xee\xa4\xba\x85\x42" + "\x63\xeb\xe7\xe8\xd9\x9e\xc4\x4f\xa3\x34\xcb\x45\x93\xb5\x04\x28" + "\x67\x73\x49\x80\xf8\xcb\x87\xe0\xc8\xa1\xc2\xfa\x43\xc1\x6b\x5d" + "\xc3\x83\x02\xfe\x09\x89\xe5\x06\xf8\xa8\x79\x39\xec\x08\x2f\xf5" + "\xae\x09\x3e\x75\x59\xa2\xfe\x4b\x31\xc3\x97\x66\x12\x08\xf4\x67" + "\x16\xe8\x0d\x45\x2d\x50\x79\x63\xfb\xc0\x77\xe7\x82\xab\xba\xba" + "\xbb\xbb\x40\x2e\xcb\x3a\xe5\x0a\xd9\xf3\xc6\xfe\x2b\x0b\x9a\x8b" + "\xe0\x47\x1a\xaa\x18\xb2\xb1\x70\x73\xfa\x14\x05\xe7\x38\x45\xef" + "\xa2\xa0\x9f\x03\xc9\x8e\xd9\x0b\xce\x3e\xf2\x01\xfb\x41\x19\xcb" + "\xea\xf6\xe3\xbf\x43\x7f\x93\x67\xe5\xd2\xec\x04\x84\xee\x8c\xed" + "\x67\xec\x02\xc8\x42\x06\xbb\x42\xdc\xfc\xf1\x33\xf8\xb8\x2b\xe4" + "\xb3\x63\x4d\x6e\xc7\x29\xe7\x3f\xb4\x02\x1c\xbe\x89\x62\xae\x4f" + "\x1f\x2e\xcf\xcf\xe7\x69\x92\x27\xe7\xe7\x42\x4b\xa3\xa3\xb4\xf9" + "\x8b\x8c\xe9\xd8\x6e\x7e\x28\x5f\xe8\x58\x89\x3f\x86\x37\x13\x2f" + "\xc8\x87\x0e\x8a\x58\x51\xd0\x3b\x74\x08\xf6\xc7\x9c\x5d\x00\xe3" + "\x67\x59\x77\x8f\x72\x66\x22\xc3\xf9\xc3\x8c\x99\x80\x72\x7e\xaa" + "\xde\x44\xe5\x93\x4c\x59\xa0\x6e\x58\xc5\x37\xd1\xcf\x32\x56\x3a" + "\xff\xe2\x03\x78\x86\x29\x87\xa9\x16\x06\x11\x3f\x89\x4b\xef\x4f" + "\x50\xfa\xfc\x14\x95\xd2\x5e\x61\x23\x3f\x22\x58\x2b\x39\xc0\x43" + "\x49\xad\xfe\x41\x4e\x47\x09\x4e\xe0\xa7\x74\x84\xc2\x87\x79\x40" + "\x43\x9e\x0f\x13\x80\xf6\x0d\xff\x3a\x13\x46\xb0\x23\x86\x52\xad" + "\x3f\xcd\xf4\x26\xfc\x06\xb9\xdd\xcc\x9f\x67\x4c\x08\x7c\x3e\x4c" + "\xdb\xdc\xc0\xe0\x19\x57\x14\x77\x2f\x97\x4f\xcf\xb0\x09\x0c\x1a" + "\xe4\x9f\xab\x4c\x65\xfa\x81\xb9\xaf\x08\xd6\x3e\xcc\x3f\x2a\x81" + "\xfd\x24\xb3\xe2\x6f\xa1\x7e\x96\x24\xa0\xb7\x4c\x1c\x8b\xc0\x08" + "\x7e\x20\xe2\xbd\x32\x67\xd4\xac\x79\xf8\xc0\x99\x8a\x47\xe8\xff" + "\x80\x05\x47\x10\x1f\x65\x05\x3b\xbd\x9d\x5d\x24\x53\x1d\xe6\xee" + "\x2c\xbc\x64\xb0\x98\xa6\x0b\x10\xde\x01\xbd\x16\x53\x34\x88\x79" + "\xdd\x9d\x5f\xd7\xff\xcf\xda\xda\xaf\x6b\x4f\x92\x24\xc7\x1d\x65" + "\xbe\x76\xf5\xf7\xce\xef\x9d\xdf\xd6\xdc\x49\x9e\xcf\x33\x7f\x67" + "\x07\x38\xb4\x0b\x95\x09\x5b\xec\x6c\xc7\xa3\x0f\xf6\x93\xf9\x2d" + "\x75\x73\xed\xb7\xdd\x47\x8f\xb6\x7f\xdb\xfd\xed\xf7\xb5\xb3\x09" + "\xb7\x2a\xda\x5b\xe4\x93\x24\xcd\xac\x9a\xa2\x7c\xb2\xb8\xa0\x3a" + "\xf2\xeb\x8b\x6c\x47\x57\xbb\x73\x09\x7f\x26\xd9\x0e\x92\x75\xe2" + "\x65\xe0\x33\xd1\xca\xab\x68\xc8\xe3\x8c\x8f\xd6\x80\x45\xe4\xe9" + "\xda\xeb\xa3\xb3\x87\x54\x77\x31\x4d\x2e\x76\x70\x2e\x77\x5e\x1d" + "\xed\x1f\x1e\x9f\x1e\x52\x65\x3b\xf2\xe0\x95\x16\x1d\x4f\x38\xf0" + "\x45\x5c\x07\x9f\x78\x41\xa2\x15\xaa\x13\x5e\x74\x44\xb2\x2c\xa8" + "\x16\x60\x16\xbc\x20\xc1\x4d\x04\x3c\x59\xa7\x58\x61\x24\xb0\xc3" + "\x66\x1c\xfd\x40\xd9\x1f\xb6\x2a\x2c\x9a\x4c\x79\x87\xc3\xfa\x49" + "\xdd\x2f\x06\x1c\xa3\x84\x67\xf1\x2f\xf9\x1a\x39\x4b\xac\xcd\x60" + "\x75\xac\xe5\x93\x30\x5e\x4b\x62\xae\x23\xe5\xad\x01\xba\xac\x49" + "\x76\xa1\xb3\x46\x8c\xb1\xce\xf3\xd7\x36\x96\x22\xd8\xd5\x18\x36" + "\x10\x37\x13\x12\x82\x47\x41\xb7\x3a\x5f\x14\x77\x53\x64\xd4\x77" + "\x1c\x50\xc1\x2e\x79\x5e\x0a\x4e\xa1\x46\xb8\xb9\xa9\x06\x42\x3f" + "\x18\xe3\x86\x02\x8e\x30\x71\x4c\x49\x7c\x83\x43\x54\x1f\xc8\xcd" + "\x45\xc2\x81\x1b\x38\x70\xa0\x3e\x53\x58\x76\xa8\xa8\xe0\x04\x05" + "\xe1\xf5\xf4\x42\xa5\xc7\x40\x76\xd9\xf7\x28\x78\xc4\xff\x93\x7d" + "\xc4\x9f\xdf\xd9\x53\x1e\x88\x53\xa9\xe4\x2f\x4d\x47\x7e\x4e\xb3" + "\x20\x0e\x1e\xbb\xf1\xe6\xa6\x8c\xb5\xb3\x7f\x7a\x6a\x3f\x77\x84" + "\x91\x92\xd8\x7d\xeb\xec\xcf\xdf\xdc\xfe\xbf\xfe\x99\x39\x7f\xfb" + "\x65\xb0\xe5\xed\x5c\x32\x1a\x75\xf0\xf8\xcb\xdf\x36\x96\xe6\x1b" + "\x90\x99\x8a\x2f\x1e\xc6\xec\x60\x7f\x44\xd8\x8a\x0c\x09\xd9\xfb" + "\xb2\xb1\x8c\x8b\x2f\x8a\x0d\x27\x92\x89\x3b\x90\x5e\x30\x9d\x21" + "\xcc\x14\x82\x68\x16\xa2\x73\xea\xce\x3f\x33\xb7\x1f\x6e\xff\xc0" + "\xa6\x22\x3c\xb9\x5f\x8e\x3f\xc9\x3e\x53\xe5\xcb\x51\xb2\x16\x6f" + "\x89\x28\x67\xb0\xc2\x01\x03\x44\xc0\xb3\x10\x46\x02\x5b\xce\xaf" + "\xdf\x23\xaf\x2b\x42\x20\xa9\x93\x11\x08\x49\xc9\xe1\x3e\xb9\x3d" + "\x1a\x21\xb0\x75\xb4\xb3\x82\xbd\x10\xb5\xe2\x5c\xc4\x6a\x87\xdf" + "\xed\x02\x64\x97\x06\x82\x07\x0b\x79\xca\x14\xc8\x84\x49\xe4\xd3" + "\xf0\xd6\xe7\x85\x3c\x7d\xde\x14\x4b\x49\x63\xf5\x31\x19\x14\x30" + "\x0a\x4d\xc6\x9f\x4e\x13\xe1\x20\x1e\x35\x24\xeb\x48\x2b\xa4\x54" + "\x8a\x7a\xbb\xbe\x8b\x5a\x75\x19\xd0\x80\x51\x00\x38\x10\xc1\x78" + "\x25\xc5\x6d\x6a\x60\xab\xa9\x7a\xef\xd7\x8f\x11\xe0\xed\x01\xa1" + "\xc3\x32\xee\x8c\xa2\x6c\x8e\xd0\xa7\x83\x73\x2e\x2e\x47\xf1\xf4" + "\x14\xe3\xc2\xb0\x67\x58\x6a\x3d\xbe\xbb\x93\x9c\x43\xbc\x1e\x38" + "\x22\x8c\xa7\x83\x66\x2b\xc5\x50\xc4\x9d\xaf\x14\x4f\xe2\x1f\xce" + "\xc2\x11\x18\x04\x9d\xf2\x98\xce\xc5\xa8\xa2\x67\xf0\x82\xf9\x90" + "\x9c\x63\xad\xcf\x44\x2c\x26\xf1\x61\x0f\x3f\xf0\x01\xbe\xf2\x0b" + "\x3b\x7c\x45\x2c\x19\xd7\xc7\xbb\x3d\x3d\xa3\xe5\xe8\x15\xa7\xb4" + "\x80\xc4\x5e\xfc\x26\xd7\xd3\xf9\x8c\x28\x0d\x69\x24\x8d\xe0\x0b" + "\xeb\xd9\x72\x1e\x34\x81\x37\xe5\x99\xc0\xa0\x61\x16\xb1\x02\xb5" + "\xf7\xbf\x47\xf2\xee\x3a\x57\x51\x16\x5d\x44\x30\x03\xb7\x0e\xc5" + "\xf4\xa1\x77\x0c\x8f\xc5\xe9\x5c\x45\x92\xe1\x31\x1e\x07\x76\xcb" + "\x30\x9a\x66\x7e\x9c\xe4\x6e\x1f\xbe\x8f\x07\x9e\x23\x08\x9b\x72" + "\xf4\x5b\x23\xb6\x0c\xe9\x5a\x2c\xe8\x5a\x4e\x11\xe8\x74\x0d\xd9" + "\x62\x36\x0b\xd3\x5b\xf1\x55\x86\x64\xd0\x04\x32\x82\x8f\x30\xe8" + "\x57\x50\x8a\xbf\xba\xfe\x48\xf1\x52\x39\xc8\xb5\xb9\x9a\x3e\x33" + "\x05\xe8\xad\x03\x8f\x9d\xc3\x57\x87\xaf\x0f\x8f\xcf\xce\x8f\x4f" + "\x0e\x0e\x31\x7f\x38\x05\x99\x02\x37\x70\x13\xa2\xcc\x01\xdc\x20" + "\xb1\xcc\xf1\xd0\x98\xa8\x67\x53\x25\xe3\x6c\xf6\xcc\xab\x1f\x23" + "\x29\x33\x61\x13\xad\xcf\x71\x12\x2f\xed\xd8\x9c\x56\x1e\xaa\x4b" + "\xc7\xe1\x34\x03\xe0\x6d\x64\x7a\xee\xf4\x4c\x57\x02\x81\xa1\x33" + "\x06\xb0\x93\x22\xd8\xa9\x1d\xfc\xca\x62\x6f\x63\x3b\xf0\x5a\x99" + "\xd5\x55\xb3\x1c\x57\x62\xb3\x29\x98\x35\x07\x54\xed\x89\x68\x61" + "\x45\x53\x18\x56\xab\x14\xc6\x1f\x33\xd3\xd3\xdb\x00\xac\xb4\xde" + "\x65\xfc\x5c\xb6\xe0\x81\x0b\x24\x14\x44\xb7\x97\xb9\x5c\x83\xb6" + "\xaa\xbb\x60\xaf\x32\x2a\x20\xa9\xca\xd7\x3f\x10\xd5\x81\x16\x8c" + "\xec\x43\x5c\x55\x48\xa3\xb3\xc9\x45\xb6\x1d\x27\xdb\x62\x3d\xc1" + "\x8c\x95\xbe\x17\x6b\x63\x1f\x63\x1d\x03\x05\x93\x64\x54\xd6\x87" + "\xec\x11\x70\xa5\xc0\xeb\x21\x26\x03\x99\x40\x4d\x91\xd3\x73\xf7" + "\xb9\x5c\x28\x77\x77\xba\x6c\xfd\x88\xef\xc1\xc9\x6b\x72\x04\x82" + "\x34\xf8\x12\x26\x94\xd1\xe8\x50\x18\x95\xc0\x5e\x03\x28\xed\x73" + "\x2f\x27\x6e\x1f\x2a\x25\x71\x81\xd6\x2b\xca\xf7\xcf\x69\xb0\xad" + "\xd3\x3d\x8a\x52\x75\x90\x8f\x3d\xa1\x7e\xe7\xa9\x4b\x2d\xa8\xa9" + "\x7c\x95\x89\xd8\x7a\xb9\x9a\x5d\x5c\x82\xc7\x7b\xaf\x0f\xc9\xed" + "\x69\x1c\xa3\xc2\x4c\xfe\x42\x86\x00\xc7\x11\x46\xe7\x19\x87\x74" + "\x36\x9a\x72\x3a\xfb\xf8\x69\xba\x40\x72\x12\xc4\x3a\x35\x4e\x20" + "\x1d\x18\xd9\x61\x4e\xbd\x74\x55\x3d\x19\xab\xd5\x44\xb2\x0f\x7b" + "\x13\xe0\xce\x8e\x50\x86\x5e\xc0\x17\x16\x3d\x33\xea\x9e\xd8\xed" + "\x74\x3a\x39\xba\xce\x1c\x65\x81\x60\x8d\x50\x04\x97\x98\x8f\x3a" + "\x5a\xa3\x53\x2e\x14\x51\xf8\x3b\x6c\x17\x2f\xd0\x86\xb0\x95\xe1" + "\xe6\xb4\x96\x06\x9a\x68\x25\x81\xbb\x04\x2e\x16\x30\xda\x0f\x0b" + "\xac\x06\x4f\x3f\xe4\x40\x87\x53\xe1\x7b\xd7\x74\x32\xfa\x29\x47" + "\xdf\xff\x37\x74\xf0\xaf\xdb\x30\xaf\x22\x1f\x8f\xa3\x46\x33\x9e" + "\x2c\x72\x01\xf3\xf4\xee\xee\x00\xf9\xb1\x82\xe1\x1e\x12\xc6\x81" + "\x3e\x1c\xa5\x27\x04\x63\xd4\x48\x45\x83\xe8\x66\xac\xad\x78\xb9" + "\x39\x72\x1e\xa0\x39\xaf\xb7\x0e\xec\x46\x06\xa4\x3f\xda\x7e\x04" + "\xc4\x1f\x77\x00\x37\xdd\x0a\xb8\x70\x96\xcf\x68\x00\x90\x10\x79" + "\xff\x11\x01\x73\xd1\x57\xf1\x4e\xdd\x5d\xa6\xc2\x9d\xba\x29\x83" + "\x6f\x3d\x0f\xa3\x6e\xf3\x34\xd8\xe9\xff\xab\x33\xf8\xd5\xed\x05" + "\xff\xec\x74\x7e\xf5\xfe\xd9\xb9\xeb\xfc\xba\xc3\x62\x48\xc7\xf7" + "\x1d\x96\xc1\x93\xef\xff\x73\xb4\xb5\xb1\xc3\x8e\x81\x31\x2d\xa8" + "\x87\x07\x71\xa0\x00\xf9\x26\x0b\x96\xb3\x64\x91\x71\x8a\xde\xe4" + "\x3b\xf4\x8c\x27\x34\x51\xd5\x0b\x8f\x53\x1e\x5e\x71\x95\xbc\xc8" + "\x1d\x00\x43\xaa\x6c\x23\x6e\x1f\x0f\x85\x0d\xbf\xc1\x8e\x3c\xba" + "\x98\xaa\x47\x2a\xba\x98\xab\x27\x58\x90\x31\x3c\x4b\xad\x1b\x20" + "\xf8\x42\xe5\x5c\x4f\x38\xc7\x53\x9d\xb0\x9c\x5e\xe3\xfb\xa9\x3c" + "\xe9\x6e\xf7\xc1\x34\x2c\x1f\x71\x5a\xe1\x39\xa3\x7d\x50\xc6\x56" + "\x97\x6f\xc4\xf3\x39\xc0\xbf\xca\x26\xe1\x09\x24\xa3\x2c\x13\x8f" + "\xd4\xa3\x24\xc5\x3d\x91\xf8\x9a\x21\x05\xd7\xc3\xb8\x8e\xc9\x62" + "\x38\x51\x35\xd1\x8b\x6c\x83\x9e\x45\xa5\xf4\x38\x44\xf2\x87\xfd" + "\x9b\x27\x11\x02\x4b\x36\x23\xdf\xe4\x47\xf2\x8d\x5a\x93\xcf\x04" + "\x42\xf3\xaa\xab\xb9\x84\xed\x6e\x01\x1d\x94\x4d\xcb\x57\xdd\x2f" + "\xf9\x2e\x3a\x30\x06\x1a\x81\x03\xb9\x98\x2e\x10\x2a\xba\x10\x29" + "\xb0\x34\x04\xf0\x61\x71\x31\x8b\x72\xf5\x05\x5a\x53\xc5\x93\x00" + "\x21\x52\x3a\xf8\x59\xc4\xf2\x41\xc8\xd3\xfa\x55\x85\x0e\x70\xe4" + "\x60\xea\x84\x8e\xbc\x8b\x6e\x49\x69\xa2\xfb\x40\x32\x09\xfc\x86" + "\x17\x89\x98\x0d\x31\x8f\x03\x4b\xd1\xf3\xba\x12\xce\x6e\x73\x13" + "\xf8\xe4\xbc\xf0\xfd\x8d\xe5\x41\xbc\xb5\x55\x7c\xc1\xed\x78\x11" + "\x89\x05\x09\x0b\x0e\xd3\x8c\xcb\x12\x1d\x9e\x53\xb4\x0f\xab\x32" + "\xbc\xac\xfe\x28\xc8\x01\xbf\xfb\xf9\x20\xa0\xbf\x14\x8a\x99\x9e" + "\x4c\x35\x69\x5a\xea\x83\x39\xba\x6f\x8c\x08\x6b\xc3\xd8\xcd\xd8" + "\x12\x85\x8c\x4b\x18\xe1\x99\x20\x30\x71\x81\x52\x08\xc8\x14\x20" + "\x72\x6f\x6e\x0e\x71\xeb\x82\x9a\xb2\x0e\x12\x3a\xa8\x10\xbd\x25" + "\x51\xc9\x01\x69\x18\xc6\xd9\x32\x1a\x25\x69\x35\x02\xa1\x3e\x4f" + "\x4d\x67\xf0\x84\x67\x17\x50\x8b\x12\x6b\xb7\x07\xf2\x41\x2e\x54" + "\x9b\xc4\x91\x8b\x4e\x24\x45\x10\x75\x93\xcd\xcd\x04\x78\x87\x7c" + "\x12\x65\xdd\x24\x48\xec\x9d\xd6\x6c\x3e\x21\x6e\x3e\xa9\x87\x7e" + "\x0b\x40\x72\x12\xcf\x0c\x2d\xaa\x0d\x2d\x21\x13\x61\x75\x68\x91" + "\x1c\x1a\xda\x86\xb9\x1c\x5c\xc2\xfa\x51\x69\x70\x6f\x33\x49\xc6" + "\xc5\x59\xbc\xb2\x99\x89\x34\x02\x38\x51\xc2\xc7\x3b\x0b\x1e\x67" + "\x24\xf8\x20\xff\x23\x08\x75\xd6\x91\x5d\x81\xba\xd4\xc8\x21\x87" + "\x5b\xca\xb4\x6f\x99\x02\x9f\xda\x10\xac\xe0\x85\x92\x55\xa6\x73" + "\x92\xdc\x07\x9c\xe1\x92\xf6\xbe\xb7\xf1\x23\x4a\x85\x61\x13\x03" + "\x64\x03\xa0\x3d\x98\x21\xf4\xc1\xb5\x0f\x92\xc4\x8a\x9e\x03\x7d" + "\xb7\x82\xd5\x63\x44\x43\xd9\xc6\xdd\x9d\x96\x92\xb0\x8d\x7e\xca" + "\x12\x16\x0e\x82\x6f\x18\xe5\x10\xf7\x81\x2e\xb2\x50\x40\x48\x81" + "\x78\xc3\xb6\xb4\x17\x3c\xd6\x7a\xbf\x99\x90\x77\x67\xb0\x1d\x61" + "\xac\xa4\x91\x80\xfa\xdd\x5d\x25\x01\xa6\x74\xd6\x29\xcf\x0c\x30" + "\x3f\xd5\x24\xc3\xa4\x56\x3e\xd7\x4a\xda\x3d\x21\x5c\x22\x7a\xb0" + "\x19\x70\x1e\x78\x2e\x5c\x92\xf9\x69\x40\xab\x08\x0f\x31\xf5\x43" + "\x58\x1e\x2e\xfe\xa0\x8d\x8b\x2d\x02\x98\xc9\x09\x0c\x29\x05\x38" + "\xd2\x5c\x22\x67\x41\xf1\x48\x04\x5e\x04\x0b\x8d\x20\x51\x79\x87" + "\x9e\xe3\x62\x4c\x68\xb7\x15\xa2\x33\x4f\x99\x83\xd1\xbf\xce\x83" + "\xb4\x47\xc8\x8f\x3b\xaa\x4f\x0b\x2f\xc1\x13\x4c\x0d\x53\xae\x5a" + "\x65\xe7\x06\x41\x12\x78\x91\x6d\x47\xf0\xa8\x97\xf8\x9c\x4d\xd0" + "\x6b\xf5\x9c\xc5\xf5\xcd\x3b\x64\xe7\x68\x82\x37\x06\x5b\x6e\xcf" + "\xab\x5a\x6a\x30\x54\x34\x2d\x52\x62\x17\x5d\x0c\xe2\x46\x4e\x81" + "\xb3\x94\xad\xaf\x47\xa8\x27\x47\x75\x03\x99\x45\xfb\xa9\xee\x88" + "\x6d\x9e\x0e\x53\x73\x58\x5a\x71\x03\xb9\xbc\x1f\xa0\xab\x17\x25" + "\xe2\xcc\x00\xb0\x4a\x2e\x0f\x8e\x0a\x29\x8e\x44\xc0\x4b\x81\x55" + "\x18\x4e\x17\x23\x78\xc3\x73\xd9\xba\xdb\x89\x06\x07\x3c\xd6\xe1" + "\x66\xf5\xe0\x7d\x56\x72\x5e\x31\x8a\x8c\x98\x66\x83\xbd\xc9\xfa" + "\x31\x74\x47\x4d\xda\x30\x58\x26\xb1\xe9\xb3\x85\xff\xeb\x8f\x80" + "\xa5\x00\xb8\x37\x67\xee\x62\x26\x91\x07\x99\x79\xef\x5a\x11\x23" + "\x87\xe5\x06\x63\x37\xab\x05\xfd\x40\x91\x86\x31\x1b\x25\x13\x41" + "\xb1\x17\x74\xef\x02\x6c\x87\xd9\x87\x28\x9f\xb8\x4e\x47\x08\x81" + "\xb2\x99\x94\x44\x69\x5a\x51\xb6\x35\x7b\xa2\x84\x5b\xd5\x2e\xc1" + "\x70\x8a\x18\xcd\x22\x8d\xd3\x12\x71\x09\xb5\x0d\xad\x9c\xaf\x99" + "\x49\xa1\xca\xa6\x9e\x47\x33\x3a\x65\xe8\x18\x2d\x4e\x9b\x00\xb3" + "\x65\xcd\xe4\x9c\x9d\x37\xcc\xe4\xc4\x53\xd3\x3f\x0e\xe6\x7a\x06" + "\x32\x9a\x81\xae\xbb\x1e\xde\xdd\xe5\x66\xa2\xc7\x9e\x9a\x69\xec" + "\xa5\x41\x7c\x76\xde\x38\xd3\x05\x88\x2f\xd1\xe5\x25\xd7\xbb\xc9" + "\x7d\x90\x17\xc2\xa1\x22\x9a\x28\x2c\xa0\x13\x50\x26\xdc\x7f\x90" + "\xda\x44\x44\x2b\x93\x40\x68\xf2\x91\x63\x9e\xe2\x9f\x09\xf2\xd7" + "\xb0\x2a\x04\x25\xcb\x3a\x42\x2b\x42\xdb\x00\xd1\x72\xd5\x8d\x04" + "\x27\x71\x3d\xe9\x44\x19\xaa\x08\x42\xd9\xdf\x1c\xd5\xd2\x23\x17" + "\x4f\x3d\x50\xde\xd1\x6c\xc6\x47\x11\xaa\xd3\x9b\x0a\x4d\x02\x2c" + "\x73\x20\x0c\x13\x6f\x84\x02\x1b\x33\x14\xc1\x5a\x04\xb0\x61\x19" + "\xd5\x0c\x3a\xeb\x2e\x2e\x2e\x50\x95\x1f\x32\xc1\x41\x21\xc4\xc4" + "\x31\x0b\x13\xaa\x77\xb2\xb9\xb9\x50\x67\x38\x64\xdd\xd8\x21\x94" + "\xc5\xcb\x4a\x9f\x05\xda\x3c\x47\x95\xd6\x61\x77\x85\x7f\xf5\xef" + "\x17\xb6\x03\xf5\x90\xd6\x04\x92\x4e\x23\xf0\xf5\x01\xb1\x1b\x90" + "\x02\x28\x73\x9e\xde\x2e\x85\xf8\x54\x0c\xb1\xf5\x65\xb3\x75\x05" + "\x29\x25\xe2\xcf\x38\xba\x5c\xa4\x72\x60\xa4\x67\xd5\x0b\x3b\x2b" + "\xcc\xe1\x58\xeb\x1a\x98\x57\xb1\xb9\x92\x06\xf5\x9f\x0b\x1d\x04" + "\x5a\xc4\x58\x17\x61\xb3\x49\xd5\x60\xf4\x3e\x32\x5d\xa8\xca\x68" + "\x62\xf5\xa5\x35\xfa\xb8\x94\xca\xd3\x95\x00\x82\xd1\x2f\xe2\x8c" + "\xd3\xa6\x85\x30\xe8\xa8\x4b\x74\x11\x04\x4a\x53\x7c\x7a\x72\x2c" + "\x54\x73\xee\x88\x0f\x81\x6d\x79\xf7\xf6\x08\x35\x4f\xa8\xaf\xa5" + "\x98\x19\x12\x48\x7a\x9c\xd6\x29\xe0\x96\xe8\x50\xfd\xbd\xed\xcf" + "\x83\x9d\x4b\x98\x91\xc7\x5f\xb6\x81\xa7\x2c\xeb\x4f\x8b\x2f\xca" + "\x81\xfe\x3b\x29\xe5\xd1\xae\x6c\x74\x08\x72\x39\xc5\xe5\x3b\x54" + "\xbe\x28\xcd\xc2\xc6\xf2\x14\x35\xd0\xc5\x17\xd2\x7a\x8b\x7d\xa2" + "\x56\x01\x7e\x5e\xbd\x3c\xa3\x5e\x83\xd0\x9a\x97\x3e\xce\xe4\xc4" + "\xe9\x55\x0b\xfb\x85\xe2\x71\xd1\x3f\xa3\x74\x8f\x48\x4c\x16\x6f" + "\xe8\xa6\xa7\x5c\x0a\x88\xa5\xb2\x69\xe5\x45\x86\x3a\xa7\xf5\x6a" + "\xe2\x3e\x21\x95\x63\x93\xb0\xb5\x0c\xa9\x1e\x0c\x1c\x89\x40\x44" + "\x21\xd8\x24\x30\xff\x75\x91\xed\x10\xc5\xc2\xf0\xe1\xc0\xdf\xa7" + "\x7b\xb9\xbb\x5b\xb9\x12\x69\x2b\x52\x64\x11\xf8\x44\x49\x78\x19" + "\x90\xf9\x41\x80\xb8\xa8\xfa\x49\x9c\xb0\xd1\xca\x5d\x36\x80\x5e" + "\xcf\x26\x7d\x77\xb9\x7a\x0a\x00\x35\x00\x3c\xa8\xaf\x5b\xfb\x94" + "\x2f\x45\x68\xd2\xb5\x4b\x14\x65\xd5\x2a\x55\x3e\xa0\x45\x51\xcf" + "\x45\x25\x60\x4b\x09\xd4\x9a\xa0\x03\xd8\x24\x4d\xae\xc9\x8e\x7e" + "\x48\x16\x96\x5f\x3e\x25\x8b\xb5\x09\xc8\x6d\x6b\x79\xb2\x16\xcd" + "\xe6\x42\x35\xb3\x96\x4f\xf8\x9a\xfc\x78\xc6\xf3\x49\x32\x5a\x73" + "\xb0\x02\x87\xad\x01\x74\xd7\x78\x38\x9c\xac\x0d\x15\x3e\xaf\xff" + "\xe2\x15\xe7\xa4\x5a\xc5\x19\xb0\xef\x08\x21\x06\xbe\x73\x3e\xe3" + "\xc0\xbd\x89\x5c\x98\x6b\xa4\xce\x2a\x47\x50\x82\x3d\x32\xb1\x62" + "\x21\xca\xa3\x1c\x5c\x68\xfb\x13\x3e\xfc\xa6\x6b\x65\x79\xd1\x54" + "\x5e\x37\x56\xd4\xda\xb1\x39\xea\x67\x2e\xf7\x7a\xdf\x3b\xb5\xf9" + "\xe1\x24\xb1\x13\xe6\xf8\x4b\xe5\xf8\xb9\x44\x1d\x0e\x76\x63\x68" + "\x34\x47\x1d\x09\x62\x86\x79\xd2\xfd\x2a\x30\x0a\x73\xf2\x1e\x82" + "\xac\x96\x76\x32\x48\x96\x25\x2c\xde\x5e\x7d\x9c\xa3\xc3\x51\x51" + "\x1f\x33\xfa\x63\xb5\x74\x03\x67\xda\x26\xcc\xc0\xe8\x35\x10\x66" + "\xee\x19\x96\x10\x51\x15\x8f\x4b\x81\x90\xd0\x73\xa4\x91\xcc\xf1" + "\xff\x40\x17\x48\x52\x5b\x23\x4e\xbc\xe5\x97\x87\x37\x73\xbc\xaa" + "\x89\x62\x55\x01\x5b\x6d\xf0\x05\x5b\x14\x38\x83\x22\x6d\xb5\x5b" + "\x88\x1d\xb0\x7e\xde\xa1\xc5\x56\x92\x24\x7f\x4d\x78\x51\xac\x39" + "\x1b\xcb\xac\x70\xd6\xe6\x69\x72\x15\x81\x70\xbd\x86\xe3\xc4\xc4" + "\x04\x12\x01\x38\x6b\xfc\x06\xef\x0b\xb0\x32\xa2\xc2\xe9\x7c\x41" + "\x6f\x10\xc9\xc9\xa5\x81\x43\x56\x55\x47\xae\x8c\x97\xf0\x09\x6a" + "\x41\x68\x8d\x58\xbd\x10\x53\x9e\x2d\xa0\x0f\x2e\x21\x19\x99\x62" + "\x50\x5b\x26\x90\x4a\x8e\x1a\x78\x32\x1b\xfd\x24\x2e\x1a\x0c\x06" + "\x36\xe0\x84\x0b\x3b\xa0\xfd\x19\xab\xcf\xc5\xde\xd9\xde\xf9\xcb" + "\xc3\x4f\x94\x03\x2b\x17\xb7\xde\x04\xc7\xbe\x3c\xe1\x92\x58\x3e" + "\xb4\x0a\x8f\x09\xa1\xf4\x9e\xe2\x87\xef\x51\xaf\x8f\xe5\xbb\x15" + "\x2d\xac\x9c\x79\x18\x85\x15\x4b\x19\x6f\x7b\xcb\x5c\xd1\x3b\xfc" + "\x8b\x7a\x03\xd2\x54\x9f\x83\x24\xbe\xe0\xfb\xf2\x30\xbf\xe0\x58" + "\xc9\x55\xe8\x48\xb1\xaf\x3f\xb7\xa4\x59\xa9\xdf\x7f\x7a\x81\x1b" + "\x7a\x75\x24\xb5\xf0\x56\xdb\x00\x53\x32\xb7\xe6\xba\x12\x0d\x3c" + "\xeb\xc3\x93\x74\x9f\x7c\x1b\x4c\x05\x78\xf7\x57\x61\x46\x80\x1f" + "\x96\x1b\x80\x0d\x1f\xf0\x1b\x33\x70\x20\xe6\xb4\xa4\x5a\x9e\x92" + "\xb5\xb6\xa9\xe9\xfb\xc3\xb7\xa7\x47\x27\xc7\x86\x6d\x19\xa6\x25" + "\x72\x2c\x3b\xa6\xf3\xbf\x5c\x64\x1d\xb9\x6a\x70\xa5\x14\x5f\xec" + "\xd2\x7a\x52\x4d\x71\x55\x58\x55\x64\x3e\x20\x96\x0d\xe7\xd5\x40" + "\x86\x54\x4c\xf2\x03\x5d\x17\x7c\x21\x97\xcf\x01\x27\xdd\x3a\x6e" + "\x82\xd2\x38\xd2\x60\x5d\x10\xda\x17\x69\xc1\x02\xc9\x9d\x4e\x85" + "\xff\xcd\x11\x7b\x27\xaf\x7d\x36\x49\xf9\x58\x99\xbb\x80\x21\xe7" + "\x86\xe7\xc7\x8f\xd0\x65\xbe\x2a\xdf\x94\x38\xa9\xfb\xca\x53\x9a" + "\xcb\x03\xb4\x45\x6b\x73\xe8\xdf\x44\xc4\xf7\x2f\x88\x5d\x7c\x73" + "\x93\xae\x25\xf9\x9b\xd3\x3b\x05\x32\x87\x1c\xfb\xcc\x95\x66\x42" + "\x6b\x3b\x1e\x05\x4b\xd2\xcb\x20\x23\xdb\x66\x86\xd0\x47\xb3\xb5" + "\x07\x24\x10\x69\x65\xa2\x30\x76\xed\xaa\xea\x4a\xaa\x20\x18\x32" + "\x73\x0c\x1b\x39\x11\x02\xe5\xbd\xed\xac\xdd\x53\xb7\xa9\xb8\x60" + "\xc3\x49\x34\x1d\xa5\xbc\x74\x47\x65\xa9\x9f\x71\x47\x15\xd1\x0c" + "\x13\x0f\x1e\x73\x61\x74\x17\x9c\x79\xc1\x84\xf6\x4c\x6a\x26\x95" + "\x1d\xa5\x3f\x20\xd9\x88\x82\x71\x69\xed\x9a\x36\x4e\x4a\xbd\x5c" + "\x37\xeb\x7a\xd2\xa8\x93\x51\x5c\xcd\x96\xb2\xca\x05\xbc\x20\x17" + "\x1d\xd1\x90\x42\x1c\x4c\x89\x92\x45\x26\x87\x7d\x1a\x5d\x4c\x81" + "\x6f\x16\xd5\xf3\x2e\xb1\x86\xa5\xfe\xca\x51\xf2\x41\x17\x4d\xe1" + "\xcd\x5f\x17\x0a\x14\x05\x8b\x61\x2b\x28\x37\x18\x1b\xa7\xd7\x9f" + "\x6c\xac\xfe\xa5\xd5\x10\x69\x97\x51\x64\xd9\xd7\x93\x62\x94\xb5" + "\x7d\x27\x44\x2d\xf3\x22\xcf\x13\xd4\x44\x47\xf1\x9c\xd4\xd0\x68" + "\x09\x00\x80\x85\xb6\xe2\x5a\x1a\x8e\xe1\xa9\x9f\x87\x17\x64\x3f" + "\x19\x38\xec\x97\xfe\x50\x28\xa0\x41\x94\xa4\xdb\x98\xa4\x90\x33" + "\xf8\x65\x40\x3e\xec\x30\xab\xb0\xcc\x79\x21\xec\xcd\xea\xc3\x7f" + "\x05\xce\xb6\x33\xf0\xbe\xa8\x7b\xd7\x98\x89\x47\x48\xd4\x80\x90" + "\x1f\x51\xc9\x42\x8e\x75\x9e\x53\x40\xfc\x37\xe4\x31\x40\x2c\xab" + "\x42\xbd\xa7\x69\x32\x93\xe3\xb7\x07\x77\x60\x05\xaa\x41\x95\xf6" + "\xa8\xa3\xf0\x3d\xf7\x94\xf9\x94\x19\x3f\x0c\xac\x45\x9b\xef\x5b" + "\xab\xe9\xd9\xb5\x98\x3a\x5e\x03\x6f\x13\x01\x17\x2a\xeb\xca\x7e" + "\xaa\x32\x97\xbc\x9c\x8b\x82\xcd\xb8\xb0\xd5\x89\x03\xf8\xc6\x80" + "\x05\x14\x85\xac\x37\x28\x24\xcf\xa2\x2c\xdb\x00\xa1\xc6\xa2\x98" + "\x74\xdc\x17\xe9\x73\x17\x36\xe3\x58\xfb\x98\xc0\x7e\xf8\xa5\xaf" + "\x08\xa5\xfc\x32\x10\x4c\xcd\xe0\x0b\xb3\xcf\x79\x00\x7a\xf5\x9d" + "\x3d\x98\x86\xbd\xb7\x87\x7b\x14\xe2\x50\x52\x39\x9a\x8d\x3c\xbc" + "\x44\xc2\x0d\xb0\x8f\xea\xb2\xb7\xe4\x36\x2a\xbe\x42\x69\x30\xea" + "\xb4\x40\x96\x4a\x03\xa1\x26\x16\x41\x2e\x45\xdc\x37\x32\xa0\x90" + "\x5d\xa2\xd7\xb5\xad\x30\xf5\x80\x01\x40\x53\x6d\xc1\xa6\xc0\x53" + "\x85\x53\x8e\x76\x8c\x05\x3c\xc2\xf6\x24\xdf\x9e\x67\x01\xd6\xb2" + "\x48\x01\x1c\x93\x14\xe1\x05\x55\x6f\x2c\x9f\x43\xb5\x6c\xa4\xde" + "\x47\x32\x61\x9c\xa2\xd0\x8d\x31\x0e\xe6\xf0\x94\x4d\x92\x6b\xc5" + "\xa2\x5d\x72\xcd\xa3\xbd\x5c\xd6\xc5\x10\x15\xe8\x24\x2d\xa8\x3e" + "\xe1\xf4\x3d\xd4\x8a\x97\x32\x17\x34\x49\xbd\x9a\x0a\x43\x81\xa9" + "\x54\xd2\x72\x74\x90\xdc\xd7\x3c\xf5\xb4\xd7\x55\x5b\x51\xad\x6e" + "\x1e\x43\x61\x51\xa8\xcc\x1d\xa1\x79\x54\xa4\x4b\x77\x62\xb5\x46" + "\xbc\x32\xdb\x83\xe2\x73\xad\xc8\xb2\xdc\xac\xec\x17\xb2\x7b\xcd" + "\x83\x1d\xa5\xb2\x56\xcd\x4c\xaa\x9d\xbf\x62\x94\xb6\xb9\x32\x2c" + "\xcf\x4b\x9e\xb8\x86\xd0\x5f\xf2\x46\x5c\x20\xf4\xb1\x54\x1a\x96" + "\xad\x41\x90\x49\xe4\x15\x95\xbf\x31\x6a\xf5\xec\xfd\xf9\xdc\xf1" + "\x24\x8b\x60\x31\xa7\x4e\xb3\xb0\x70\x9c\x28\x11\x12\x5d\x8f\x47" + "\xc8\xdf\xe7\x85\x03\x38\x8a\x2d\x88\x6e\xa0\xca\xa7\x00\x8e\xe6" + "\x12\xa5\x31\xc4\x07\x20\x63\x4f\xe0\x4d\xcd\xdd\x39\x62\xa8\xa4" + "\xad\x33\x81\xad\xea\xf5\x32\x25\x74\x9d\x21\xba\x1e\x42\x16\xc9" + "\xe5\xdb\xe1\x3c\x72\xd8\x15\xa2\xb8\xb8\x87\x8c\x1d\xc5\xc1\x2f" + "\x7a\x09\xe7\xc9\xe5\x25\x12\x58\x59\xc7\xe0\x17\x76\x91\x4a\xc2" + "\xb0\xb1\xbc\x4c\x81\x95\x3a\x84\xea\x24\x22\x1f\x3e\x08\x91\xcf" + "\xd3\x42\xd4\x5a\x9b\xf0\x92\xca\xc5\x41\x0f\xd4\x6d\x32\xd6\xa2" + "\x91\xb1\x0d\x23\x65\x55\x57\xa9\xf7\x57\x27\xff\x70\xd5\xe4\xd3" + "\x04\x8a\xb6\x1c\xe0\xa7\x14\x6d\x28\xca\xc4\xef\x22\x05\xe8\x31" + "\xe1\xcc\x52\xa5\x5a\x5d\xe3\x73\x93\x4b\xdb\x8d\xa4\x44\x47\x40" + "\x9d\xdb\x1a\xf7\xd4\x00\xd1\x47\xfe\x89\x7b\xa8\xe7\x79\x0f\x89" + "\xc8\x75\x34\x87\x09\x7b\x0d\xc4\xbb\x03\xf3\x2c\x5f\xcf\x60\x82" + "\x8c\xfd\x7a\x63\xf9\x3a\x87\xf9\xbe\x55\x89\xb8\xa4\x64\xda\xb5" + "\x4a\x83\x19\x93\x49\x27\x90\x64\x59\xb2\x65\xea\xbe\x49\x5d\xcc" + "\x65\xda\x71\x1a\x08\x0b\xb8\xc3\x4e\xe1\x71\xce\x01\xc1\x0e\xf0" + "\x41\x94\xdb\xa6\xc1\x3b\x6c\x23\x0d\xfe\xef\x2e\x7b\x95\x06\x4b" + "\x68\x44\x51\x09\x61\xdc\x41\x47\xe8\x72\x0a\x39\xf9\x96\x92\x0a" + "\x76\x54\xf9\xd4\xd1\x53\x47\x8e\xa4\x9e\x53\xae\xa7\x9e\x5d\xae" + "\xb4\x96\xaf\x34\x48\x13\xfe\x30\x41\xb9\x22\x1c\xaf\x93\x04\xb0" + "\x3e\xe1\x78\x39\xe5\x62\x8e\xbe\xd1\xa4\xb1\xd6\x72\x74\xbb\xdc" + "\xac\xc8\xe4\x34\x0f\x3f\x06\xbb\xf2\x35\x13\x75\xbc\x11\x50\x24" + "\xbd\x34\x08\x9b\xeb\xd2\x89\xc9\x4e\x96\x1f\x44\x71\x94\x8b\x62" + "\xae\xe7\x15\x2b\x94\x60\x6b\xaf\xd2\xfb\xb4\x60\x6b\x47\x69\xd1" + "\xba\x6c\xf7\x52\x4b\x66\x6f\x12\xc0\x5f\xe7\x40\xd2\x09\xe7\x5c" + "\xe9\xd3\xdb\x3e\x24\xb5\xf2\xe5\xe8\x71\x19\x23\x1e\x66\xfd\xdd" + "\x81\x3c\xf0\xfb\x51\x59\x67\x64\x23\xf8\xd9\x51\x26\x2b\x79\xc3" + "\xe3\x33\xfc\x80\x5c\xa2\xdd\x4a\x55\xf2\x7b\xe8\x0c\x27\x36\x67" + "\xf9\x67\x6b\xd8\xb6\x93\xd5\x7c\x4d\xc2\x78\x34\xe5\xa7\xb8\xd4" + "\x5c\x74\x1c\xb2\x67\xb9\x63\x21\x2a\x34\x2f\x74\x1a\x6d\x43\xc5" + "\x8b\x51\xe5\xa3\x72\xec\x7c\xd4\xc3\x10\xf4\x75\x50\x94\x3a\x52" + "\x94\xbb\x60\x7c\x20\xf4\x15\xaf\x76\xaf\x69\xd7\xfa\x47\xb0\x91" + "\x56\xfd\xaa\xf3\x1d\xbb\x5c\xb7\x82\x8c\x20\x33\xbe\x71\xf9\xe3" + "\xdd\x5e\x69\x78\xe5\xa5\x54\xca\xb2\x17\x21\x0c\xdd\xc6\xca\x65" + "\x3b\x1a\xf4\x5c\xa2\x9f\x65\x3c\x3a\x49\x51\x71\x2f\x3f\x92\xe8" + "\x44\x2a\x9f\x6a\xc1\x7d\xab\xa0\x98\x6a\xaf\x75\x9b\xc0\x43\xd7" + "\x07\xb0\x47\xf8\x4d\x2d\x9e\x3d\xb4\xc5\x5b\xab\xa0\x9c\xdd\xc6" + "\x72\xd7\xf5\x9e\x21\x3a\xb6\x61\x60\x69\x7b\x6a\x04\x14\x45\x4f" + "\x92\xa4\x15\x97\x2c\xec\x46\xa7\x29\x72\x1a\xe5\xb4\xe3\x54\x93" + "\x80\x12\x39\x92\x0d\x38\xc0\xbd\x19\xc7\xa6\x28\x5e\x6b\x93\xbf" + "\xef\xee\xcc\x8d\xd4\xb3\xf0\x86\xfa\x49\xfd\xc9\x1e\xef\x2a\x55" + "\xc9\x1b\x20\xf6\xc3\x30\x25\x7f\x30\xd8\x83\x04\xab\x61\x12\xa2" + "\x9c\x98\x8d\xd7\xc8\x6c\x7c\xc8\x4a\xcc\xc6\x0d\x94\xdd\xc3\x33" + "\x3f\xaf\xe8\x1e\x90\xb7\xea\xf5\xad\x08\x92\xf8\x2d\x0d\xfe\xbe" + "\xbb\xcb\xde\xc3\xae\x86\x42\x26\x30\x27\xf0\x84\xbb\x29\x6c\x6d" + "\xf0\x24\x2e\x0f\x09\x81\x27\x91\x97\x8a\xbc\x87\xdd\x29\x9b\x82" + "\xf0\xb2\xb1\x8c\x70\x67\xda\xe0\xe2\x5d\xbe\x3e\x87\x6c\xe9\xff" + "\x25\x53\x3e\x40\x8a\x71\x6f\x93\x89\x4f\x54\x22\x79\x66\xc9\xc4" + "\xaf\x90\x38\x4a\xc3\x4b\xb9\x93\x52\xda\x53\x48\x43\xd7\x28\x7a" + "\xdd\x58\x7e\x40\xde\xfe\xa5\xe1\x89\x4c\xe2\x93\xcc\x06\x50\xce" + "\x0d\x87\xf5\x09\xf7\xee\x29\xc5\x3b\x7b\x67\x41\x71\x3b\xca\xf9" + "\x6c\x9b\x7c\xbb\x7e\xd4\x92\xa5\x47\xd8\xb3\x5a\x86\x80\xd1\xf7" + "\x5a\xba\x80\xd8\x57\x04\xbd\x6a\xf7\x29\xbe\x94\x4a\x39\xec\x63" + "\x1a\x7c\xcd\xb6\x9e\x66\xec\x8f\xb4\x9a\xb9\x16\xcd\x2e\x1d\xf6" + "\xb9\x9c\x1e\x8f\xa2\x21\xe2\x05\x08\xe5\x2f\x20\x47\x33\x8a\x34" + "\x9e\x01\x5b\x2b\x27\x00\xff\x38\xc0\xcb\x5d\x2c\x8e\x12\xef\xfa" + "\xb5\x00\x03\x1c\x25\x4f\x82\x65\xff\x26\x1d\xf8\x21\x67\xfd\xb7" + "\xf0\x7b\x96\x17\x2c\x86\x44\x42\xed\xab\x70\xea\xff\x9d\xff\xce" + "\x60\x0e\x2f\x92\x30\x15\x91\x41\xc2\x05\x46\x06\x99\x08\x7f\x40" + "\xac\x11\x6f\x58\x22\xdc\xc6\xec\xeb\x34\x9c\xa3\x15\x98\x65\x76" + "\x25\x8e\x2b\xc2\x19\xdd\x5d\x24\x09\x4c\x72\x0c\xbc\x81\xae\xd3" + "\x91\x69\x8e\xaa\xda\x15\xfc\xbd\x55\x96\x5a\x71\x5c\x99\x70\x27" + "\xf2\x3d\x47\xb6\x6a\x2a\xa0\xc6\xf5\xab\x62\x2f\xde\xe5\x16\x6b" + "\xdc\xc2\x5d\x90\x51\x5d\xed\xea\xa2\xd3\xc2\x1a\x2f\xd2\xc4\x2c" + "\xca\x15\x6a\x67\xc0\x52\x07\x58\x43\x6f\xf0\xd0\xaa\x90\x9e\xb1" + "\x4f\xd2\x63\xd5\x2e\x49\x1c\xe2\x73\x3e\xc5\x00\x7f\x76\x05\x7a" + "\x52\x55\xed\x46\xe1\xf0\x39\xad\xe9\xab\x45\x6f\x2a\xce\x36\x99" + "\x66\x8e\xf4\x66\x81\x4e\xe7\xc1\x13\xdc\xe8\x48\xee\xbe\x1d\x4e" + "\x2d\x09\xad\x91\x45\x89\x93\x7b\x59\x94\x2c\x69\x67\x51\xde\xa4" + "\x05\xa9\xb8\xf4\x96\x83\x28\xe8\xbe\x07\xbe\x04\x93\x3f\x00\x9f" + "\xfb\x5e\x9c\x4f\x80\x12\xc6\x8f\x5c\x04\x2b\x24\x25\x4f\x79\xa4" + "\xb2\xe3\xa2\xca\x82\xb4\x75\xe5\x9a\xaf\xa0\x66\xc2\x17\x9d\xae" + "\xa7\x62\x73\xf3\x20\x73\x1b\x01\x07\x50\x08\xd3\x23\x39\xbf\x50" + "\xaf\x84\xcb\xb2\x31\x57\x7e\x23\xce\xf9\xd6\x92\x35\x96\x64\xa8" + "\xa3\x97\x99\x5a\x02\xaf\x8d\xb9\x3c\x3f\xea\x63\x64\x54\xc2\xdb" + "\x0b\x7e\x48\x47\xcf\xf7\x65\x6f\xa2\xb1\x5b\x9b\x4d\x2b\x55\x8f" + "\x93\x58\xc1\xb8\x6a\xba\xd9\xe0\x4c\x77\x43\x8e\xcf\x2b\xf1\x73" + "\x0a\x19\x40\x12\xb4\x1d\xd6\x35\x97\x7c\x04\xe4\x47\xf9\xb3\x3f" + "\x56\xfe\xf7\x74\x0f\xf6\x3f\xd4\x59\x95\xee\x9f\xe9\x0c\x35\x57" + "\xf3\x29\x2f\x35\x7b\x84\xca\x42\x57\x27\xed\xd1\xaa\x93\x17\x92" + "\xe3\x21\x93\xbc\xcc\x49\x45\x41\xfe\x38\xeb\xbd\xcf\xfd\xab\xbc" + "\x6b\xe3\x46\xc4\x50\x48\xb4\xed\x5c\xb5\x25\x28\xf1\xcb\x4e\x32" + "\x9a\x0c\x46\x34\xc1\xd2\x6c\xac\x34\xe8\x2a\x9d\x8f\xc2\x82\x20" + "\xd7\xf3\x8b\xb6\xe0\x86\xc5\xba\x2c\x4d\xaf\x22\x84\xe4\xef\x59" + "\xe5\x66\x9e\x5b\xdc\x8c\xdc\x49\x2d\x5e\x4b\xd6\x40\xeb\x80\x6e" + "\xf9\x26\xa2\x0c\x0c\x4b\x43\x4d\x1f\x52\x33\x15\x72\xe1\x34\xf2" + "\x4f\x4f\xac\x72\x0d\xd8\x59\x6d\x9b\xc8\xdd\xe6\x66\x55\x08\x53" + "\xf0\x85\xd1\x13\x07\x53\x05\x41\xd1\x9a\xb3\xac\xf8\x45\x48\x95" + "\xe9\x1f\x55\x5a\xe8\x51\xdf\x33\xe0\x13\x58\x14\x3c\xae\x6b\x2a" + "\x8d\x42\x6d\x59\x92\x52\xcd\xe0\x04\xb2\x48\xee\x5b\x5d\xd9\x74" + "\x96\x9c\xe0\xf1\x77\xf7\x0c\xa1\x5c\x66\xba\x1f\xf8\x65\xc8\xf1" + "\x2e\x19\x4b\x6c\xa6\x63\x0b\xf7\x4c\x98\x3d\x2d\xf5\x7d\x04\x50" + "\x03\x69\x93\x3a\x07\x51\xcb\x6f\xf8\x24\xa8\x9c\x9b\x68\x9b\x4f" + "\x60\xf9\xb6\x9a\x69\x13\x7a\x78\x34\x6c\x5d\xfc\x1a\xe4\x75\xb7" + "\xae\x50\x34\xd8\x89\xa4\x6a\x87\x4c\x0b\x77\xca\xb0\xb0\x13\x09" + "\x4b\x7d\xae\xf4\x2f\x4a\xc7\x5c\x15\x8d\x38\x46\x3a\x85\xaa\x06" + "\x78\xe1\x3d\xf2\xdd\x55\xfd\xf3\x03\x26\x80\x13\xc7\x5f\x26\x29" + "\x15\x3e\xdf\x90\x39\xeb\x64\x08\x48\xd0\x8a\xe6\x1c\xa9\x5d\x59" + "\xe9\x47\x4b\x52\x75\x6d\xcf\xae\x8e\xc2\x6c\xe1\x5f\xb3\xb6\x7d" + "\x1e\x4f\xd5\xd6\xf4\xc0\x39\x79\x78\x57\xfd\x97\x84\x3a\x6e\xb8" + "\x48\xd1\xa6\xe5\x98\x13\x9d\xa6\x99\x2f\x35\xd6\x2f\x10\xfa\xcb" + "\xc1\x97\xf6\xf6\x51\xb2\xc9\x2a\x72\x1a\x76\x20\x6b\x52\x06\xaa" + "\xd6\x99\x74\x6a\x03\x68\x55\x77\x46\x2d\x0e\x37\xf0\x4c\xd2\x00" + "\x60\x53\x75\x61\xc2\xad\x82\xce\x3e\x2f\x7a\x84\x80\x6f\x31\x04" + "\x2b\x34\x75\x3c\xf6\x68\x57\xe9\xc3\x2b\x28\x8c\x67\x13\x4b\x19" + "\x15\x4a\x5d\x28\x3c\xd2\x5e\xf3\x0d\xfb\x5a\xa9\x7f\xd6\x7e\xa5" + "\x86\xc1\xc4\x75\x4c\xef\x31\xf0\x2f\xb4\x17\xc6\x6e\x15\xc5\xd0" + "\xbb\xb9\x4c\x34\x91\x4f\xa5\xf1\xa3\x8b\x7d\x56\x6e\x22\x69\xda" + "\x12\x53\xf4\xf0\x1c\x07\x8f\xdb\xb4\xf1\x63\xb6\x2c\xb9\xa0\xfb" + "\x29\xd3\xcb\x42\x2a\x0b\x28\xaa\xc7\x59\x72\xa0\x92\xd1\x3b\x01" + "\x8f\x98\xfb\x0d\xcd\x65\xb0\xce\x12\x3c\x8c\x80\x7d\x0c\xdd\xf7" + "\x0d\x86\x0d\x0c\x39\x07\xff\x2b\xba\x8d\x49\xb0\xbe\x5e\xe6\x8f" + "\xba\x75\xca\x66\x33\xcd\x5a\xf7\xd6\xba\xf2\x12\xaf\x91\x07\x4f" + "\xb5\x5f\x6a\xd4\xfb\x91\xfa\xef\x52\x36\x87\xa7\x67\xa9\xff\x3d" + "\xed\xa6\x15\xa4\x9e\x7b\xec\x65\x8e\x30\xac\x62\xfb\x02\x48\x7c" + "\x2d\x49\x29\xf3\xc5\x11\xc9\xb4\xbe\x48\x31\x6c\x73\xed\x3b\xb1" + "\x70\x1a\x16\x34\x9b\xb3\x85\xd7\x24\x2d\x84\xee\x06\xf7\x8a\x46" + "\x4b\xce\x39\xd3\x64\x23\xdb\x8b\xa3\x59\x28\x14\x9b\x78\x59\x75" + "\x89\x85\x2b\x65\x97\x29\xdc\x0a\xfb\xd1\xa7\x54\x90\x47\x85\xc1" + "\xea\x43\x43\x4e\x3e\x56\x37\xdb\xc2\x42\xe7\x72\x71\xf7\x69\x56" + "\x2b\x5b\x61\xa4\x97\x65\x8c\x40\xf6\xa4\x54\xa0\x9c\xdd\x28\x86" + "\xa1\xc1\xaa\x4a\xe6\x0d\x4d\x7f\xee\x7a\x3d\x5c\x83\x67\x79\xef" + "\x2a\xf7\x81\x1f\x94\x2f\xc4\x19\x16\x4d\x98\x5f\xfd\xf2\x2a\xef" + "\x9d\xe5\x20\x03\xfb\xf2\x05\x9e\xce\xf2\xbf\x68\xd3\x78\x97\xb7" + "\xda\x34\x58\x5e\x35\x69\xc9\x68\xbf\x18\xf9\x8f\xf8\x64\xcb\x3f" + "\xfe\x7f\xd6\xf0\x25\x8c\x5e\x65\x53\xcb\xcb\x94\xbd\x48\x8d\x41" + "\xd9\x32\x77\xaf\xb6\x02\x2b\xa7\x9d\xf5\x46\xb4\x7c\x62\x8c\xca" + "\xad\x16\x9c\x76\xa8\xa2\xdb\x87\xf2\x99\x6a\xd8\x2e\xd4\xb6\x28" + "\x4f\xb1\x4b\x38\x67\xb8\xdb\x36\x30\x45\x16\xf4\x1b\x7c\x31\x69" + "\x06\xa5\x12\x89\x4e\xde\x93\x1a\x08\xab\x14\xe2\xea\xea\x3a\x85" + "\xaf\x48\x5b\x29\x0c\x03\x84\xb0\x16\x46\x07\xf6\x54\x30\xe3\x12" + "\xbe\x71\xa0\xfc\x07\x92\x9a\x5f\x5d\xec\xb5\x42\x86\xac\x57\xef" + "\x72\x05\xc3\x28\x41\xac\x98\x4e\xc3\x39\x9e\x77\x4f\x13\xa1\x3c" + "\xd4\x09\x3f\x84\xf2\x30\x4d\x8a\x2f\x2c\x49\x4a\xca\xc3\x30\x09" + "\xbe\xa0\xf1\x7c\x63\xf9\x03\xb5\x71\x43\xf9\x1a\xcb\xf7\x29\xbc" + "\x4f\x48\x17\x48\xaf\x0b\xf1\x0a\xf2\xbd\x4c\x98\x24\x5a\x53\xf7" + "\x03\x35\x75\x09\x36\xf1\x8a\x4b\x83\x3c\xbb\xce\xed\x7e\x71\xae" + "\xdf\xe8\x5c\xd9\xd8\xea\xf5\xc8\x61\x73\xa8\xcb\xcf\x86\xc9\x9c" + "\xaf\x41\x67\xaf\xf3\x42\xfe\x7c\x61\xe7\x56\xc1\xed\x49\x92\x46" + "\x3f\x10\xc1\xa6\x78\x7c\x36\x50\x41\x7f\x2f\xe1\x51\xdd\x0b\x73" + "\x88\x63\x54\x1f\x74\xb0\x2b\x6c\xcd\xbc\xdb\x5d\xf8\xc4\x1b\x8c" + "\xb3\xba\xc7\x83\x5f\xd8\x55\x82\x37\x74\xa7\x74\x2f\x01\x69\x78" + "\xa8\x0c\x69\xc3\x2e\x4c\x16\xea\xc2\xa6\xd3\x3b\x45\x2e\x1d\x55" + "\xac\xa6\xb7\xfa\xfa\x93\x7a\xab\xec\x4c\xc7\x05\xb1\x15\x52\xe7" + "\x92\x65\xa0\xa8\x32\xe8\x4f\x55\x66\x1f\xdd\x4f\xdc\x46\xa6\x08" + "\x91\x29\x33\xee\xb8\xb4\xa2\x9b\x1c\x6f\x22\x8c\x59\x2b\xab\x48" + "\xb5\xe3\x4e\x18\x3c\xa6\x93\xdf\xa5\x1d\xa1\x9b\xae\x07\xf2\x22" + "\x82\x44\xea\x13\x94\x7c\x68\xf7\x4d\x38\x70\x45\x5e\x61\xac\x6b" + "\x51\x38\x8d\x7e\x18\x4f\xa6\x9a\xdc\x9b\x5a\xac\x25\xec\xc2\x7b" + "\xc0\xa9\xee\x81\xe4\xa5\xf0\x64\x1f\xe1\xe8\xd6\x5b\x32\xdb\x31" + "\xa2\xaf\x5b\x97\x69\x71\x42\x64\x17\xb5\x0d\x78\x95\xf2\xec\xea" + "\x7e\xe5\xd9\xc5\x0a\xe5\x59\x94\x54\xcd\xf2\xba\x6b\xc2\x0a\x84" + "\xcb\xca\xf5\x04\xab\x86\x28\x8a\xdd\xa1\x1f\x9b\x63\x2d\x4d\xbf" + "\x82\x8a\x19\xa3\x39\x31\xb9\xa6\x6e\x23\x6a\x80\x26\xdd\xe5\xa6" + "\x59\x42\x0a\x15\xf7\x0a\x48\xf1\x54\xcf\xc1\x61\x52\x9a\xec\xf5" + "\xea\x64\x93\x1b\x18\xe4\x7c\x6d\x26\x47\x21\x5e\x6c\x23\x96\xc5" + "\xa3\x82\xb4\x09\x06\x23\xd0\xec\x56\x1f\x47\x1b\xcf\x1b\x26\xed" + "\xee\x36\x95\xd3\xb7\xb9\x17\x4a\x10\xd6\xf9\xf8\x03\x10\x92\xa1" + "\x39\xdc\xba\xef\xf3\xd2\xb9\xce\x57\x1b\xb9\x38\xaf\xe6\x53\x9c" + "\x4e\x0c\xbf\xbd\xcb\x7e\x1e\x49\x31\x34\x73\xcb\xd2\xde\xd5\x1a" + "\x30\x4b\xb9\xd0\x4a\x00\x5a\x07\x54\xef\x70\x79\x40\xd7\x39\xd0" + "\xe7\xd6\x31\x39\x4e\xab\x77\xd0\x30\xc1\xd3\x89\xb0\x3d\xd0\xd1" + "\xf3\x8d\x25\x59\x54\x4b\x6e\xf7\x5b\x99\x3e\xcd\x57\x7c\x69\x64" + "\x82\xa3\x8a\xd7\x92\x01\x47\xad\x27\xca\xd3\x5f\xe5\xf4\x93\x41" + "\x31\xbf\xf9\x52\x88\x39\x5f\xb1\x46\xd6\x2b\x8b\xa4\x1d\xdb\xa6" + "\x2b\xb0\xad\xa6\x42\x6d\xc7\x29\xd1\x65\x5e\xef\x72\x5b\xcc\x72" + "\x0c\x00\x0c\x43\x41\x01\xa6\x51\xa5\xfd\x50\x4c\x6c\x40\x66\x9c" + "\xdb\x2a\xe5\xaf\xa3\x61\x65\x2b\x68\x62\xee\xc4\xd9\xdd\x0a\x2c" + "\x53\x5b\x07\xd8\x8c\xf3\xfd\x68\x40\x87\x5c\xef\x41\xf2\xec\xbf" + "\x1a\xc9\xdb\xbd\xdc\x16\x89\x96\xd0\x6a\x33\xe8\x28\xc7\xa8\x32" + "\xda\x66\x75\xb4\x2d\x34\x50\xf2\x0a\xb1\x34\x4a\xe4\x06\x86\xf8" + "\x15\xbf\x4f\xf3\x2c\x99\x10\x90\xb9\xe5\x23\xde\x72\x46\x64\x9c" + "\xce\x94\xc8\x67\x3a\x92\x54\xc6\xca\x07\xcb\x8a\xe7\x89\xd7\x9b" + "\x25\xfe\x65\x52\x34\xee\xc7\x96\x52\xac\xb4\x8b\x94\x57\xc6\xea" + "\x0d\xa5\xcc\x7f\x70\x41\xaf\x97\x86\x49\x69\x41\x3a\x4e\x0a\xac" + "\xfb\x30\x8c\x0f\x2a\x7b\x3d\x9e\x7f\x29\x5a\x7a\x62\x59\x43\x24" + "\x63\x33\x4f\x9a\x38\x0e\xed\xd0\xab\xd8\xf1\xc6\x42\xd6\xc9\x40" + "\xfb\xe0\x01\x76\x60\xc5\x36\xa0\xce\x13\xab\xa3\x7c\x15\x6d\x78" + "\xee\x65\x75\x07\xbc\x71\xc2\xd6\xdb\xf4\x76\xfc\x66\x1e\xc6\x14" + "\x2a\x84\xaf\x72\xd2\xd3\xba\xf2\x42\x3b\x2b\xd7\xc4\xce\xcd\xcd" + "\x1d\x64\x3a\xee\x90\xaa\xee\x48\x7d\x2e\x9d\x7f\xd0\x78\xf8\x48" + "\xae\xb4\x66\x91\x38\x0b\xbe\xae\x10\x89\xf9\x2a\x2f\x4f\x75\x92" + "\x0d\x2f\x9d\xc3\x43\xe7\x3f\x27\xc8\x66\x6d\x82\xec\x24\x01\xa6" + "\xbe\x24\xc8\xba\x71\x45\x43\x8d\xf2\xdd\x1e\x9e\xb5\xad\x05\x84" + "\xa8\xa6\x94\xbf\xa0\x78\x63\x35\x29\xb6\x22\xb4\x11\x72\xaf\x74" + "\x25\x17\xbe\xd6\x6d\x70\x2b\xf1\x52\x65\x6f\xc5\xaf\x5a\xde\x7b" + "\x13\x07\xce\x28\x4d\xe6\x22\x3c\xce\x9e\x90\xf7\x4c\xc2\x4c\xc8" + "\x7b\x7b\x28\x8c\x4d\xe3\x92\xbc\x77\x06\x65\xc5\x55\x75\x0e\x7b" + "\x0d\x59\x67\xe1\x85\xc3\x6e\x13\xe9\x32\xf2\x6e\xee\xb0\x9b\x58" + "\xbe\x1c\x50\x5d\xd7\x49\xf0\x1b\x3b\xd1\x62\xe0\x8c\x1c\x18\x2d" + "\x31\x90\x12\x8e\xb5\x14\x49\xaf\xa7\x46\x8a\xa4\xf7\x97\x99\x96" + "\x12\x67\x28\x25\x4e\x63\x48\xfc\x94\x59\x8e\x24\x26\xf9\x20\xa1" + "\x64\x74\x8c\x34\x89\xb7\xb9\x92\x28\x37\x12\x31\x72\x0c\xfe\xf3" + "\x4a\x3e\x93\x8b\xc7\x91\x7c\x91\x8e\x1d\x6f\x74\xb9\xed\x21\xf9" + "\xa5\xc0\x70\x13\x03\x34\x9d\x38\xc9\x1b\x04\x40\x0d\xc9\x01\x9d" + "\x79\xd0\xa1\xe8\x3c\x7a\xf5\xf5\xeb\x2f\xec\x26\xc1\x5d\x7f\x92" + "\x17\x00\xee\x5b\x12\xa0\x39\x82\x5b\xb5\x22\x42\x31\xbd\x45\x71" + "\x34\x0e\xaf\x2e\x42\x68\xf0\x9b\x79\xd9\x86\x1f\x87\xbd\x4f\xaa" + "\x5f\xac\x99\x57\xf4\x1b\x59\xdd\x07\x87\x3d\x4f\x02\xd4\x79\x39" + "\x78\xad\x24\x82\xc2\xa7\x27\x09\x87\x0f\x56\xa6\x48\xf2\x75\x41" + "\xf6\x44\x66\xca\xcb\x25\xc5\xc7\xf2\x45\x7e\xff\xb5\x5c\x44\x55" + "\x61\x7d\xc1\x9e\xca\x22\x74\x0f\xa5\x2a\x20\xae\xb2\x94\x95\xbc" + "\x94\x25\xec\x44\xdf\x2e\xcf\x3e\x25\xe8\xfe\x0a\x73\xfa\x0e\x71" + "\x59\xc6\xe0\xff\x01\x02\x36\xc6\x30\xde\x47\xc7\x5e\x74\x44\xd1" + "\x77\x89\x39\x95\x60\xc4\x0e\x43\xc3\x2e\xc6\xcd\x74\x46\xb7\x40" + "\x29\xa2\xa1\xa3\xe2\xfe\xf6\x77\xd9\x6f\x2a\xfa\xbc\x70\x16\x95" + "\xce\xb1\x3a\x6a\xaf\xf2\x43\x2e\xd8\xb3\x52\x83\x0d\xce\x29\xa6" + "\x03\xca\xa1\xc5\x88\xfc\xba\x07\x2a\x6c\x8e\xec\x80\xe3\x86\xc8" + "\x73\xc9\x4a\xee\x14\x65\xf2\x9c\x72\xa7\xa4\x0a\x41\x1c\xfc\xb3" + "\x4b\x59\x1d\xad\x34\x2a\x0b\x1b\xa7\xdb\x77\x3f\xa5\x5c\x90\x37" + "\x53\x5a\x8e\x2b\x8a\xcf\x28\x71\x10\xe6\xd8\x15\x53\x07\x30\xe3" + "\x05\x6c\xa6\xa4\x18\xab\x88\x08\x1c\xa3\x86\xde\xdd\x8d\x84\x3e" + "\xac\x2d\x53\xa9\xa4\x87\xbc\xd4\xae\xd1\x12\x1f\xd3\xf2\x08\x94" + "\x13\x25\xc6\x86\x16\x49\xf7\x88\xec\x3f\xee\x17\xd9\x9f\xad\xf2" + "\x77\x89\x8d\xc8\x5e\x62\xa6\x7e\x46\x72\xaf\x1e\xdd\xf5\x5a\xa5" + "\x76\x1d\x89\xa0\x6c\xe6\x29\x7d\x2d\x02\xc5\xb7\xb1\xb2\xc7\xc0" + "\xca\x34\x88\x30\x96\xb7\x89\x15\x6b\xdb\xf5\xd8\x83\x1d\x16\x35" + "\xe7\x2f\x66\x46\xbb\xd6\x7f\x4b\xbc\x0a\xf7\x52\x3a\x12\x58\x8e" + "\x25\xa9\x8f\x07\x2a\xb3\xbe\x1d\x74\x6e\xc1\xab\x62\x14\x1d\x72" + "\x73\x6b\xf2\xe0\x2a\xf6\xc7\x88\x8f\x88\x93\x15\x19\xe0\xf6\x1e" + "\x79\xea\x76\x85\x8c\x70\x8a\x80\x2d\x2c\x59\xb3\x61\x56\xd7\xff" + "\xd2\xb4\x2a\xee\x12\xc3\x1e\xe4\x78\x9d\x2c\x69\x75\xab\xde\x2d" + "\x62\x89\x2a\x96\x58\xbc\x75\xe4\x31\x9f\x06\x9f\x16\x75\xbd\xc5" + "\xf2\x01\x0b\x89\xad\x68\x41\x5f\x93\x51\xed\xe0\x72\x15\x36\x9e" + "\xb4\x63\xe3\x83\x11\xef\x4f\x62\xd7\x78\xdc\x8a\x5e\xf7\x80\xb0" + "\x11\x7d\xa4\x94\xb9\x0a\x83\x5a\x8b\xac\x44\x58\x15\x26\x86\x7d" + "\xef\x34\xc5\x3a\x31\x9d\x61\xf2\x0e\x52\xa7\x1d\x47\xf7\x05\x8e" + "\x96\xcf\xca\xe3\xca\x0f\x04\x5a\x94\x32\xd4\xd9\xf2\xdc\xdc\x62" + "\x62\x4e\x99\xc3\x6a\x7f\xe6\x5a\x39\x9e\xbe\xe5\xc7\x4a\x6c\x56" + "\x66\xac\xdb\x61\x70\x5b\x02\x36\xbc\x89\x5b\xa3\x33\x98\x2b\x9e" + "\xab\x21\x1a\x64\xd7\xd6\xae\x23\xe0\xfe\x17\xa8\xf3\x93\x57\x77" + "\x81\x0c\xd0\xd8\x13\x47\x0a\x0a\x26\xa0\x3a\xc6\xe5\x28\x13\x40" + "\x4b\xec\x38\xce\x5a\x85\x0e\x47\x47\x7e\xff\x25\x5b\x53\x9c\x58" + "\xa6\xda\x5f\x13\x95\x99\x60\xf6\x12\xa5\xbe\x66\x9d\x24\xbd\xc4" + "\x40\xcc\x42\x1b\x5b\x9a\xac\xb2\x2f\x83\x35\x05\x81\x23\x28\xac" + "\xd3\x53\x5f\x48\x8b\xc2\x33\xb7\xf9\x13\xb4\x6d\xe6\x79\x5b\xa6" + "\x0a\xa6\xdc\xd6\x9c\x99\x71\xb7\x1c\x26\xc1\xaa\xa3\xae\xfa\x7a" + "\x63\xf1\x29\x6e\x79\x5d\x05\x68\x7a\xb5\x16\x11\xb9\x0d\x69\x92" + "\x58\xde\x45\x2b\x8b\x4c\xeb\x23\x6e\xa5\x2d\x5a\x5f\x8d\x50\x73" + "\x3b\x11\x30\x21\x59\xb2\x51\xa9\x92\xe8\x23\xfe\x4f\x93\xd6\x52" + "\x47\xa6\xd4\xcb\xf6\x52\x6f\x4c\xa9\x4f\xed\xa5\x5e\x9b\x52\xef" + "\x92\xae\x39\xee\x58\x89\xf1\x6d\xc6\xdd\x14\xec\x7b\x1b\x45\x0e" + "\xa0\xdc\x91\x58\x3d\x32\x90\x00\xe2\x04\xb2\xd5\xdd\x55\x6a\xa4" + "\x8d\xc4\xeb\xf1\xde\x87\xc4\x7f\x9e\xf8\xbc\xf7\x35\xf1\x9f\x24" + "\x45\x85\xbe\xb7\xa9\x83\xc4\x46\xfe\x36\xf1\xa4\xfd\x86\x40\x2f" + "\x2e\xba\x50\x70\x5f\x4a\xce\x35\x2f\x4a\x38\xd2\xae\x45\xe8\xd9" + "\x91\xe4\xd5\x99\xf1\xaa\xd7\x0f\x47\xa7\x1e\x83\xa1\xe5\x2b\xc1" + "\x83\xc7\x58\xa0\xbc\xc5\xfa\x42\xc5\x55\xc6\x3e\x8d\x19\xf6\xa5" + "\xbb\x1a\x51\x0d\x06\xd9\x97\xa8\xb5\xdd\x8d\xa9\x6e\x9f\x31\x77" + "\x14\x97\x96\x84\x4a\x2d\x0a\x56\xb9\x05\x5b\x7f\xa8\x00\xa5\x3a" + "\xa0\xe0\x58\x14\x03\x7d\x93\x63\x79\x2f\xae\x7a\x2f\x09\xa1\x21" + "\x20\x58\x22\x5b\x4a\xd1\x27\xbe\x77\xb2\x26\x03\x75\x65\x6b\x60" + "\xfa\x13\xfb\x0e\xef\x40\x0d\xd7\xba\x15\xc6\xba\x06\xf4\x51\x31" + "\xf0\x18\x05\x19\xc2\x80\x40\x95\xf3\x56\xb6\x40\xc2\xc8\xdd\x16" + "\xfd\xe7\x50\x6d\xf1\x1a\x1a\x46\x5f\x11\x77\x09\xb2\x39\x5e\x57" + "\x20\x98\x1a\x5e\xd8\x5a\x3d\x52\x9c\xbd\x4f\x98\x8d\xf6\x52\x61" + "\x16\x05\x8f\xdf\xa0\x7d\xd1\xeb\x66\xda\x36\x14\x22\x4f\x08\x93" + "\x0e\x83\xbf\x89\xd9\x7a\x66\xf4\x69\xdc\xf3\x14\x3b\xf8\x57\x1d" + "\x36\x7e\xc2\x5f\xa3\x41\x39\xc5\xff\x9c\x72\xca\x78\x59\xc8\xde" + "\x93\x73\x0c\xc2\x30\x53\x9b\xb4\x3c\x45\x0c\x63\xbf\x4e\xd0\xd3" + "\x23\x17\x27\x8e\x64\x14\x65\x3c\xcc\x06\x4f\xb0\x44\x5f\xc7\xcd" + "\x8e\x88\xee\x4d\xd2\x14\x6e\x4c\x99\x90\xde\x95\xe2\xcc\x48\x37" + "\x8d\xe8\xee\x2e\xd2\x73\xad\xe5\x5c\xbc\xa8\xeb\x91\xa7\xee\xe5" + "\xd2\x87\xff\x91\xda\xcc\x90\xaf\x1c\xbd\x09\xf3\x89\x8b\x96\x61" + "\x2b\x8e\x66\x24\xe7\x97\x1c\xde\x4a\xc9\x86\x41\x6e\x6e\x0b\xb8" + "\xbf\x0c\xbd\x2c\x80\xe9\x48\x5a\xcb\xc0\x8e\x2f\x0b\x89\x32\x62" + "\xeb\x50\xd4\x4f\x79\x9c\xd2\x51\xc3\x66\xc8\x05\x08\xb9\xbb\x3b" + "\xe9\xb2\x2a\x70\xf8\x4e\x2c\x5b\xed\xc0\x7a\x07\xe0\x9b\xb5\x7b" + "\xb1\x56\x41\x12\x56\x39\xfa\xc8\x66\xe7\x75\x37\x44\x88\x6e\xbc" + "\x9b\xb5\x43\x8f\x32\x72\xb2\xc7\xa2\x0a\xbb\x1f\x7a\x3a\x48\x1a" + "\xea\x9f\xf6\xe6\xd1\x4b\xa1\x0d\x7b\x4e\xe7\x11\x53\x5b\x85\xfb" + "\x50\xd7\x5b\x8a\x4d\x2f\x86\x7f\x96\xb0\x28\xe8\xdf\x26\xec\x26" + "\xb6\x83\x41\x60\xae\xc4\x06\x8c\x64\x77\x77\xc7\xf1\x47\x87\x34" + "\x68\x73\xd2\x91\x32\x84\x0a\x5f\x32\xc9\x85\x28\xec\x5b\x92\x3e" + "\x83\x44\x29\xe0\x6b\xd5\x80\x95\xa6\x84\xfe\x09\x10\x8f\xaa\x96" + "\xd5\x8a\xb1\x0c\x68\xf6\xae\x25\x80\x04\xf6\x3a\xa2\x1b\x61\xf3" + "\x64\x6e\x05\xbc\x44\xdc\x94\x72\x38\x3c\x54\x09\x96\xf1\xbb\x4a" + "\x2c\x61\x8d\x30\xa7\xa9\x1e\x21\xf2\xb1\x54\xd1\x9f\x9a\x7e\xf9" + "\x13\x0e\x8a\xbd\xeb\x34\xce\x99\xd7\xad\x15\x1e\xf2\x87\x16\x7e" + "\x99\x41\x49\x43\x29\xaa\xd9\x07\xc9\xca\xec\x97\xd4\x2f\x5b\xef" + "\x5d\xd7\x55\xb3\x76\x72\x58\x51\x35\xbf\x53\x13\xff\x2e\x0b\x1c" + "\xb4\x81\x21\x1f\xec\xb0\xef\x89\x0a\xba\xf1\x36\x56\x1a\xd9\x6f" + "\xb1\x3c\xe9\x87\x43\xeb\x50\xb0\xa9\x77\x78\x5e\xef\x63\x12\x2c" + "\x89\x75\x39\xa6\xed\x08\x36\xa8\x70\xba\x6d\xaa\xa2\xc5\x51\x3e" + "\xaf\x6e\x3c\x1f\xf1\xf8\x59\x94\xc9\x93\x36\xa8\xf9\x4b\x81\x25" + "\x97\x22\xa2\x2f\x6e\x41\x2e\xd8\x1f\xe5\x06\x94\xda\xad\x5c\x71" + "\xfd\x00\xbb\xd5\x8a\x39\x65\x66\x1a\x33\x69\xa5\x36\x5d\xa5\x73" + "\x53\xba\x40\xa5\x73\xfb\x91\xb5\x1e\x74\xaf\x1e\x73\x6f\x39\xbb" + "\x6e\x14\x5f\xd9\xde\x1c\x95\xd9\x7c\x54\x33\x81\x0a\x56\x6d\x95" + "\xee\xeb\xe3\xfd\xba\xaf\x3f\x56\xe8\xbe\x60\xca\x68\x09\xe5\x0d" + "\xf6\x3f\x0d\x1c\xbc\x42\x22\x2f\x9f\x3c\x3a\x0f\xa9\xcb\x6e\x83" + "\xd8\xa0\xe3\x90\x54\x3c\xb9\x35\xfc\x37\x37\x5f\x62\x20\x20\xc6" + "\x2b\x9a\x99\xb7\xb1\x16\xaa\x67\x0b\xa4\xb8\xe2\x03\x44\x6b\xb2" + "\x1a\xbf\x21\x07\x38\xa1\x9d\xf9\xe9\xfe\xda\x1d\xab\xcb\xf3\xf7" + "\x35\x5d\x0e\x8f\xc2\x64\x4f\xaa\x6a\x1b\x33\x91\xe2\xdc\x4e\xed" + "\x6c\xff\xb7\xb8\xaa\x36\xd0\xc1\x59\x1a\x50\x41\x88\x47\x26\xac" + "\x8b\x19\xb0\xb6\x39\x6b\x67\x4d\xa5\x23\x11\x82\xaf\xfa\xc6\x19" + "\x45\x57\x20\x99\x4a\x59\x82\x2c\x5a\x25\x88\xe9\x64\xd6\x3a\x55" + "\x55\xf5\xd9\xf7\xa4\x16\xbd\xa1\x68\x12\x39\xee\x31\x77\x5b\x8b" + "\x4c\xd8\xb7\xad\x04\x32\x72\x2b\xfc\xb2\x3d\x3e\x14\x6c\x5a\x4d" + "\xd2\x2d\xa8\x67\xd5\xdd\x91\xf5\xe6\xea\xc0\x14\xcc\x09\x53\xd8" + "\x55\x06\x8d\x45\x4e\xf0\xaa\x99\xfa\x04\xed\x16\x75\x6c\xc9\x65" + "\x3c\xc3\x7a\x97\xda\x40\xec\xa9\x93\xe0\x9f\x91\xc8\xe2\xee\x83" + "\x2a\x08\x87\xbd\x10\xd6\x3d\x2b\x65\xc4\xc9\xbc\xf7\x02\xcd\x7b" + "\x79\x18\x7c\x91\xd7\x50\x6c\x2c\x47\x1c\x03\xe9\x86\xda\xae\x06" + "\x7c\xc1\x85\x4c\x8d\x43\x69\xeb\xcb\x42\xac\x3d\xbd\x0e\xd3\x91" + "\xc3\xde\xc7\x82\xba\x8b\xb7\x28\x14\xe6\x0f\xaa\x0f\xa9\x2e\x36" + "\xa7\x28\xa0\xbc\x66\xae\x54\xc4\xd0\x4a\xbb\xa4\x8e\xf0\xa9\x48" + "\xe4\xb3\x7f\x2b\x89\x24\x0f\x77\x43\x20\xa1\x85\x1c\x06\x06\xd2" + "\x95\x76\x06\xbf\x9f\x58\x46\xe1\xbd\xc4\x32\x0d\xdb\x89\xe5\xe7" + "\xa4\xa0\x93\x0b\x25\x65\xab\xec\x19\xde\x92\x6e\x4f\xb0\x86\x96" + "\x52\x41\x2a\x87\x44\x03\x31\xad\xfa\x16\xa4\x42\x6f\xe9\xc8\x0e" + "\x95\x37\xf9\x3c\x34\x47\x07\x45\xd8\x8a\xa7\x62\xee\x4d\xe4\x04" + "\x13\x39\xac\x56\xf6\x65\xed\xb0\xa1\x01\xe7\x2e\x50\x31\xde\x3a" + "\x28\x1d\xd3\xc3\x86\x7f\xbd\xb7\x5e\x51\xeb\x95\xd4\x28\xd8\xf8" + "\xc1\x2b\x6a\x05\x12\x87\x04\x23\x0b\x7c\xab\xaa\x8f\x84\x22\x95" + "\x08\x50\xe5\x0d\xfc\x7f\xf5\x20\xcf\xa8\x53\x8f\x94\xc7\x8d\xc8" + "\x89\x37\xb3\xf5\xb8\x82\xb6\xdf\x8e\x3f\x41\xf0\x3e\xee\x65\xfd" + "\x4c\x1f\x94\x1d\xe8\x8f\xc8\xeb\x4d\xc9\xa6\x35\xb8\x2e\x15\xf7" + "\x1d\x87\x1a\x64\x4d\x0d\x00\xef\x39\x89\xc6\x39\x7c\xd8\x7b\x1f" + "\xfb\x59\xa8\xd7\xfe\x73\xb4\xd6\xd3\x9d\xd0\xdb\xc0\x9c\xb2\x35" + "\xf9\x2c\x2c\xa2\xf0\x1a\x65\xdb\x94\x02\x8f\x19\xe0\xe6\xb7\xdb" + "\x6d\xb2\x9a\x7e\xc0\xcf\xec\x84\x98\xa3\x66\x71\x84\x2a\xd2\x6d" + "\x19\xd7\xe1\x09\x94\x99\x01\xdc\xa2\x58\xa6\x28\xa3\x21\x2f\x2d" + "\xc9\x4a\x10\xa9\xa0\xa4\x75\x2f\x00\xea\x1f\xd0\xdf\xda\x6d\xd8" + "\x72\xaa\x77\x6c\x89\x68\x2b\x54\x5c\xa9\x8e\x74\x50\x15\x19\x80" + "\x27\x8a\x63\x9e\x52\x89\xed\xdc\x53\xe6\x96\x12\x35\x37\x0d\xaa" + "\x98\x2a\xc2\xf0\x8d\x5a\x9c\xa7\x53\xe2\xf9\xf5\x69\x23\xd9\xb0" + "\x15\xf9\xb8\xbc\xeb\xc6\x9c\x61\x84\xca\xad\x7c\xe5\x37\xcf\xe3" + "\x07\x16\xfc\x10\x03\x4c\xa9\x20\x76\x9e\x6e\x09\xd2\xd0\xa3\xb7" + "\xfb\xfa\xe3\x24\x4a\x15\xa5\xda\x79\xd0\x67\x31\xbf\xa7\x38\x8d" + "\xe0\x9e\x32\xd4\x79\xaf\x88\x32\xa5\x0e\xa3\xd0\xf4\xd5\x48\xb5" + "\x12\xf4\x8f\x77\x8b\x3a\xdc\xd5\x01\xec\x10\x0f\x78\x91\x1b\x59" + "\x55\x5b\xd5\x3e\xce\x92\xe3\x5d\x47\x65\x53\xcc\xc4\x11\x8f\x9d" + "\xa2\x65\x36\x2b\x57\x80\x94\x3b\xc9\xd2\x20\x11\x77\x9d\x25\x55" + "\x07\x66\x7d\x21\xa9\xc1\xb7\xc7\x89\x8d\x9f\x5b\x51\x39\xa8\x5f" + "\xe3\xa0\x12\xa6\x95\xe3\x61\xeb\xe5\x9c\x49\x83\xa6\x17\x3e\x4b" + "\xe4\x50\x33\x93\xe7\x72\xf6\x65\x63\x99\x35\x5c\xb1\x19\x02\x21" + "\x9d\xdf\x7c\xd1\x6e\x8a\xa4\xc9\x7b\x1d\xc6\xd1\x1c\x99\x0c\xa0" + "\x1f\x56\xf0\x64\x3c\xf7\xd5\x3c\x05\xa5\x4b\x7d\x64\xf3\x4d\x5d" + "\x83\x8d\xa9\x49\xdf\x28\x23\x31\xb7\x61\xa4\x5d\x7b\xa4\x4f\xb3" + "\xa4\x41\xc3\xd9\x9a\x48\xfa\x81\xa5\xea\x4a\xc9\x65\x24\xbb\x23" + "\x98\x5e\x03\x10\xcd\xaa\x37\x9b\xc7\xb0\x22\x16\x35\x42\x32\x7d" + "\x10\xb0\x70\x40\xab\xf2\x85\x9f\xde\x33\xdc\x20\x97\xdc\x92\x1c" + "\x9a\x8f\xaf\x57\x23\x4f\x7b\xa8\x68\x53\x84\x3c\x01\x36\x8b\x44" + "\x5e\x87\x85\x21\x31\x70\xf2\xed\x03\xf1\x6e\x61\x88\xbe\x42\x61" + "\xc9\x35\x6b\x1a\x1a\xd7\xac\x45\xa8\x1c\xae\x3e\xe0\x29\x1b\xf9" + "\xa6\x8d\xaa\x22\xf9\x7b\x66\xdc\xb0\xf0\xfd\x63\xa6\xbc\xb0\xf0" + "\x6d\x14\x6a\x27\x2c\x7c\x1d\xc3\xab\xb8\x7b\x4c\xbc\xcf\xc3\x5a" + "\x40\x52\x4c\x3e\x0f\x6d\x69\xbe\x94\x35\xb3\x18\xcb\x52\xc6\x65" + "\xa8\xdd\xbb\x3e\x14\x1b\xcb\x21\x8e\xed\x6b\x2c\xc7\xbf\x9d\x50" + "\x2c\xbb\xc3\x50\x69\x0e\x9e\x6a\xcd\xc1\x11\x57\x65\xa4\x22\x9b" + "\x5d\x21\x44\x28\xa9\x23\x8a\x5c\xe8\x84\xed\x11\xa0\x77\x02\xf2" + "\xfd\x9e\x49\x22\x45\x00\x3b\x0b\x1b\x5c\xb8\x04\xb4\x07\xbf\xb0" + "\x5b\xe0\x58\x95\xd6\x01\x79\x5a\xcd\xdc\x5a\x01\x70\x0a\x76\x6d" + "\x97\x6a\x70\xfc\xa9\xf2\xbb\xf5\x48\x37\x8a\xd9\xdd\xf8\xb9\x13" + "\x3e\x62\x54\xd6\xb1\xef\x8b\xb0\x39\x40\x8c\xea\x5d\x50\x3d\x49" + "\xf3\x04\x32\x0e\x20\x43\xef\x84\x5a\x52\xa8\x15\x25\xb6\xec\x0c" + "\x72\xec\x63\xbb\x88\x22\x86\x9d\x6e\xf5\xc5\x16\x6e\xff\x4f\x42" + "\x11\x2e\xe0\x1d\x6f\x8f\x5b\xb3\x92\xf3\xbe\xbd\x9f\xf3\xbe\x5e" + "\xc1\x79\x27\xa1\x72\xd1\xc9\x9b\x7d\x74\x5a\x3c\x74\x72\x4f\xab" + "\x37\x4a\xc5\x8d\x73\xce\x03\x4f\xa8\x7c\xcc\xaa\xc7\xb2\xf3\xa2" + "\xe9\x24\xb5\x5b\x81\xef\x6e\xeb\xb1\x8f\x2a\x7c\x95\x0a\xb2\xe2" + "\xee\x50\x12\xbe\xbf\xc6\x26\x6e\xd0\x57\x98\xec\x03\xc2\x22\xb7" + "\x8a\x2b\x62\xec\x56\x8c\x0b\x78\x35\xd1\x0f\x3c\xcd\x71\xad\xff" + "\x35\x98\x2c\xc2\x87\x40\xe0\xd1\x7d\x10\xd0\x78\xdb\xb1\x25\x91" + "\xfb\x3c\x30\x9e\x6a\x50\xb4\x45\xce\xc5\x41\xbe\x46\x72\x50\x0b" + "\x9a\xdb\x70\x1e\xdb\xab\x45\x65\x94\xc7\x36\x3f\x94\xaf\x49\x10" + "\xeb\x16\x53\x2b\x20\x37\xca\xa1\x95\xa3\xaa\xba\xee\x08\x49\xe2" + "\x5d\xd9\x81\xa7\x3c\xb9\x45\xe3\xa2\xd7\xb1\x9e\x60\x55\xfe\xc8" + "\xdc\xa5\xa5\x36\x2d\x6b\xc5\x54\x0f\x6d\x05\x68\x1d\x00\x45\xa9" + "\x19\x8b\x60\xd8\xed\x3c\x83\x76\x6c\x89\xae\xac\xf0\x41\x8e\xa4" + "\x84\x68\xcb\x0a\x2a\x6b\x39\xae\xe2\x51\x55\x2e\xa6\x14\x34\xab" + "\x4e\xc8\x08\x56\x40\x19\x51\x9d\x8b\x69\x82\xd7\xa3\x36\x69\xd6" + "\xaa\x3e\x39\x92\xd3\x7c\x80\xf7\x8e\xdc\xb7\x1b\x8e\x2a\x95\xca" + "\xc2\xea\xc5\x8b\x3a\xe5\x2e\x55\x2b\x4b\xab\xfb\x0c\xc8\xf7\x6e" + "\x43\x44\x91\xbd\xb0\xb4\x1b\x78\x14\x28\x85\xdb\x1f\x79\x3f\x79" + "\x58\xe8\xa9\x75\x49\x7c\x3d\x56\x4d\x49\x1f\x61\x10\xb4\xb6\xe8" + "\x1a\x36\x83\xd6\xd8\xd1\x61\x03\x5d\x6c\x8e\x84\x90\x95\x06\xdb" + "\xb4\x08\x9b\x23\x2c\x35\x04\x36\x9a\x91\x8e\x43\x18\x54\x85\xe0" + "\x3d\x0d\xeb\xc1\xb6\xd4\x66\x2d\x97\x95\x3c\x35\x58\xd2\x0a\xcb" + "\x41\x3d\x91\x6b\xc4\x0c\x9b\xcc\xb8\xcc\x3e\xbf\x3d\x0e\x59\xe9" + "\xec\x12\x91\x37\xeb\xa8\x54\x09\x64\xe6\x34\x4b\x69\x25\x37\x46" + "\x69\x3a\x17\x83\x69\x8a\xb9\x35\x0f\x51\xce\x24\xc5\x6f\x39\x07" + "\x25\x1d\xa9\x0d\x51\x64\xdb\xe4\x70\xad\x27\xa9\x81\x44\x73\x13" + "\x96\xe3\xc1\xf2\x5e\x50\x94\x61\x56\xa9\x4a\x0e\x55\x40\x17\x6d" + "\xdf\xa8\x1f\x31\xa4\x77\xb9\x72\xe5\xc6\x30\x66\xe7\xfe\xb5\x28" + "\x57\x6d\xc3\x62\x6c\x5e\xe5\x62\xed\xde\x5b\x96\xd6\xee\xbd\x67" + "\xae\x35\x89\xa7\x21\x12\x0e\xb4\xed\xd1\x72\x6f\x32\xdb\x34\x89" + "\x51\x7b\x84\x04\x33\x11\xc6\xb5\xb6\xed\x4b\x05\x42\xeb\x0a\xfb" + "\x9e\x09\xe2\xfc\x67\xc2\x83\x1c\x86\xf0\xe5\x8a\x89\x5d\x19\x02" + "\x3f\x7c\xe8\x29\xc9\x32\xb1\x13\xf7\xce\x3f\xbe\x47\x3d\x24\x4a" + "\xa9\x40\x0f\x2d\x8a\x81\x4f\xdd\x8c\x22\x6b\x89\xd9\xaf\x20\x7a" + "\xa3\xaf\x17\xc7\xdb\x68\x8d\x2e\xb6\xa5\x5a\x5d\xe5\x6a\x62\x7a" + "\xc4\xdb\x59\x8c\xe5\x3d\xec\xc9\x4f\x7c\x5b\xed\x5c\x56\x94\x77" + "\x85\xca\x2b\x6b\x74\x9f\x26\xda\x69\xd3\x9a\x8a\x2b\xdd\x5f\x98" + "\x23\x35\xcd\x06\x65\x2d\xe5\x4b\x16\xf0\xc7\x74\x1b\x62\x86\xa4" + "\xd0\x28\x69\xe8\xdc\x87\xd4\x44\x52\x7c\x5a\x5f\xbd\x89\xf0\xb4" + "\x8d\x27\x31\x23\x3a\x4b\xcb\xe9\xbc\x2f\xd2\x3c\xdc\xab\x9a\xab" + "\x14\x95\xf8\xa5\x16\xee\xad\xb2\x68\x58\x8e\x8d\x73\x61\xd5\x6a" + "\x8e\x86\x36\x16\xa1\x7e\x40\x99\x56\x77\x25\xeb\x86\xea\x95\xc7" + "\xe9\x36\xf2\xbf\xe6\xb1\xf4\x57\x8e\xd3\xf1\xa6\xf3\x74\x97\x21" + "\x08\xd8\x7f\x26\x30\xcc\x83\x6e\x23\x69\xf0\x51\x90\xfb\x1f\x4a" + "\x5a\xa8\x58\x8a\x1a\x44\x0b\x55\xe4\x7b\x26\x4d\x76\xf2\x02\x13" + "\xb9\x05\x29\xf5\x3c\x45\x5e\xa9\x31\x5b\x57\x21\xf1\x57\x02\xd0" + "\x1a\xc0\xdc\x53\x72\x57\xdb\x0c\x68\x0f\x09\x71\x6f\x84\xd7\x9d" + "\x71\x77\x23\x47\x67\x89\x0d\x7d\x2e\xef\x24\x0c\xd0\x49\x70\x18" + "\xc6\x57\x61\xe6\xb0\x7d\xa1\xf9\xb1\x52\xfe\x20\xed\xcf\x3e\x6a" + "\x48\xfe\x28\x47\x71\x3e\x0e\x55\x1c\xe4\x3f\x0a\xf8\x8f\x1e\x14" + "\xa7\x96\x42\xe8\xa5\xd6\x9a\x7c\x92\x4f\xe4\xec\xf0\x2e\x26\x1a" + "\x46\xcf\x07\x76\xe3\x96\xa7\xc5\x67\x6c\x48\x67\x48\xc5\xca\x46" + "\xa8\x74\x45\x7f\x60\xc4\x16\xa3\x2b\xc2\xd7\x23\xad\x7d\xc2\xb7" + "\x1f\x71\x4d\xfb\x84\xc9\x2f\x2c\xed\x13\xbe\xbf\xb1\x14\x4c\xf8" + "\xfe\xda\x68\x85\xf4\x88\x6e\x9a\x54\x48\x58\xf8\x6d\x93\x0e\xc7" + "\xc0\x6d\xf0\x0b\xfb\x56\xd1\xe3\xd8\xf1\x8b\x05\x45\x42\xe7\x46" + "\xf6\xfe\x1e\x45\x4e\x43\x88\x62\xf9\x75\x4d\x93\x13\xff\x6c\xac" + "\x96\x8a\xa0\xfb\x5f\xa3\xb1\xf9\x59\x85\xcb\xb7\xfb\x15\x2e\xef" + "\x57\x28\x5c\x4e\xfe\xba\xc2\xc5\x0e\xc0\x27\xf4\x0b\x6d\xac\xc6" + "\x46\xf8\x10\xe5\x4a\x59\x55\x5f\xd3\xb0\x94\x95\x1f\x15\x73\xbb" + "\x98\x6b\x71\xeb\xde\x3b\xe8\xb1\x5a\xf4\xff\x3d\x52\x60\x99\xad" + "\xf8\x54\x95\xd1\x2a\x6e\x2c\xaa\xaf\x8d\xdc\xb6\xf7\x00\xf1\xad" + "\xb9\xd9\x97\xf1\xbd\x3a\x15\xe8\x59\x2b\x1b\xfa\xea\xe7\x05\x3d" + "\x3b\x6c\x82\x39\x52\xb5\xfe\x40\xa4\x38\x0a\xef\x43\x81\x07\x29" + "\x8e\x2e\xa6\x8b\xb4\x5d\xed\xd9\x0c\xaa\x77\xb1\xd7\xc8\xfb\x9b" + "\x6d\xe5\x21\x2c\xe0\xcb\x98\xbd\x8b\xff\xeb\xe4\x95\x36\xcc\xbe" + "\x4f\x9e\x78\x91\xb5\x4c\x1b\x6f\x98\xb6\xaa\x87\xd3\x5f\x55\x77" + "\x35\xab\xb2\x14\x67\x41\x50\x7d\x90\xc8\xda\x36\xb8\x1f\x71\x59" + "\x58\x95\x52\x29\xe3\x41\x8b\x56\xac\x5b\x51\xa3\x19\xc7\xc2\x83" + "\xd0\xf2\x0e\xe4\x25\x27\xc5\xb2\x5f\x62\xeb\xb1\xd9\xb2\x47\x22" + "\x57\xf7\xd6\xfd\x5b\x34\x6d\x0f\x54\x94\xdc\xd4\x14\x25\xa7\x3f" + "\xab\x28\x59\x01\x6a\xcb\xd3\xfd\x4f\xfa\xe9\xc7\x7f\x96\xed\xfd" + "\x6f\xbf\x2b\xac\xcc\x1d\xbf\x0e\x81\x75\xf9\x93\x61\x13\xff\x2c" + "\x83\x5c\xbb\xae\x4f\x72\xc3\x2f\xee\xe1\x86\x1b\x78\xe1\xcf\x19" + "\xf1\xc2\x78\x9f\x29\x46\xbf\x68\x63\x89\xe3\x87\xb2\xc4\xb6\x9e" + "\xec\x58\xea\xc9\x8c\xf1\x34\xb6\x8c\xa7\xd0\xb2\xd7\x52\x6d\xec" + "\xa9\x53\xd5\xe5\x0a\xdf\xac\xac\xd0\xe9\x1b\x0a\x3a\xe8\xd3\xf2" + "\xfd\x35\xc0\x7a\xf4\x8b\xe1\x8d\x07\x8e\xe7\xd5\x2c\xf7\xd0\xac" + "\x3a\x8c\x85\xd7\xbb\x92\x9b\x8d\xa3\x80\xd2\xd4\x49\x49\x53\x48" + "\x10\x88\x49\x10\x88\xb5\x20\xf0\x3c\x0c\x76\xfe\x45\x1d\xea\xff" + "\xf3\x7a\x7b\xf0\xeb\xc6\x4e\xc4\xf2\x28\x58\x3a\xbf\x3a\x7e\xdf" + "\xa1\x0e\x11\x9b\x80\xa7\x78\x22\x3c\x18\x3a\x0d\x91\x85\x97\xfc" + "\xc3\xf3\x70\xc0\x42\x28\x27\x6f\xc6\x65\xe2\xce\x5b\xe6\xe4\x51" + "\x4e\xec\x45\x8a\x17\x7d\x30\x3c\x09\xe0\xf7\x07\xec\x82\xfe\xa4" + "\xf8\x77\x98\x4c\xc5\xcf\x88\xe3\xef\x28\xba\xc2\x1f\x3e\xc3\xbf" + "\x13\x2a\x31\x79\x44\x7f\x7f\xa3\xbf\xbf\xd3\xdf\xff\x4b\x7f\xff" + "\x4e\x7f\xff\x13\xff\x46\xf4\x67\x76\x09\x3d\xc8\xd2\x21\x9e\x33" + "\x4a\x87\x74\xee\xc9\x09\xa7\xb9\xd5\x0d\x19\x79\x51\x85\x5d\x1c" + "\xb0\x29\x7d\x29\xfa\x30\xa7\x3f\x29\xf5\x23\xa3\x3f\x33\xa0\x80" + "\xf4\x30\x0f\x63\xfa\x5d\x5c\x88\x1f\x2a\x8a\x07\x72\xe3\x4b\x7c" + "\x5a\xd0\x1f\x2c\x5a\xb0\x0f\x21\x99\x1b\x4f\x01\xe7\xfb\xe4\xa9" + "\x78\x99\xe2\xa9\x2c\x68\x74\x18\xe5\xdc\x40\x06\xe3\x64\x20\x85" + "\x40\x48\x42\x35\xb0\x90\xb0\xdf\x30\x9f\xb9\x38\x28\x45\xc3\xb8" + "\x99\x46\xf1\x37\x9f\xbe\x18\x78\xec\x09\x4e\x91\xdb\x5b\xff\x1a" + "\x02\x4a\x0c\xd3\x68\x9e\xfb\x9e\xdb\xf3\xfb\xe1\xf6\x8f\xdd\xed" + "\xff\x7f\xab\xb3\x3d\xd8\xf2\xef\xfa\xff\xda\xf4\x77\x7a\x7f\x1b" + "\xfc\x8a\x39\xf8\x70\xb7\xe1\x79\x30\x97\x5f\x43\xba\xe5\xd3\xbe" + "\xde\x33\xee\xc4\x00\x76\x5c\xb6\xb0\x2a\x5e\x25\xd7\xea\xb8\xab" + "\x39\xc8\x67\x9d\x6f\xea\x7d\x08\x3b\x93\x90\x9e\xd6\xd7\x9f\x84" + "\xe2\x38\x87\xa8\x81\x1c\x33\x3c\xd8\x5c\xfc\xdc\x0a\x37\x94\xad" + "\x45\x12\xf5\x00\xe5\xc5\x5d\xe9\xb0\x4c\x12\x40\x3d\xcc\x14\xdf" + "\xa3\x03\x5e\x57\xd1\xa2\xb5\xa7\x21\xf6\x50\xfa\x34\xac\xc7\x2a" + "\xf8\x90\xda\x5c\x90\x02\x71\x7d\xd0\x97\xdb\xc7\xf1\x54\x19\xba" + "\xe7\x54\x69\x5d\x70\x1a\xa4\xd3\xcb\xc1\xc9\xeb\x37\xe8\xad\x02" + "\xfc\x94\x74\x5b\x41\xfa\x46\x44\x19\x9a\xa4\x9b\x67\x77\x26\xf9" + "\x0c\x19\x99\x34\x28\x1d\xe1\x8e\x84\xa2\xb4\x7a\xa1\xb1\x0b\xcb" + "\xc2\xb3\x8f\x33\x25\xb8\xb0\x53\x45\x4c\xc3\x20\x69\x83\x2d\x0e" + "\x4d\x5e\x3f\x0e\x9b\x17\x9e\xae\x32\x50\x0e\x3d\x6f\x99\x68\xc7" + "\xea\xae\x3a\xce\x23\x1d\x34\xa6\xe5\x9e\x25\x9d\x50\x7b\xb7\x78" + "\x6c\x62\x65\xe6\x7d\xe8\xdd\xe0\xee\x0e\x90\x32\xef\x87\xf4\x60" + "\x77\x75\x81\x5d\x9d\x7a\x5f\x43\x77\xc1\x26\xb0\xdd\x24\x35\x76" + "\x6d\xa1\x3b\xef\x29\x0f\x69\x09\x07\x72\x47\x7a\x7e\xf6\xfa\x95" + "\xec\xd3\x4b\x74\xd2\xe5\xb3\x39\x72\xd7\x4f\x43\x04\xce\x2d\xc8" + "\xfb\xe8\x72\x3b\x9d\x26\xd7\xb8\xc5\xfb\x79\xc4\xe4\x6d\xbd\xfe" + "\x12\xd8\x99\x1b\x60\x0e\x28\xca\x94\xef\x60\x2c\x9b\x19\x0a\xc1" + "\x2c\x0b\x91\xad\xf8\x41\x07\x27\xd4\xf3\xd3\x58\xc6\x2f\x95\xd5" + "\xfb\xce\x3f\x80\x3a\x3c\xfe\xc7\x0e\xfe\x75\x0a\xf6\xae\xd4\x8a" + "\x3a\x27\xac\xdb\xd2\x09\x76\x8b\x6e\x3d\xa4\x09\x75\xc1\x12\xad" + "\x55\x4f\xea\x49\xd0\x21\x19\xf2\xc4\xfa\xdc\xf4\x4e\xee\xf1\x05" + "\xfb\x11\xe2\x85\x85\x79\x43\xcc\x95\xbb\xea\xc9\x8e\x4c\x62\x54" + "\x43\x74\x16\xed\x8a\x1c\xfe\x75\x57\xe4\x95\xe2\xf6\xa7\xfb\xc5" + "\xed\x77\x2b\xc4\xed\x97\x61\x21\x9a\xca\x85\xab\xbf\x92\xc2\x05" + "\x8a\x5f\x21\x69\xc8\x2a\xfe\xe9\xa2\xac\x38\x76\xab\x1d\x7e\x81" + "\xf9\x4f\xa6\x57\xfc\x4d\x92\x11\xdf\xfa\x54\x31\x28\xb9\xa7\x8f" + "\x64\x3e\x91\x57\x31\x15\x40\x87\x6a\x0d\x2a\xdf\x3a\x9d\xa1\xee" + "\xd4\xdb\x2d\x86\x13\xd8\xaa\xb8\xca\xa8\x6a\x05\x86\x13\x0e\xbc" + "\xae\xce\x64\x4d\x7d\x0d\xe8\xfc\x69\x43\x06\x1e\x49\xcd\x85\x9a" + "\xbb\xc8\x93\xe7\x80\x4b\xee\xc3\x8f\x36\xe8\xc5\x14\x58\xf7\x62" + "\x9c\x4a\x6c\x2b\xc3\x4c\xa1\x99\xb5\x8e\xfb\x11\x4b\x07\xb0\x92" + "\x25\xa4\x11\xe3\xa2\x36\x50\x7b\xda\x29\x54\x0f\x94\xa5\x2c\xb2" + "\x8e\xc0\xe8\xe8\x14\xfd\xdd\x81\xb6\x6d\xb4\xce\x49\xe9\xca\x43" + "\xbd\xbe\xf4\xc6\x91\x01\x83\x56\x11\x4c\x01\x4e\x99\x3a\x72\xbd" + "\xe6\xe0\xdd\x24\xc5\x39\x52\xf2\x7d\x09\x7d\x19\x0d\x42\x06\x82" + "\xa8\xe7\xb0\xa6\xc9\xd2\xe3\x2b\xaa\xb3\x68\x58\xae\x3e\x67\x59" + "\x13\x98\x3c\xaf\xa5\xad\xa5\x5e\x94\x9c\x89\x65\x9c\xe1\x9a\x16" + "\x17\x73\x18\xf0\x95\x1c\x3b\x0d\x7f\xaa\x98\x7f\x71\xbf\x35\xbf" + "\x07\x90\xdc\xc3\x98\x79\xcb\xc8\xd0\x7c\x13\xf3\xfb\x19\xee\x8e" + "\x2a\xaa\xca\x42\x31\xe6\x47\xb1\x22\xb7\x6e\x4e\x47\x91\xa2\x52" + "\x94\x76\x7b\x62\x90\xb2\x61\xdd\xab\xd1\xcc\xb8\x30\xe2\x11\xcd" + "\x1b\x35\xc2\x80\x17\x45\x15\x21\xab\x0b\x47\x8a\xf1\x32\xbf\x07" + "\xdb\x77\x25\x06\xa1\x26\xcf\xac\xf1\x8b\xa7\x31\x9d\x98\x6f\x5f" + "\xf9\x3a\xcc\x11\x54\xdc\xc7\x2a\x06\x30\x0b\xcd\xb0\x60\xbc\x2e" + "\x1c\x0a\x00\x70\x0b\x00\xb0\xe5\x70\x73\x8e\xc6\x04\x43\xb7\x07" + "\x9e\xdb\x6f\xca\x39\xf2\x7b\x88\xd1\xbe\x12\x8c\x91\xe7\xb0\x8f" + "\x36\x8b\xa7\x06\x43\xbc\xa6\x1c\x2e\xf2\x6f\x7a\x8c\xc8\xb9\xbd" + "\xe1\xca\x97\xf0\x0f\xe3\x65\x99\xe9\xa0\xe3\x9f\xd1\x41\x50\x56" + "\xbf\x4d\xbd\x75\xd8\xb3\x98\x14\xef\x7f\xa0\xe2\xfd\xbb\xd0\x99" + "\xf3\x8e\x71\xca\x7c\x9e\xab\x7b\x7b\xd8\x6b\x2e\x4f\xdf\x38\xec" + "\x45\xa8\x8e\xf3\xb2\x7c\x88\xce\xf3\xf1\x02\x0b\xf3\xa1\xbc\xdc" + "\x9d\xc5\x43\x6d\x41\x64\xd9\x50\xb5\x1f\xc9\x27\x3c\x42\x38\xa4" + "\xf3\xce\x1c\x2f\x50\x72\x58\x32\xd4\xf5\x85\x43\xd9\x4a\x04\xa5" + "\x86\xea\x25\x59\xc0\x60\xa7\xd8\x94\xbe\x4e\xd1\x61\x0b\xf5\x4e" + "\x37\x29\xc2\x16\x3b\x0c\x96\x7b\xef\xce\x4e\x7c\x07\x8f\x96\x38" + "\xec\xec\xe4\x8d\x2f\x62\xa7\xbd\x3d\x7a\xf6\xfc\xcc\xd7\xb1\xd8" + "\x54\x14\x36\x87\x3d\x39\x39\x3b\x3b\x79\xed\xeb\xc0\x6a\xaf\x0e" + "\x9f\xca\x72\xa9\xb4\x9f\x51\xf9\x82\x8d\x86\x15\x5e\x23\x54\x07" + "\x9a\xee\x09\xbf\x26\x2d\xaf\x3c\x45\xfe\x03\x35\x40\xc9\x4c\xb3" + "\x25\x23\x8e\x61\xd1\x76\xd9\x58\x6a\x40\x74\x94\x86\x0c\x45\x1c" + "\xec\xb8\xea\xa7\xee\xa0\xe8\xcf\x40\x73\x34\x26\x96\xdb\x7f\x82" + "\x50\xa1\x03\x3f\x88\xaf\xeb\xb1\xdd\x56\x31\x40\x9a\x1e\xa1\xee" + "\x4f\xb1\x1b\xbf\x20\x33\xb4\x46\x34\xd6\x60\xe6\x1a\x0a\x63\xe6" + "\xf5\x71\x43\x99\xed\x10\x03\x25\x3a\x92\x8d\x6a\x2a\x20\xf0\x4f" + "\x15\xa0\xbf\xbf\x30\x12\xa0\x10\x34\x52\xa3\x22\xaf\x5e\x5c\x13" + "\x78\x57\xb0\xf1\xb0\x91\x19\x33\x93\x61\xd8\xa9\x55\x11\xe9\xcc" + "\xa4\xd4\x58\x27\x73\x0f\x63\x69\xb2\x1a\x38\x3a\x31\x7b\xfa\xb2" + "\x47\x15\x72\xae\x69\x36\x1d\x0a\x74\x57\x63\x02\xef\x8f\x83\x67" + "\x26\xd4\xfd\xb3\x51\xf2\x7e\x96\xd3\xac\xf3\x8a\x06\x24\x35\x2e" + "\x54\x4d\x58\x1b\x03\xea\x59\x33\xa9\x18\x57\xc9\x70\xde\xac\x34" + "\x22\xfd\x7c\x3c\x22\x89\x57\x3f\x11\x8e\xa8\xc1\x50\x25\xae\xa7" + "\x18\x19\x9b\x49\x2e\x2f\x18\x33\x5e\xaa\xcf\x11\x21\xa1\x48\xed" + "\xc2\xcc\x33\x31\xd0\x60\x59\xb4\x86\x11\xcc\xcb\x22\x8c\x9d\x05" + "\x23\x53\x3b\x83\x49\x85\xf1\x94\x6e\xd5\xe4\xed\xb7\x60\xaa\x69" + "\x53\x56\x91\x71\x74\x73\x86\x73\x73\x8f\x11\x6c\x34\xbc\x97\x2b" + "\x1f\x0f\xdb\xb9\xf2\xef\x61\x21\x02\xa8\x58\x07\xe3\x0c\x0c\x0b" + "\x79\x34\xa6\x29\xf3\x91\xb4\x9e\xc9\x84\xa6\x22\x95\x04\x13\x82" + "\xd0\xb2\x9b\xc9\x3c\x2b\xad\x34\x19\xe2\x90\xaa\xaa\xaa\x21\xab" + "\x76\x39\x82\xec\x06\x6d\x29\x55\xbf\x2e\xda\x77\xd0\x85\xcb\xf2" + "\x84\xad\x5d\x55\xa7\x50\xa6\xec\x15\x5b\x0d\x33\xf4\x2c\xf6\x60" + "\xbb\x65\x15\x3f\x5c\x15\xff\x80\xd5\xa2\xa5\x37\xdc\xf2\x92\xc0" + "\x38\xa2\x38\x9c\x6e\x0b\xad\x93\xb6\x7b\x35\xdb\xdf\xa4\x6a\xea" + "\xcf\x54\x6c\x3c\xf2\x69\xd4\x3a\x68\x62\xd5\x74\x51\xbd\xa4\xa1" + "\xd9\xa3\x2d\x90\x3e\x6d\xd6\x8a\x96\xab\xf9\x0d\xc0\x32\xe3\x6b" + "\xb0\xa1\xaf\x61\x55\x6b\x49\xbc\x76\x25\xac\x0b\x6b\xb2\xaa\x4c" + "\xdc\x68\xb3\xae\xa7\x1f\xb5\xd9\x5a\x12\x53\x00\x30\x58\x51\x3d" + "\x06\xdd\xa6\xa9\x17\xf7\x4c\x19\x1a\xd4\x21\xc5\x32\x2a\x26\xdc" + "\x6c\xe8\xa1\x0f\x8f\xbb\x91\xb5\x44\xaf\x54\xa3\x04\xf4\xe1\xe9" + "\x41\x5b\xf4\xbe\x36\xdf\x5e\x71\xc6\xb3\xe9\xbe\xb1\xb2\x25\xaf" + "\x02\xfb\x6e\xe9\xa8\x17\x0a\xe1\x67\xd1\xbc\x7a\xb6\x7b\x85\xd1" + "\x16\xd5\x80\x90\xc0\x47\x17\xb0\x2b\x45\x15\x3c\x88\x46\x8e\xba" + "\x50\x72\x69\x76\xca\xb4\xe1\x70\xea\xc3\x01\x50\x19\x3f\x10\x36" + "\xf4\x43\x4b\x15\x93\x1c\xb5\x5b\xe3\x56\xcc\x4d\x3a\x34\x37\x74" + "\x4a\x62\xdb\x10\xdd\x33\xc2\xa3\x51\x65\x29\x31\xe3\x3f\x11\xf2" + "\xd3\x2b\xdf\xaf\xf1\xf0\xb8\x9e\x61\x2d\xf0\xa2\xba\xf4\x4e\x5c" + "\x73\xf4\xf3\x03\x8e\x86\xd6\x01\x65\xb5\x11\x61\x94\x22\x85\xfa" + "\x92\x6c\xd5\xca\x00\xb9\x6d\xb4\x68\x26\x7a\x9f\x69\xf4\x36\x6e" + "\xb3\x49\xaf\xba\x3b\x62\x45\xf7\x39\x74\xbf\xd5\x62\xad\xf1\xa9" + "\x82\xcc\x75\xb3\xf1\x9f\x9d\xbd\xe8\xe7\xe2\x66\x46\x2d\x71\x33" + "\x4b\xbb\x48\xff\x45\x38\x30\xc6\xf2\x72\xd6\x6b\xde\x9a\xf5\x3c" + "\x1f\xd8\xe7\x3e\x6c\x9e\xa2\xf9\x1e\x08\x24\x74\x7b\x76\x15\x38" + "\x05\x6e\xe5\x7b\x45\x92\xaa\x84\xfa\x21\x06\x76\x9b\x22\xfc\xa9" + "\xc5\x18\xe3\x62\x5c\xe9\xee\xd0\x86\x65\x95\xe0\xac\xf7\x04\x5e" + "\xad\x10\x7d\xc9\x89\x28\xe3\x35\x21\x8f\x60\x7b\xaa\x88\x54\xd2" + "\x2a\x40\x5f\x14\xfc\x90\xc9\xb2\xc9\x86\xf5\x4d\x95\x35\xb3\x2e" + "\xf6\x94\x29\x4f\x93\x54\x2b\x07\x34\x31\x82\x1a\x8b\x86\xca\x1a" + "\xae\x9f\xae\xe8\xb4\x85\xe1\x50\xa8\xf7\x68\xa3\xe3\xda\x2a\x81" + "\x98\xd1\x70\x87\xea\x1b\xce\xb2\x86\x40\x31\x5f\x60\x1b\x97\x77" + "\xae\xd8\xb3\x85\xcc\x5b\xb1\x8d\xd2\xf1\x17\xe3\x61\xf3\x39\x72" + "\x1b\x0b\x62\x57\xa4\xed\x42\x6b\xdc\x78\x65\x33\x41\x0b\x5d\xe6" + "\x35\xcc\x6a\x5d\x33\xf7\x06\xbb\x59\xd8\xba\x2d\x35\xe1\x16\xeb" + "\x9b\x57\xf9\x31\x1d\x2c\xa0\x11\xa7\x05\xc7\x21\xa7\xba\x06\xca" + "\xb2\x1a\xa9\xc2\x7b\xf7\x1a\x53\x3b\x55\x1d\xae\xdf\xc2\xb8\xa3" + "\x07\x42\xe8\x56\xd5\xb5\xda\x2a\x90\xdb\xe6\x80\x9f\x50\x72\x5a" + "\x32\xa7\x89\xa8\x52\x69\xbc\x68\x43\x3f\x39\xde\x65\xff\x73\x38" + "\xf0\x6b\xcb\xa1\xb0\x5e\xca\x90\x79\x50\xcf\x88\x17\xac\x31\x3d" + "\x0f\x63\x20\x6d\x77\x8e\x93\xf8\x40\x86\x38\x93\x5e\x52\xd5\x89" + "\xb2\xd1\xb0\xd1\xb6\x5e\x89\x91\x66\x02\xc9\xa8\x8a\x55\x44\xcc" + "\x95\x67\x02\x94\xea\x50\x69\x0e\xe4\xc8\x60\xe9\xaa\xab\xd0\xa2" + "\x79\x63\x18\xd4\xf6\x38\xae\xf7\x7e\x9b\xd1\x1d\x37\x36\x6f\x62" + "\xd1\x84\x6a\xc4\x49\x25\xfa\x0b\x8d\x24\xab\x9c\xa9\x1e\x20\x53" + "\x3a\x19\xf6\x79\x39\x82\xf0\x40\x2d\xd4\x9a\x9f\x8b\x05\xa7\x52" + "\xdc\xd0\x4c\x2e\x9f\xff\xb5\x81\x4e\x7f\x42\x6d\x6b\x41\xa7\x1e" + "\x20\xd5\xbe\xf7\xc5\x8a\x90\xda\x10\x0e\x75\x3c\x45\xed\xab\x0e" + "\x65\xda\xa0\xcf\x29\x9f\x19\xab\xe5\xff\xa9\xb8\xa8\xec\xdf\x16" + "\x8c\x55\xa8\xde\xcc\x77\x12\x28\x3e\xea\x79\xdb\xb6\x04\xfc\xe4" + "\x4b\xa9\x13\xa7\x56\xd4\x58\x2b\x4c\xea\x2e\x9b\x4f\x42\xbc\x03" + "\xe2\x82\x03\x67\xc5\x5f\x87\xa8\xa7\x1d\xc7\x7e\xa6\x99\x95\x2a" + "\xff\x96\xd5\x69\x84\xd8\xd4\xb7\xe7\xa6\xfe\x0c\xdd\x93\x72\x6e" + "\xd0\xde\x8e\x14\x8b\x64\x96\xdf\x1b\x95\x95\xcb\xa8\xac\x65\x8f" + "\xaf\xd2\x19\x0f\x1d\x61\x48\x68\x00\x8c\x9d\xa8\x7e\x27\x13\x59" + "\x55\x74\xd4\x4a\xaf\xc1\x73\x6c\x05\x2f\x94\x0c\x5b\xb4\x33\xcc" + "\x80\x69\x15\x49\x2c\x07\x1d\xe4\x53\x90\x88\xb1\x3f\xe8\x8c\x34" + "\x34\x27\x22\xb0\x7f\xcf\xf3\xde\x8a\x7e\x4c\x87\x72\x03\x6b\xce" + "\x0e\x87\x78\xa1\xf7\xfd\xd5\x2c\x56\x57\x33\x1c\x4a\x77\xa4\x32" + "\x7c\xb2\x16\x10\xa4\xda\x35\x24\x09\xee\x07\x45\x8a\x21\x42\x2a" + "\xdc\x73\xaa\x63\x8a\x2a\x4b\x41\xef\x35\xf7\x89\xa7\xde\xc5\x40" + "\x97\x4a\x4f\xd3\x78\x98\x30\xfa\xef\xea\x16\xda\x2c\x54\xbf\x12" + "\x4b\x03\xa4\x76\x03\x3c\xd8\x66\x79\x0b\x53\x88\x4e\x29\xbf\x15" + "\xea\x9a\xb8\xaa\x66\xa8\xc1\xad\xb6\x7c\xba\xb0\x61\xc4\x0f\xd4" + "\x39\x15\x96\xca\xb0\xe5\x68\xd4\x65\x83\x46\x09\xa4\x22\xe0\xd1" + "\xd6\x57\x15\x24\xf9\x62\x1a\x5e\xf0\x29\x2a\xa9\x2a\x45\x2d\x23" + "\x98\x8c\xf3\xbd\x5a\x8f\x65\x55\xc6\xee\xb9\x62\xa0\x85\x1d\xa9" + "\x7f\x56\x93\x88\x94\xe2\xab\x50\xa8\x54\x73\xd5\x77\xad\xdb\x4b" + "\xa4\xf4\x65\x34\x98\x5a\xea\xde\x2d\xeb\x0f\xed\x1c\xa3\xd2\x55" + "\xda\xc3\x92\xbc\x27\x0b\x4a\x58\x48\xaf\xbf\x32\xe6\x92\xfd\x81" + "\xb2\xa0\x9f\x12\x71\x7e\x4e\x5e\xb4\x62\x58\xac\xee\x86\x1c\xab" + "\xc2\xb1\x86\x6e\x60\x96\x27\x6c\xd7\x5a\x1b\x4a\x91\x70\x56\xe8" + "\x47\xcb\x1a\xf6\xca\x97\x45\xf3\x20\x56\xf9\x7d\x94\x56\xa3\xe5" + "\xee\x44\x97\x12\x96\x2e\x83\x50\x8c\x40\x3d\x26\x4f\x4d\x3f\x57" + "\x89\x70\x63\xbb\x54\xc1\x80\x3f\x0a\x67\x35\x74\x29\x45\xae\x34" + "\xe7\x6b\x78\x45\xa7\x66\x93\x02\xbd\x73\x59\x3c\x8f\xbe\x69\x00" + "\x68\xae\xbf\x84\x3d\x57\x2d\xb3\x19\xc6\x80\x14\x9d\x84\x66\xc8" + "\x19\xa1\xb4\x6f\x95\x02\x45\x2a\xe8\x35\x78\x30\xdc\x13\x58\x52" + "\xab\xf4\x02\xfb\x19\xb5\x48\xbd\x92\x42\xc4\xcf\x95\xeb\x03\x95" + "\xb0\x6e\xca\xa0\x29\x37\xf7\xb8\x53\xc8\x60\x91\xb6\x44\x74\xf4" + "\xe5\x1b\x43\xa4\x50\x2f\x85\xf5\x3d\x2d\xaf\xca\xf7\x22\x4d\xfe" + "\x5a\x92\xa7\xf5\x99\x72\x92\x29\x7f\x38\xd4\xf6\xf4\xa1\x22\x23" + "\xf6\xc7\x45\x93\x64\x60\x62\xe5\x17\xdd\x7b\x3d\x38\xac\x19\x90" + "\x0e\x2e\xf6\x36\x28\x4d\x26\xc0\x7d\xc0\xee\x9c\x61\x8f\xf0\xba" + "\xcc\xcc\x72\x6e\x54\x3b\x0c\xad\x36\xc5\x7b\x18\xa3\x79\x5e\x54" + "\x65\xdb\x8a\x1e\xc4\x5d\x79\x41\x8b\x65\x64\x32\xda\x07\xf5\x11" + "\xca\x21\xe5\xf8\xa9\xca\xa2\xf4\x57\xdd\xd2\x6f\xf2\xff\xe1\xf8" + "\xf1\xc5\x13\xf7\x46\x3b\x15\xcf\x87\x01\xc6\xfe\x17\x9a\xba\x73" + "\x78\xe9\xc8\xb7\xed\x09\x0f\x47\x98\x38\xb3\x13\x45\x74\xa4\xcb" + "\x21\x2d\x4f\x18\x89\x9c\x43\xe3\xd3\x67\xdf\x91\xf6\xff\x95\xec" + "\xea\xd2\x1e\xdf\x6c\x1f\x57\x5d\x58\x65\x1f\x57\x7d\x28\xdb\xc7" + "\x27\xbf\x57\xf3\x65\xc7\xa1\xc0\xe4\xf7\xc6\x0a\x68\x10\x55\xf3" + "\xb9\xb2\xb5\x0a\xae\xb5\x60\x87\xd5\x31\x22\x90\xcd\x38\x85\xf1" + "\xb7\xd5\x76\xab\x4c\xb5\x8b\x58\x9b\x6a\x6f\xf2\xe5\x2a\x73\xe2" + "\xe5\xfd\xe6\xc4\xc3\x15\xe6\xc4\xf9\xb0\x4d\xbf\xb7\x56\xd5\x67" + "\xd4\x55\x71\xae\x77\xbf\x66\xe4\x7c\x58\xd7\x8c\xb0\xfe\xcc\x4e" + "\x35\xb5\x15\xe7\x4d\x1e\x87\x3f\xa3\xcd\x51\x6e\x63\x7f\x6d\xad" + "\x2d\xe2\xff\xf9\xb5\xb6\xd0\x0e\xcf\x57\xe8\xc4\x43\x47\xaa\xb2" + "\x39\xac\xa2\x8b\x21\x9d\xe4\xb5\x52\x26\xc2\xa3\xe8\x62\x58\x7c" + "\x61\x7b\xc3\xf2\x1d\x9b\xc3\xe0\x8b\x3a\xfb\xb4\xb1\x9c\xe0\x05" + "\x96\x1f\x63\x7d\x18\x96\xde\x6f\x87\xea\xb4\x2f\xbc\x6e\x2c\xf7" + "\xb0\x96\xeb\xa1\x75\x3f\x25\x3a\xb4\x43\xb3\x79\xe0\x88\xfd\xde" + "\x61\x27\x43\xeb\x88\x2c\x74\x41\xf5\x0f\x0f\xc7\xde\xc0\x3a\xec" + "\xa3\x63\xfb\xc0\x61\xfb\x43\x71\xc1\x24\x5b\xeb\x4c\x41\x44\xdc" + "\x46\x8f\x79\x10\xf4\xff\x88\x45\xf2\x36\x3a\xc1\x3b\xec\x58\x96" + "\x92\x0d\x9d\xe2\xab\x29\x2e\x53\x0f\x86\x78\x68\xfe\x8f\xb8\x60" + "\x6b\x1b\xcb\xe3\x61\xb1\xf6\x78\x4d\xbf\x9e\x62\x97\x37\x86\xd6" + "\xdd\x95\x0e\x7b\x65\xbf\xca\x63\xbc\x0e\x3b\x82\xd5\x29\x09\x8d" + "\xb8\x79\x31\x49\xf2\xd7\x14\x88\xd4\x77\x76\xe7\x37\x6b\xf8\x7f" + "\xfb\xb7\xbf\xff\x07\x88\xc7\x33\xc8\x9a\x9c\xaa\xd3\xbc\xea\x96" + "\x11\xe9\x1b\x00\xc8\x38\x49\xa6\x23\xbf\xdf\x79\xc4\x3a\x7f\x67" + "\x8f\x06\x05\x7b\x63\xaa\xd6\x1e\x2a\xd2\x19\xd8\x6e\x45\xb9\x71" + "\x94\xea\xb7\x82\x17\x8b\x66\x74\xdc\x62\xab\x2d\xe9\xd2\xa2\x48" + "\xc4\x15\xff\xa9\x23\xc1\xa2\xe2\x57\x00\xf0\x8c\x74\xa9\xaf\x43" + "\x65\x1a\x48\x2e\x32\x9e\x5e\xa1\xb2\xe1\x54\x84\x84\xad\x16\xb0" + "\xe3\x62\xb7\xdc\x2b\xa4\x98\x37\x2b\x64\x04\xac\x0c\x69\x4b\x76" + "\x7a\x08\x07\xbf\x29\xde\x95\x64\x20\x45\x6c\x5d\xcb\xef\x42\xf4" + "\xa9\x72\x23\x64\xca\xaf\xa2\x64\x91\x09\x98\x21\x0f\x19\x2c\x65" + "\x0b\x87\xe8\xcd\x79\x96\xcc\xfd\x5d\x26\xce\xba\x9d\xaa\x70\x45" + "\xfe\xae\x64\x9e\x01\x21\x11\x90\xf7\x38\x67\x1c\xdd\x4f\x4d\xdf" + "\xac\xa0\xa6\x57\xc3\x42\xb7\x53\x53\x3a\x88\x51\x66\x7b\xf1\xe8" + "\x44\x43\xdc\x38\x95\x90\x47\xa6\xb0\xa2\x9f\x5a\xa8\xa1\xf3\x15" + "\x44\x7a\xe5\x57\x34\xf2\xc3\xe4\xc7\x74\x99\xbb\x5f\x01\x9e\xa6" + "\xb0\xc7\xfc\xfa\x44\x26\xd6\x6f\x09\x6e\xc3\x02\xc5\xea\x2b\x1f" + "\x63\xdd\xa4\x7c\x68\xba\x24\xb0\xb1\x5b\xf5\x13\x97\xab\x6f\x1d" + "\x17\xd8\x90\x9b\x3b\x45\xaa\xf1\xb8\x98\x08\xcd\x2e\x96\x14\xb0" + "\xa1\x62\xd9\xf5\xf0\xce\x7b\xf9\x5c\xa8\xb5\xfc\xfb\xee\x7f\x7c" + "\xf1\xed\xe2\x16\x4f\xac\x56\x96\x7d\x05\xb5\x6b\xa7\x5b\xcf\xf7" + "\xe8\x5a\x45\xb0\x54\xee\x09\xfe\xb7\x75\x2e\xcb\xa1\xaf\x6c\x12" + "\x50\x09\xce\xaf\xd4\x66\x42\xdf\xfe\x31\x2e\xe9\x55\xaa\x99\x40" + "\x72\x45\xb4\xa6\x92\xad\xab\x61\x42\x49\xf7\xaf\xee\x69\x01\x29" + "\x6a\x42\x5b\x19\xc7\x50\xd1\x2d\x77\xad\x68\x7f\x71\x43\x02\xee" + "\xee\xe4\x19\xb8\x28\xe0\x12\xda\xb0\xce\xb6\x2b\x9e\x09\x2a\x9d" + "\xc2\xb0\xe8\xe8\x61\x40\x97\xf4\xb3\xbb\xcc\x61\x79\x46\xec\x82" + "\x4f\x42\x58\xd7\xe8\xae\x46\xf0\x70\x0a\xed\x03\x94\x59\x61\xc7" + "\x22\xd8\x16\x05\xbb\x51\x42\x66\x23\x57\x60\x17\xfd\x5a\x6f\x2d" + "\xfa\x59\x06\x9e\x4a\xb6\x89\x73\x2d\x40\xbf\x48\x2f\xec\x03\xb9" + "\xc4\x4b\x64\x02\xa2\xba\x1b\x5c\x9d\x75\x50\xf8\x6f\x0e\x30\x7b" + "\x78\x33\x62\x3d\xdd\x12\x89\x13\xf5\xb1\x45\xa2\x69\xaa\xbe\xfc" + "\x6d\x63\x99\xa8\xe9\x8a\x46\xc5\x17\xb4\x40\x24\x5a\x57\x50\xa7" + "\x87\x9d\x0a\x39\x0c\xf4\xd7\x7a\x3e\x34\x2d\x4d\x86\x3c\x03\x81" + "\xda\x4d\x00\xaa\x30\x95\x6e\xc3\x3c\xb7\x1a\xf8\xcd\xb4\xb0\x34" + "\x88\x1e\x07\xad\xfd\xa9\x10\xe3\xee\x43\x0b\x06\x51\xf5\x00\x96" + "\xbc\x5b\x23\xe9\x44\x99\x99\x81\xf8\x52\x47\x27\x6c\xd9\x47\x48" + "\x19\x22\x14\x1a\x64\xe2\x13\x03\xae\x9e\xbf\x0a\x1b\x00\xb5\x62" + "\x54\x15\x28\x53\x3c\xe1\xcd\x4d\x71\x86\x39\x83\xfa\xd9\x7a\x64" + "\xb9\x41\x89\x86\xd6\xa1\xc4\x7a\xb8\xb9\x89\xf9\x45\x71\xff\xae" + "\xb0\xfc\xf3\xbb\x76\xd7\x1c\xfb\x15\xb7\x73\x55\x6e\xd2\x90\x34" + "\xb5\xae\x80\x27\x08\x73\x22\x0c\x77\x77\x9c\xc8\x59\xe5\xde\xa9" + "\xcc\x3a\x0f\x31\xe2\x78\xb4\xf3\xdd\xdb\x23\x57\x7c\x52\x51\xf1" + "\x79\xdd\x37\x39\x69\x69\xdc\x3a\x72\xa3\xfd\xa5\xfe\x39\xf7\x5a" + "\x87\x46\x5f\x88\x72\x0c\xcd\x67\x85\x46\xe0\xbc\x09\x03\xc4\x11" + "\x62\xb7\x05\x05\x9a\x80\xd1\xc4\x8e\xe0\xe5\x50\x65\x83\xfa\x45" + "\xb9\x20\x1a\x15\x85\xd3\xb9\xbb\xe2\xfe\xde\xb3\x61\x43\x90\x0a" + "\x3c\x2d\x5f\xab\x62\xd9\x76\xc5\xe3\xf5\xd0\xf3\x96\x06\xf2\xaf" + "\x86\xcc\xa8\x98\x37\xd0\xc3\xa7\xd6\xcd\x7a\xb4\x68\x2e\xce\x27" + "\xcf\x55\x6b\xc0\x9b\x57\xef\x4f\x5e\x93\x37\x68\x71\x60\xb6\x3d" + "\x2f\xab\xd7\x5a\x34\x00\x13\x37\x8f\x9a\x8f\xc4\x45\x5e\x3d\xe1" + "\x8d\x97\xaf\xde\x70\xbc\x9a\xfe\x02\xaf\xa6\xcf\x1b\x2e\x8c\xcb" + "\x1a\xeb\xf9\x8b\x92\xdc\x15\xff\xdf\x7d\x98\xdf\x3a\xc8\x2f\xb7" + "\xd5\xdb\xe1\xaa\xa3\xe5\x27\x30\x33\x2d\x63\x8a\xc5\x75\x59\x57" + "\xda\xeb\xed\x35\x88\x40\x39\xde\xb3\x72\x23\x24\x46\x7a\xbe\xcc" + "\x49\x56\xbc\x41\x91\xe9\xed\x50\xc5\x56\xba\xc4\x49\xf9\x36\x34" + "\x51\x94\x28\xe1\xfd\x50\x05\x66\xa2\xd7\xe7\x43\x1d\x99\x89\xde" + "\x3f\x0c\xb5\x20\x49\xef\x4f\x86\x3a\xa2\x92\x4c\xf9\xaa\x45\x4b" + "\x7a\x7d\x0a\xfd\xd8\x43\x2d\x0c\xc5\x46\x63\x9f\x63\xf9\x2a\x22" + "\xa7\xb1\x97\x2a\xfb\x1d\x5e\x35\xa3\x32\x0f\x48\x9c\x7b\x0b\x52" + "\xe5\xf3\x64\x86\xb6\x84\x2c\x70\x0e\xf1\xd8\xf5\xc8\x12\x48\x79" + "\xa6\x8e\xe1\x7c\xd3\x67\x6f\x3e\x59\x32\x2c\x94\x88\x9a\xe4\xc1" + "\x77\x25\x29\x11\xaf\xf6\x73\xd8\x7b\x1e\x7c\xf1\xe3\x04\x96\xd6" + "\x92\x47\x85\xf7\x85\xfd\x00\x69\xd7\x12\x48\x41\x98\x25\x91\xb6" + "\x2f\x75\x4e\x40\xa8\xf0\x64\x10\x88\xbe\xcf\x6c\x41\xb6\x24\xf3" + "\x4a\x21\xf6\x3b\xc0\x43\x0b\xbe\x1b\xcb\xf7\xbc\xa8\x97\x92\xc9" + "\xa6\x76\x67\x40\x49\x5f\x58\x1c\x35\x04\xa6\xa2\x02\x50\xbc\x9a" + "\x3e\x8f\x50\x1c\x6f\xc8\x50\x9d\x7d\xce\x51\xa0\xfe\x3e\x24\x09" + "\x3a\x8e\x50\x31\x30\x24\xd4\x18\xe5\x45\x5b\x2b\x2d\xb9\xaa\xad" + "\x96\x6c\xd1\xe2\x17\x29\xb7\xbe\x6a\x3d\x85\xa0\xa5\x56\xad\x69" + "\x25\x62\x15\x34\xdb\xd6\x7e\x0c\xcb\xc5\x34\xc1\xcf\x30\x6e\x44" + "\xf9\x06\x02\x45\xf4\x45\x49\xe3\x97\xa1\x6f\x66\xf1\x1a\x0d\x97" + "\x4f\x86\x4c\x73\x76\x12\xb1\x89\xc7\x6f\x17\x00\x5f\x0f\x95\x4f" + "\x76\xa3\x3d\xaf\xec\xc2\x7b\x24\x2f\xb0\x71\xab\xb7\xc7\x58\xee" + "\x6a\xa2\x04\x32\x5e\x22\xb0\x61\xcf\x6c\x33\x1c\xd6\x6f\xc3\xd6" + "\xe2\x0b\x97\x46\xb3\x1b\xc1\x32\xae\x16\xe3\x8d\x71\xc2\x33\x60" + "\x4f\xda\x83\x67\x5b\x31\x74\x38\xab\x6d\x84\xa4\x6a\xb0\x76\x35" + "\x7d\xa6\x64\x3d\x37\x17\x3a\x96\x37\x94\x51\xbd\x92\xf6\x40\x25" + "\x5e\x25\x3e\x15\x6d\x95\x97\xf5\x78\x57\x78\x95\x30\x61\x6b\x79" + "\x5f\xc2\xf6\xbe\x99\x03\x91\x4d\x06\xc8\xf0\x02\xe8\x2b\xbf\xa1" + "\x1b\x6c\x1b\x0c\xa0\xc2\xa6\x80\x47\xe7\x4c\xdc\x2d\x81\xe0\x18" + "\x30\xe8\x80\xee\xdc\xa1\x2c\x1b\xf2\xcf\x9b\x20\xdf\xea\xb1\xc9" + "\x1a\x37\x7f\x4e\xfe\x42\x16\xf4\x57\x43\x56\xee\x9c\x04\xdc\x72" + "\xa0\x29\xab\x8a\xff\x32\x38\xcb\xd6\x4b\xa0\x5e\x0d\xcc\x47\x75" + "\x78\xeb\xa9\x60\xce\xf6\x23\xa7\x1d\xd8\x8f\xca\xc0\xfe\xf6\x6f" + "\x03\xf6\x37\x73\x89\x12\xc2\xb9\xff\x74\x08\x7b\x15\x6c\x4f\xb0" + "\x29\xc1\x46\x04\x3b\x50\xed\x16\x53\x33\x13\xf5\x8b\x3c\x5b\x85" + "\x6b\x6b\x99\x1b\x42\x64\xdd\x52\xbc\xce\xc5\x35\xc5\x78\x89\x7b" + "\x46\x51\x7a\x5a\x1a\x07\xba\xd0\x57\xb1\x94\xde\xf2\xde\xae\xcf" + "\xcd\x6d\x51\xe4\xcb\xa2\x8f\x33\xf7\x61\x1c\x2f\x1a\x2e\x61\xcd" + "\x82\x30\xc6\x65\xad\x94\x0a\x11\x45\xda\x42\xe3\x9a\x0a\xda\xb3" + "\x94\x83\x50\x1a\xd1\xdd\xc2\x63\xaf\x9a\x4d\x52\x99\x57\x72\x13" + "\x35\x63\xd3\x47\xa0\x04\x2f\xf3\x9c\x97\x08\xb8\x28\x6d\x13\xbc" + "\x9a\x25\xa2\x04\x26\x3c\xe9\xab\xa8\x73\x95\x9c\xde\xdd\x89\xfb" + "\xc4\x9b\xf7\x02\x5c\x40\x7a\xaf\xd0\x19\x47\xe3\x63\x10\x7e\x6f" + "\x00\x1f\xb0\x88\x0a\x9f\xa7\xb6\xf7\x06\x86\xb5\x7d\xbb\x39\x89" + "\xa9\xa7\x78\x07\xcb\xca\x7c\xe4\x9e\x0d\x12\x1c\xe1\xf9\x4c\xe3" + "\xbb\xdc\x10\xd1\xd8\x1a\xa2\x3e\xca\x8f\x33\x00\x75\xda\x1f\xde" + "\xb3\xe6\xf0\x6e\x5e\x21\x22\xad\x06\x42\xa6\x81\x30\xc7\x00\x6e" + "\x71\x1e\x8a\x90\x2c\x8c\x13\x3f\xfc\x80\x35\xfb\x20\xf0\xda\xa5" + "\x1b\x20\x25\xd6\xf2\x9b\x30\xe6\x53\xd4\x38\x3e\xa8\xd4\xd2\x08" + "\x1f\xad\x84\xae\xcb\x6d\x8e\xa1\xb1\x9b\xdc\xee\xe6\x1c\xeb\xa6" + "\xdd\x21\x1a\xdd\x07\x39\xf8\xd0\x78\xcd\x4c\xc5\x99\x1f\xd2\x4e" + "\x92\x16\x07\xe3\x5f\x57\x89\x99\x7d\x41\x52\xdb\xb4\x52\xf8\xe1" + "\x26\xaa\xf5\x69\x58\x61\x20\xa2\xc0\x4d\x59\x62\x22\x02\x85\x96" + "\xdc\x9e\x82\x04\xdd\x0d\x37\x37\x43\xab\x26\xe9\xfa\x86\xb7\x4a" + "\x15\xdd\xc8\xe5\x11\xc3\xfd\x23\x72\xdf\x0d\x81\x9f\xf6\x58\xd6" + "\x84\x4f\xfc\x06\x20\x32\x12\xf8\x54\xac\x98\x69\x0a\xa7\x40\xea" + "\x46\x53\x03\xb9\x35\x97\x2b\x15\x57\x3c\x55\x90\xdc\x72\xa1\xa8" + "\x8f\x7a\x24\x29\x46\x65\xd9\x98\x6f\xd4\x0d\xd1\xcf\xb9\xd7\xcb" + "\x7d\x03\x01\xa4\x3b\xd2\x05\xb7\x0c\x61\xbb\x39\xe9\xc0\x35\xc4" + "\x9e\xfe\x45\x19\xf4\x55\xbb\xe5\xfe\x7f\x97\x04\xaa\x43\xc9\x7d" + "\x18\x82\xb0\x51\x0a\x25\xf7\x67\x03\xc4\xad\x73\x1d\x01\x6e\x15" + "\x18\x9a\xa3\xac\x7d\x5d\x29\x0a\x7f\x04\xac\x7f\x95\xaf\x12\x85" + "\x5f\x69\x22\xfa\x07\x8a\xc2\x49\x88\x01\x1c\x3e\x4b\x61\x58\xbc" + "\xa5\x42\x1c\xfe\x8c\xe2\xf0\x8b\xa1\xbc\x6f\x0a\x8d\x58\x1b\xcb" + "\x94\x14\x15\x53\x95\xb6\xc8\x65\x12\x9f\x5a\xd7\x9c\x52\x4a\xac" + "\x52\x4c\xa1\x6c\xaa\x44\x6b\x7a\x8d\xa6\x46\xb4\xa6\x84\x74\xaa" + "\x44\x6b\x7a\x4d\xa6\x5a\xb4\xa6\xf7\x70\xaa\xe4\xd9\x38\x53\x11" + "\x1e\x22\x2d\xd9\xa6\xdc\x0a\xbb\x3c\x9c\x06\xcb\xa6\xd3\xf8\x78" + "\xe6\x84\xdc\x81\x4c\x92\x3c\x3f\x2f\x7d\x79\x0a\x36\x2d\x7d\xba" + "\xbe\x6b\xbe\x81\x67\x51\xf8\xef\xfc\x77\x65\x70\xbc\xf8\x49\x83" + "\xa3\xf4\x32\xb3\xb4\xb1\x40\x03\x5e\x23\x2c\x69\x05\x85\xe2\xfa" + "\x49\xed\x10\x07\x99\x2f\x65\xcc\xc7\xc6\xfc\xb2\x9b\xf1\x4a\x2b" + "\x5e\xe3\x8d\xab\x65\x2b\xde\x70\xda\x2e\xc4\xfd\x31\xb4\x0e\xd6" + "\xb6\xa9\xf5\xd2\xe9\x7d\xa1\x60\x4b\x8e\x78\x15\xef\x64\x0d\xf5" + "\xaa\xeb\x65\x59\x64\x09\xa7\x3f\x17\xde\x35\xe5\xed\x7a\xc8\x64" + "\x5a\x32\x35\x9e\x02\x69\x1c\x2d\xa6\xfc\xb9\xf0\x30\xec\xde\x53" + "\x73\x9c\xfd\xec\xb5\x2f\x11\x67\x69\xcb\x85\x03\xbc\xf1\xee\xa3" + "\x2a\x68\xea\x87\x21\x1f\x70\x16\x32\x9b\xde\x7f\x43\xc4\x4a\x48" + "\x62\xd7\xe3\xec\xde\xb0\xc4\x29\x87\xf5\xd8\x0e\xec\x68\xba\x02" + "\xa4\xd8\xc4\x5f\x05\x4d\xd5\xf0\xda\x84\x6c\xd6\x91\xae\x7b\x46" + "\x83\x43\xa9\x1a\x69\x9b\x4f\xdc\xac\xba\xe9\x22\x42\x46\xa0\x01" + "\xb9\x96\xb5\x4b\x88\x71\x62\x35\xf7\xd5\x40\x15\x94\xab\x51\x33" + "\x4d\xd0\x2a\x89\x06\x47\x56\x33\xb7\xed\xae\xb3\xa8\xc1\x39\x4f" + "\x62\xab\x46\x49\xc2\xae\x23\x60\x18\xd0\x42\x0a\xa4\x02\xb6\xef" + "\x30\xe3\xd6\x79\x54\xdf\x7a\x5f\xe4\x8e\xbf\x6c\xa7\x69\xbc\x7b" + "\x01\xfb\xd1\xb7\x82\xbe\x50\x0e\xf3\xbe\x79\xab\x7c\xdf\x44\xf6" + "\x54\x15\x85\x34\xd0\x36\x4c\xb2\x0e\x86\xab\x2f\xd6\x2c\x49\xbf" + "\x65\xf4\x03\x4e\x21\xab\x5d\x56\xa2\x4f\x49\x69\xdf\xae\x26\xd2" + "\x50\x3b\xe0\x51\x57\x94\xbd\x18\x9a\xfb\x9d\xab\x80\x05\x41\xb2" + "\x51\xb9\x96\x4f\x57\x7c\xf3\xa8\xf9\x1b\x3e\xfd\xf9\x76\xe2\x7b" + "\xda\x29\x2a\x60\xfd\x09\x07\x6a\xfb\x6e\xef\x3f\xc9\x1b\x5e\xf0" + "\xff\x39\x4f\x33\x13\x48\x78\xc6\xdd\x0b\x8e\x1c\x13\xfe\x05\xc6" + "\x3e\x49\xf3\xe5\x25\x5f\x0b\xb3\xb5\xbd\x29\x4f\x73\x76\x48\xcf" + "\x4f\x16\x79\x9e\xc4\xec\x5d\x8e\x2f\xfb\x61\x4a\x81\xa0\xd8\x57" + "\xf1\x9a\x4c\xa7\xe1\x3c\xe3\xec\x1d\xbe\x1d\x48\x8d\x3a\xdb\xa0" + "\x4c\x3a\xf5\xc0\x62\x7a\x3e\x51\x91\x6f\xd9\x22\xc6\xf7\x37\xc2" + "\xb9\x92\x5d\x51\x13\x42\xbb\x70\x3a\xbf\x65\xaf\xa8\xf4\x59\x78" + "\xc1\x2e\x28\xe7\x0c\xf9\x35\x76\x23\x52\x85\x9b\x67\xd1\xfd\x3f" + "\xff\x0f\x53\xdc\x59\x51\xb3\x3f\x01\x00", + 24586, + "application/javascript", + "gzip", +}, +{ + "/assets/__federation_shared_preact-8_xvI4no.js", + + "\x1f\x8b\x08\x00\xac\x20\xc5\x65\x02\xff\x9d\x3a\x6b\x73\xdb\xb6" + "\xb2\xdf\xef\xaf\xb0\x34\x19\x0d\x30\x82\x19\x3b\xbd\xf7\x0b\x65" + "\x84\xd3\xda\x4e\x93\x36\x0f\x37\x76\x9a\xf6\x68\x7c\x35\x14\x09" + "\x49\x8c\x28\x42\x07\x04\x65\xbb\xa6\xfe\xfb\xd9\xc5\x83\xa4\x64" + "\x39\x3d\xd3\x99\xc4\xc2\x63\x01\x2c\xf6\xbd\x0b\x6e\x62\x75\xf4" + "\x81\x2d\xd8\x2f\x4c\x0a\x76\xcd\x7e\x66\xbf\xb2\x17\xec\x37\x76" + "\xc9\x1f\xb7\xec\x0f\x3e\xbe\x65\x4a\xf0\x97\x71\x92\xe9\x5a\xdc" + "\x93\x28\x2c\xeb\x79\x5d\xd4\xeb\xfa\x05\xad\xd5\x7a\x51\xcf\x55" + "\x96\xd6\xf2\xae\xac\x57\x45\x52\x17\xfa\xae\xce\x0a\x31\x4e\x16" + "\xb7\xf5\x5f\x52\xd6\xff\x2f\x55\x5a\x67\x5a\xa8\xf8\x65\xc6\xde" + "\xf0\x1f\x95\x8a\x1f\x82\xac\x34\xbf\xa3\x59\x55\x24\x3a\x93\xc5" + "\xd1\x39\xd1\x4c\xd0\xc7\x99\x54\x64\x03\xb8\x14\x47\x59\x71\x24" + "\xa8\x1e\x17\xb7\x5c\xc0\x9f\x91\x12\xba\x52\xc5\x91\xde\x36\x2b" + "\xfe\x24\x9a\x3e\x22\xac\xe0\x3a\x58\xc7\x4a\x14\xfa\xa3\x4c\xc5" + "\x48\x0c\x06\x22\x50\x62\x25\x37\xe2\x7c\x91\xe5\x29\x80\xb5\x8b" + "\x72\x81\xe7\xb0\xc2\xae\x54\x2c\x67\x92\x65\x70\xc9\x11\x1e\x2c" + "\xed\xa1\x92\xf3\xfe\x52\x3c\xf4\x23\x05\x47\xcb\xdb\x10\xfb\x4a" + "\xcc\xfa\x51\x6e\xfb\x19\xfc\x31\xad\x51\x36\x23\xb1\x9a\x57\x2b" + "\x38\xba\x0c\x72\x51\xcc\xf5\xe2\xf5\xab\xc1\x80\x64\x41\x82\x27" + "\x03\x4a\xfc\xc9\xfc\x0f\xd1\x87\x20\x89\xf3\xbc\x5d\xc9\x5e\xd1" + "\xb0\xa0\x4c\x3f\xac\x85\x9c\x1d\x69\x38\xcd\xa3\xdb\x1f\x0c\x74" + "\x90\x8a\x59\x5c\xe5\xfa\x4a\xc9\x75\xd9\xe3\x45\x95\xe7\xb4\x41" + "\x76\x77\x96\x1a\xcc\x38\xdf\xc8\x2c\x3d\x3a\x41\x3c\xb0\xbf\x0b" + "\x03\x23\xd4\x13\xf3\x0b\xd0\x22\x63\x48\x04\xb3\x6b\x4b\xa5\x2f" + "\x96\x48\x38\x65\x09\x25\xf9\x23\xa2\x17\x6a\xb6\xc6\x4d\x42\xc1" + "\x80\x40\x21\x00\x88\x59\xa8\xd8\x64\xb2\x0c\x71\x07\x68\xf8\xdf" + "\x69\x78\x02\x7f\x85\xef\xa6\xa1\xc5\x09\x9a\x89\x1f\x5b\xd8\x46" + "\x22\x8b\x52\xab\x2a\xd1\x52\xb5\x40\x9b\x30\x8f\xa2\xe1\xf0\x97" + "\xad\x47\x35\xe7\xe6\xe6\x83\xc1\x22\xd8\x14\xc0\xe5\xde\x6e\x97" + "\x48\xca\x64\x8b\x3f\x0c\xd0\x47\xbb\xf2\x31\xa9\x14\x8a\x86\x39" + "\x6c\xdb\x82\xbc\x43\xe9\xf1\x42\xd5\xb0\xab\x9d\xff\x6a\xe5\x51" + "\x2f\xb2\x32\x30\x77\xe6\x9a\x99\x0e\xe0\xab\xc5\xbd\xe6\xa2\x85" + "\x7d\x6f\x61\x41\x1a\x84\x45\x93\x36\x1b\x4f\x26\x11\xcc\xc2\x0f" + "\xc3\x3f\xf0\x6f\x19\x64\x45\x2a\xee\x3f\xcd\xe0\xfc\xe1\x29\x35" + "\x68\x8d\x1a\xa9\x1f\x89\x33\x6d\x80\xac\xb0\x8c\xc4\x70\x48\x61" + "\x5b\x52\x70\x33\x3c\x16\xb7\xd4\xdf\xbc\x80\x01\x47\x06\x7f\x1c" + "\x0e\xa5\x75\x6d\x66\x1a\x85\x71\x52\x15\x60\xa3\x2b\x5a\x88\x97" + "\x3d\xbe\xbd\xc8\xbf\x1a\x95\x62\x05\x0a\x37\xd1\xe6\xdc\xe6\x4c" + "\xec\x24\xee\x4c\xa3\xaa\x38\x20\x0c\x4c\x12\x4c\xe3\x52\x98\x29" + "\x26\xf8\xc9\x3f\xbc\xc8\xe3\xd3\x0d\xcd\x65\xa6\x4a\xc4\xcb\xad" + "\xbb\x12\x62\xd9\xe1\xe4\x4f\x88\x34\xe9\xe1\x9a\x14\x64\xde\xfc" + "\xf2\xde\x09\x1d\x0c\xae\x83\x75\x55\x2e\x60\x7a\x30\xe8\xbd\x85" + "\x61\x35\x1c\xd6\xf5\xcf\x3d\xce\x17\xa0\x12\x53\x09\x1b\x88\xcf" + "\x02\xb8\xa1\xb2\x62\x0e\x30\x84\xfc\x7c\x70\xa6\xae\x7f\xa5\xe4" + "\x6d\x47\x3d\xde\x12\x4b\xa5\x46\x49\xd0\x88\xb0\x84\xcd\x0c\x23" + "\xaf\x83\x52\x2a\x4d\x5e\xd0\x91\xe6\xd0\x5e\x64\x33\x4d\xe8\x88" + "\x7a\xfc\x04\x0c\x5a\xa2\x30\xe5\x34\x95\xe5\xbe\x21\x7d\x23\xe1" + "\x24\xe3\x48\x2d\x0a\xcb\x36\xf8\x47\x30\x32\x33\xd4\xb8\x42\x54" + "\x15\xda\xe4\x1c\xff\x10\xc9\xcf\x09\x58\xe9\x8c\x1a\x50\x9e\xe1" + "\xdf\xe1\x29\xfb\x4c\x66\x80\x94\x64\xb8\xa4\x60\xb3\x40\xde\x15" + "\x42\x5d\xff\xfe\xf3\x65\x2e\xd0\xea\xf4\xbc\x99\x60\xb8\x60\x61" + "\xe9\x1f\x8d\x93\x5b\xab\x95\x8a\x25\x11\x48\x48\x46\xed\x34\xd8" + "\x01\x36\x11\x44\xc1\x8e\xb9\x1d\x02\x8e\x25\x83\xc1\xbf\x00\x82" + "\x32\x7f\xa1\xd7\x02\x69\xee\x6e\x4f\x47\x86\xe4\xfc\xa4\xa5\x9b" + "\x10\xe4\x09\xc9\xd8\x3d\x4b\x2d\x35\x27\x6c\xc5\x2a\x56\xb2\x35" + "\xbb\x63\x31\xdb\xb0\x29\x9b\xf3\x13\xf6\xc0\xd5\x60\xa0\x50\x66" + "\xea\xfa\x0f\x76\xc3\x1f\x3c\xf1\xae\xf8\x0d\xbb\xe0\xc2\x0b\x18" + "\x52\x1e\xaf\xba\x44\x9a\x4c\x40\x00\x27\x67\x17\xa3\x09\x48\x1d" + "\x29\x0d\xd5\x96\xe3\xc9\x2d\x87\xb6\x80\x5f\x6a\xb5\xb4\xae\x9d" + "\x72\x94\xa0\x17\x53\x29\x73\x11\x17\xfd\x9d\xc1\x56\x59\x10\x3e" + "\xec\xcc\x80\xc9\x02\xd1\xd8\x85\x2e\xaa\xd5\x54\xa8\xdd\xb1\x69" + "\x36\xcf\x0a\xdd\x8f\xbe\x10\x43\xd6\xd2\x58\x5a\xfb\xa7\xa4\xe1" + "\x1b\x52\x52\x98\x7a\xc7\x1e\xbd\x01\x0a\xcb\x6d\x07\xc4\xe8\x44" + "\x58\x02\xfa\xd3\xd7\x27\x00\x58\x1a\x2d\x66\xce\x22\xc1\x2f\x58" + "\x61\xf8\x0b\x56\x38\x32\x7f\x2d\xef\x4a\x23\x32\x61\xe9\x34\x2c" + "\x22\x38\xc0\x0b\x33\x3e\x35\xc4\x98\x82\x7c\x90\x0d\x2f\x05\x29" + "\xd9\x03\x8b\xf9\x64\x38\x67\x57\x14\xc8\xc2\x8f\x4f\xa3\x8a\x5f" + "\x86\xa4\xe2\x0f\xe3\xcd\x6d\x5d\x5f\x32\xfc\xf5\xa2\x72\x75\x7c" + "\x4c\x41\xb0\x34\xdc\xa3\xda\x63\x21\x5b\xf3\xd2\x4a\xe9\x8a\x1b" + "\x5c\x40\x4a\x2b\xfc\xed\xf1\x15\xc8\xab\x69\x0e\x06\xdf\x6c\xc3" + "\x13\x80\xa5\x56\x43\x57\x06\xb7\xa4\xae\xd7\x30\x08\x5b\x79\xd3" + "\x40\xee\x78\xdb\x5a\x53\x46\xa6\xbc\x02\x24\x2f\xeb\xba\x32\xb2" + "\xee\xac\x6d\xb4\x41\xc4\x07\x83\xf9\xf1\x71\xb8\x01\xc1\x8e\x01" + "\x1e\x27\xe3\xe1\x69\x34\x1f\x0e\xc3\xcd\xeb\x38\xba\x7a\x7d\x71" + "\x1c\x43\x8f\x6f\x8e\xe3\x10\x01\xe7\x7c\x73\x06\x80\x00\x17\xc3" + "\xa5\x71\xf4\x84\x3a\x52\x78\xfe\x19\x6a\xf7\x3a\x62\x50\xd7\x66" + "\x5b\xbc\x19\x48\x14\x9c\x84\x68\x2f\xa3\x1d\x78\x7e\x08\xbe\x37" + "\x8d\x10\x34\x6d\xb4\x2e\x02\x65\x36\x23\xe6\xe6\xa9\x1b\xa5\xe1" + "\x8c\xaf\x83\x02\xdc\xcb\x75\x36\xcd\x41\xc0\xa0\x5f\xa0\xd2\xac" + "\xd9\x0c\xe7\x34\x32\x6c\xc6\x74\x13\x2c\x14\x4f\x8e\x84\xab\x1b" + "\x37\xc0\x67\x94\x52\xcb\x47\x10\x78\xc4\x18\x64\xc5\x53\x13\xd1" + "\x17\x86\x2b\x68\x6d\xf9\xcc\x35\xb9\x62\x33\xfe\x9e\x54\xc0\x82" + "\x4f\xa4\x02\x16\xf7\x4e\x29\xc3\xf5\x96\xcc\x8d\x8e\x09\x7e\x07" + "\x2a\x76\x33\x9a\x1c\x1f\x8f\x28\xce\x37\xfc\xfa\x0e\x5a\x08\xd7" + "\x5a\xfa\xb6\xcf\x8d\x44\xa6\x0d\xde\x7e\xbc\x4b\x06\xc4\x07\xc7" + "\x0d\x32\xb4\x63\x89\x75\x13\xce\x79\x17\x0a\xa6\xc5\xba\x18\xb0" + "\xa5\x27\x23\x38\x47\x9e\xe5\xde\x46\x48\x34\x07\x8a\xe7\x18\x03" + "\xa1\x0d\xc5\x2b\xc3\x72\xee\xb0\x56\x4f\x7d\xa4\x46\x9b\x87\xfb" + "\x87\xc0\x06\xb0\x5b\x46\xc2\x05\x6d\x22\xa8\x4e\x10\x90\x09\x1b" + "\x05\xf8\x19\x2e\xea\x1a\x4c\x91\xde\xb3\x35\x7a\xc7\xd6\x90\x37" + "\xe0\x9d\x22\x0d\x36\x73\x25\x88\xdf\x8a\xc0\x75\x32\x3c\x4e\xd0" + "\x2d\x0d\x85\x77\x62\x94\x75\x4e\x2b\x9a\x8b\x7b\xdf\xef\xcf\x29" + "\x3a\xb1\x30\x88\x9b\x86\xdd\xb3\xa2\x14\x4a\xff\x24\x80\x46\x82" + "\x08\x67\x55\x90\xf0\x18\x29\x77\xa1\x1d\xa6\x4f\x16\xc0\xd1\x5d" + "\x76\xb4\x68\x94\x8d\x45\xb7\x36\x1c\x69\x8f\x36\x49\x72\x1b\x70" + "\x40\x6c\x5d\x1c\x9f\x82\x37\x2b\xc0\xe2\xcc\x6c\x24\x0f\x61\xc0" + "\x8c\x7b\x6c\x41\xf4\x20\xb4\x9b\xe1\x22\x60\x15\xc7\x26\xae\x6b" + "\x22\x1a\x84\x56\xaf\xc9\xcc\x99\xb2\x53\x50\x52\x13\xfd\x8e\xb2" + "\xd7\xfc\xa4\xae\x93\xb3\xc6\x01\x98\xf8\x0b\x47\x4d\x83\xe0\x61" + "\x19\xb2\xf9\x7b\xdb\x67\xa3\xec\xf8\x78\x0b\xe0\xed\x3e\xed\xea" + "\xe4\xef\x56\x27\xa3\x64\x38\xdc\xba\xa8\xe4\xf8\xb4\xa5\x4a\x22" + "\x9e\xc4\xcf\x6d\x7e\x51\x60\x7e\xc1\xfb\xde\xe0\x83\x10\x98\x3e" + "\x26\x1c\xd0\x34\x19\x48\x5d\xff\x08\x1b\x48\xe7\x03\x40\x5a\x81" + "\xbc\xdd\x04\x05\x23\x31\x2b\x4d\x98\x85\xec\x1a\xa8\xef\x6d\x8e" + "\xcd\x4d\x9c\x57\xa2\x85\x13\xc9\x52\xa4\xd0\x2d\x6c\xe6\x80\xfb" + "\xf9\xd3\xb1\xed\x4f\x6f\xef\xf6\xbb\x97\x3b\x31\x3e\xc1\x15\xfd" + "\xe3\x3e\xca\xaf\x30\xd9\x05\x08\xcd\x03\xca\x4b\x14\xf5\xfb\x34" + "\xd4\x10\xe5\x71\x27\x97\x30\xe0\xdd\x67\xd1\xeb\xb8\x4a\x25\x02" + "\x2d\x4a\x4d\x04\x8d\x8a\xb0\x18\xf6\xd7\xf7\xfd\xf6\xac\x1f\x9f" + "\x92\x51\x84\x36\xca\x46\x0f\xfc\x90\x8b\x3e\x06\x95\x7e\xdf\xd6" + "\x2d\x43\xb0\x65\xa6\x83\xa4\x2c\x6f\x30\x58\x87\xc0\x3a\x2f\xc5" + "\x63\x0b\xac\x5a\x60\x13\x33\xee\x82\x2b\x0e\xf8\xc3\xb5\x91\xe6" + "\x02\x69\xae\x28\xea\x8a\x61\x5f\x5d\xff\xee\xe1\x01\x39\x80\x43" + "\x11\x2d\x5a\xd0\x82\x42\xc0\x52\xe0\xd5\x39\x57\xf0\xb3\x0b\x8f" + "\x13\x74\x8b\xc8\x1c\xe1\x45\x1c\x0d\x25\x20\x21\xc6\xa7\xa6\x5d" + "\xf4\x41\x40\x50\x73\xe1\x9a\x98\xc7\xae\xf3\x18\xe4\xe9\x25\xb9" + "\x92\x10\x48\x08\x75\x1e\xaf\x41\xdc\x04\x7d\x51\xbb\xd6\x8b\x97" + "\xac\xff\xe2\xb4\x8f\xe6\x01\xe0\xb5\x7c\x2f\xef\x10\x0a\x34\x93" + "\x62\x82\x18\xed\x8d\x05\x65\x9e\xc1\x7e\xaf\xd0\xb0\xf8\x26\xe4" + "\x26\xa0\x8a\x80\x65\x0e\x99\xb0\xe9\x8d\xc5\x10\xe4\xa1\x00\x4e" + "\xaa\xa8\x08\x2a\xae\x82\x2a\x24\xd8\xb8\x88\x35\x98\x02\x79\x47" + "\x10\x2c\x4e\xd3\xcb\x0d\x18\x8f\xf7\x59\xa9\x05\x44\x97\xc0\x7a" + "\x19\xfd\x3b\xfc\x8b\x49\x70\x3d\xda\xe5\xe0\xcf\x41\x8c\x1a\x22" + "\xc0\x5d\xfb\x69\x5c\xcc\x85\x92\x55\x99\x3f\x5c\x0b\xfd\xae\x00" + "\xd8\xb7\x37\x1f\xde\xf7\x8d\x3a\xe6\x74\x87\x14\xf7\x60\x83\x96" + "\xe4\x6d\x1d\x2e\x28\xdc\x7d\xd1\xa7\xed\x54\xf9\x31\x5e\x19\x8a" + "\x94\xfd\xbd\x03\xee\xb2\x54\x2f\x90\xcc\xd8\x59\x88\x6c\xbe\xd0" + "\x4d\x0f\x93\x7b\xd7\xce\x01\x51\xdf\x06\x96\xae\x7c\x5b\xc7\xd3" + "\x77\x98\xb7\xf9\x7e\x0a\xe1\x74\x2e\xe3\xd4\xf7\x95\xbc\xbb\x5e" + "\xc7\x85\xef\x26\x32\xef\x76\x15\xd8\xfb\xbe\x13\x20\x4d\xb5\x7a" + "\x78\xb4\xba\x81\x7a\x62\x73\x1b\xf0\x24\x49\xac\x93\xc5\xe3\xb6" + "\x23\xcd\x1d\xb5\x26\xad\x7d\x07\x21\xe9\x9d\xa2\xbc\xfc\xef\x6d" + "\xcf\xeb\x9f\x25\xf5\x8f\x1a\x24\x7a\x5a\x81\xd3\x12\x48\x7f\x50" + "\xca\xce\x08\xe8\x6c\x37\x6b\xfa\xab\x53\x3d\xc1\xb4\x36\x1f\x5b" + "\x8b\x3d\xec\x9d\x1a\x13\x0d\x3d\x43\x7b\xf8\x3d\x03\xe2\x57\xce" + "\xe8\x59\xd1\x85\xc1\x8e\x24\x34\xce\x90\x2c\x02\x81\xdc\x8e\xdc" + "\x2f\x26\x98\xdd\xe2\xcb\xbf\xbb\x39\xf7\xee\xa1\x27\xb7\x7f\xb7" + "\xf8\xf3\xa1\xdc\xc1\x5e\x21\x65\x07\x72\x07\x08\x6c\x6f\xd8\x15" + "\xbb\x60\x4b\x54\x0b\x38\x04\x6f\x25\x82\x4e\xb9\xa1\x09\xc6\x1a" + "\x6f\x83\xb9\x78\xd1\xa6\x43\x60\x19\x6c\xca\xb5\x00\x0f\x26\x4c" + "\xb0\x52\xd8\x08\x00\xc7\x6c\xae\x2b\x39\x3a\x0a\x46\x52\x48\x1d" + "\x21\xb0\x06\x97\x91\x02\xf5\xad\x9d\x72\xac\x5c\x76\x59\x69\xb8" + "\x8f\x75\x23\xd8\xd0\x46\xf1\x1b\x0e\x8b\x97\xbe\xae\x70\x83\x0e" + "\x06\x32\x9e\x71\x8a\x11\xf1\x2d\x9b\xf2\x34\xda\x44\x1b\x0b\x1b" + "\x18\xeb\x1d\xe2\x54\xa8\x4c\x66\x97\x44\x77\x9c\x4c\x0c\x72\x89" + "\x41\x2e\xc1\x2c\x90\x63\xa5\x01\xa2\xf8\x3e\xac\xd2\x12\xd1\xe8" + "\x83\xe4\x2d\x07\x83\x65\xd0\x8c\x80\xcc\x60\x82\x1b\xd9\xa5\x90" + "\x1f\x88\xbb\xa3\x25\x89\xd9\x14\xa2\xc6\xee\xd8\x57\x33\xc6\x26" + "\x5d\xca\xf1\x25\xf4\xed\x7a\x3e\x13\x94\x6d\x20\x8e\x0e\xca\x6a" + "\x4a\x26\x08\x68\xcb\x25\x31\xb4\x4a\x0d\x42\x02\xc2\xeb\x5a\xc6" + "\xba\x4c\x9a\x0a\xca\x94\x21\x9a\x05\x44\x9d\x2b\x83\x30\x66\xed" + "\x66\x68\x61\x72\xb8\x60\x52\x4e\xa1\x41\xcd\x50\xd9\x24\x02\xb6" + "\xe7\x76\xa4\x6c\x19\xcc\x85\xbe\x80\x44\x7d\x23\xd2\x6b\x1c\x7a" + "\xa3\xe4\xaa\x53\x2b\x6b\x56\xf8\x25\xcd\x80\xc9\x9a\x4d\x13\x6c" + "\xe7\xb9\x1d\xfc\xce\x76\x24\xf6\xc0\x94\x55\x7c\xe2\x53\x30\xbf" + "\xad\x99\xdc\x70\xc1\x56\xf4\xf9\x3d\xfc\x25\x90\x06\xab\xb5\x2c" + "\x40\xcc\xbf\x66\x79\xfe\x41\x56\x98\x90\x3f\x3f\x47\x2c\xd9\xdc" + "\xf0\x45\x96\xee\xad\x00\x92\xd9\x28\xf1\x00\x14\x6d\x5c\xdf\xdf" + "\xe3\x15\x83\x4a\x54\x4f\x50\xf8\x2c\x12\x01\x6b\x76\x88\xfa\x1d" + "\x10\x2b\x2f\xbd\x89\xcb\x31\x80\x3e\x0b\x59\xe5\xe9\xb9\x87\xff" + "\xb2\x4e\xe1\xec\x76\xa3\x83\xd3\x9e\xda\xb0\x95\xb1\x77\x75\x2d" + "\x7c\xc6\x67\xb2\x5b\x1b\xf0\x9b\xb1\x9e\x1b\x33\x67\xed\xc9\x1e" + "\xb7\x9b\x38\xe9\x3a\xa5\x6c\x5f\x8b\x97\xb6\x38\x60\xdb\x01\xec" + "\x79\x19\x27\x8b\x36\x12\xff\x48\x1f\x3f\xc2\xbe\x1f\x51\xa7\x30" + "\x1a\xc7\x92\xc4\x68\x7e\x66\x64\xd3\x07\x9e\x90\x61\xd2\x1d\x16" + "\xc0\xdc\x78\x7e\x4b\x47\x5e\x82\xad\x4c\x3b\xf0\xc1\x20\x73\x70" + "\xb4\xb1\xfc\x7b\xc4\xdc\x27\xd0\x81\xc9\x0e\x79\xf6\x24\x63\x7f" + "\x71\x83\x57\x73\x27\xfa\x78\x68\x05\x31\xe6\x13\xae\x88\xe1\xf0" + "\xae\x8e\xb6\x34\x9d\x4c\xae\x20\x61\x32\x9c\x05\x6a\xb2\x07\x63" + "\xf3\x14\xbb\xe1\x27\xec\xbf\x30\x35\x96\x67\x87\x39\xc3\x20\xc2" + "\x86\xd0\x91\xb2\x94\x7b\xcb\xe2\xb9\xc9\x5a\x0d\x73\x58\x51\x76" + "\x05\x6c\xb8\xda\x65\xc3\xd5\x21\x36\x5c\x75\xd8\x60\x5d\x57\x2a" + "\x8f\xfe\xe1\x99\x3b\x88\x8f\xee\x20\xc4\x16\xc6\x68\x40\xea\x3a" + "\x1c\xde\x9c\xbd\xfa\x3f\x3c\x6a\xf7\x6e\xa0\x6f\xe6\x09\xe2\xdc" + "\xee\xd1\x58\x24\x05\xc6\xc7\x98\x1f\x45\x9f\x42\x11\xb4\x30\xab" + "\xba\x36\x13\xd7\x45\xbc\x06\x05\x71\xb9\x98\x65\x95\x8f\x04\xc8" + "\x9a\x3f\x0b\x83\xec\xc4\x90\x10\x33\x91\x37\xe4\x82\xa7\xfe\xec" + "\xd4\x25\xb9\xfc\x1d\xb6\x9b\x9a\x40\x94\x3a\x0f\xd3\x14\xa2\x52" + "\x1a\x5d\x84\xe3\x8b\xdb\x03\x4e\x17\x70\x36\xb5\x59\xb1\xef\x0c" + "\x9f\x11\x74\x76\xe7\x8c\xee\xa5\xa1\x8c\xad\x26\xd8\x78\x07\x35" + "\xcc\x6a\xb6\xd9\x80\xcc\x20\x33\x71\xb5\x60\xac\x95\x1a\x49\x4b" + "\xdc\x11\xbd\xde\x8c\xc9\xb1\x6c\x0a\xe8\x09\x75\x85\x09\x86\x62" + "\x28\xc8\x47\x93\x98\x58\x36\x4b\x6f\xd2\x76\xcc\x46\x44\xf6\x75" + "\xde\xd9\x02\x8c\x86\xb1\x53\x09\xe2\x6c\x43\xe7\xd2\x78\xe5\x91" + "\x71\xf0\x69\x36\x9b\x89\xd4\xf9\xf8\x36\x34\x99\x3c\xad\x42\x80" + "\x7c\xaa\xb3\xc2\xcb\xa6\x02\xd9\xfc\x46\x8a\xb1\xc2\x84\x6a\x38" + "\x6c\x7e\xe8\x08\x31\x4f\xf0\x19\x03\x7e\x20\x46\xc3\xca\xce\x5e" + "\x31\x00\x8b\xe2\x18\x30\xf2\xdc\x16\x62\xbd\x7f\xdc\x87\x93\xf4" + "\x51\xda\x87\xa5\x1c\xb5\xd8\x52\x17\x06\x2d\x6d\xa4\x59\xb8\x81" + "\x08\xb0\x83\x77\x75\xa0\x1e\x6b\x23\xaa\x7b\x66\x62\x2a\x20\x8e" + "\x55\x87\xaa\x89\x56\x4a\x17\x4d\xb1\x35\x5c\x11\x4c\x45\x69\x72" + "\xb1\x8d\x49\xa3\x72\x2c\xbb\x33\xd9\x7d\x20\x18\xad\xcf\xa4\xa7" + "\xc2\xda\xbd\x01\xdc\x73\x39\x5e\x63\x72\xdd\xef\x46\xa8\x68\x36" + "\xee\xc1\xd4\xf7\x4a\xd8\xa9\x8c\xee\x83\x5c\xc2\x6d\x30\x9e\x87" + "\x13\xca\xf0\x3e\xc0\x77\x9e\x1b\x2b\xbb\x3f\x80\xfd\xd7\xfc\x9e" + "\xe1\x3e\xe6\x30\xf7\x40\x80\xb6\xcb\x15\x5c\x4c\xf0\x5a\xf2\xdd" + "\xf7\x98\x54\x26\xe6\xc9\x2d\x48\x00\x5c\x0b\xcc\xf5\xb0\xf0\x41" + "\x2a\xac\xd5\x83\x0e\xec\x4e\xbb\x4a\xf9\xc7\x6b\xd2\x5f\x68\xbd" + "\x0e\x5f\xbe\xbc\xbb\xbb\x0b\xee\x7e\x08\xa4\x9a\xbf\x7c\x75\x72" + "\x72\xf2\x12\xef\x8d\x75\xdc\xc3\x0b\x09\xd0\x2d\xc8\xe0\x3a\x15" + "\x10\xc5\xca\x77\x02\x66\x67\xdb\x45\x6c\x05\x8d\xaa\xae\x13\xf3" + "\xd0\x17\xeb\xd8\x76\x89\xeb\x54\xad\xf3\x96\x5c\x0e\x06\xee\xe5" + "\xd0\xbd\x57\x21\xea\x58\x43\xe5\xa4\x61\x54\x5d\x5f\xd2\xe0\x99" + "\x5c\x8a\x4d\x78\xf5\xec\x5c\x2f\x31\x04\x93\x9d\x07\xc6\x15\xbe" + "\xfd\x22\x97\xd7\x67\x90\xea\x79\x36\x95\x5d\x6e\xae\xc6\xdd\x19" + "\x60\x46\x50\x00\xbf\xf0\xc9\x71\x77\xd4\x84\xad\x23\x32\xa9\x6b" + "\x54\x1e\x32\x81\xff\xa9\x73\x4e\x7a\x95\x73\x9e\xba\x16\x1a\x3d" + "\x3f\xc6\xb1\x0c\xe5\xd0\xa3\x86\x24\x4d\x97\x4f\xda\xc5\x75\x0d" + "\x29\xb8\x71\x5a\xa6\xea\x52\x41\x22\x00\x64\x06\x13\x45\x85\x7b" + "\x0d\x68\xf3\x40\x6b\x0c\xd7\x5e\x96\x1b\x5b\x47\xa3\x75\x08\x68" + "\x7a\x55\x18\x0c\x4a\x97\xfe\x41\x9a\x58\x7c\x9a\x7e\x13\x89\xee" + "\x1b\xfd\x90\x91\x84\x8c\x3d\x34\xe6\x63\x30\x78\x4f\x0a\x06\xf2" + "\x8e\x4a\xc3\xba\x84\x5b\xf3\x56\xe4\xb1\x42\x8a\x52\xea\xcd\xef" + "\x9f\xc4\xc8\xfe\x28\x81\x1b\xb9\x5a\x0c\xc8\x3d\xc4\x5c\xb0\xaa" + "\xb2\x74\xa2\xbd\xce\x0b\xee\x1a\x4b\x78\x76\xbc\xae\x8d\xae\x01" + "\xea\x73\x25\xca\x12\x14\xae\xb7\x76\x63\x72\xed\x8a\xac\x08\xbe" + "\x72\xdb\x0c\x06\x58\x3f\x71\x87\x40\x66\xe4\xc6\x4d\x51\xb7\xa9" + "\xfc\x74\x0e\x77\x43\xdd\xe3\xed\xe9\x6e\xc2\xed\xe7\x57\x9a\x1d" + "\x5d\x07\xf7\xa4\xdb\xa7\x4f\xf4\xdf\xbc\x5d\x34\x16\xec\xc0\xfb" + "\x76\xa4\x6d\xaa\xea\x1e\x69\xb9\xcb\x82\x89\xf2\x76\x4b\xa1\x45" + "\x6f\x37\xfc\xb4\xf7\x7a\x8f\x16\x68\x11\x54\xc5\x0a\x23\x5d\x34" + "\xa3\xae\x09\xc9\x23\x03\x2f\xab\xdd\x43\x04\x51\xfe\x04\x7c\x4b" + "\x72\x4d\x73\x37\x38\xa3\xae\xbf\xe1\x31\xe6\xe1\x92\xba\x65\x98" + "\x47\xf5\x5a\x3b\xa2\xf6\x62\x30\x7b\x88\x49\xe5\x0e\x4f\x91\x03" + "\x06\x18\x3c\x86\xb2\x7e\x53\x99\x40\xca\x9c\x68\x8e\x72\xf4\x46" + "\x21\xb6\x87\x2f\x8d\x1c\xe5\x58\xc0\x3e\x53\x5e\x96\x72\x50\x38" + "\x35\xce\x6f\x07\x83\x4f\x04\x7f\x91\x10\x6d\x59\xf9\xc9\x5b\x05" + "\x1d\xe1\xac\xab\xb0\x9b\x78\xe1\x4f\xfb\x5c\x4b\xcd\xa1\xbc\x7d" + "\x69\xf5\xaf\x0f\x2d\x99\x67\xfb\xd5\x65\xff\xf2\xed\x13\x40\x98" + "\x2e\x3a\x8e\x64\x7d\xe8\xab\x0a\xe3\xdb\xac\x6b\x33\x95\x71\x96" + "\x73\xbc\xde\x81\xf2\x06\xb5\xcf\x6b\x85\x7d\x0b\x5e\xda\x58\x1f" + "\x0b\xf8\xe0\xe6\x32\xfc\xf3\x19\x5d\x23\x27\x3d\xac\xac\xc1\x2c" + "\x35\x9a\x0d\xe1\xd7\x3b\xcb\xb6\xb1\x86\x2c\x31\xc7\xc7\xaa\x4b" + "\x70\xea\xcf\x3e\x74\x9a\xe5\xd1\xb8\xb8\x0d\x73\x7b\xa0\x08\x66" + "\x99\x2a\x6d\xf0\xe5\xbf\xca\x10\x5d\xdb\x6a\xdf\xd3\xa4\x5b\x59" + "\xc0\x3a\xf4\xa2\x62\x67\x21\x58\x8c\xcc\x3c\x8e\x4a\xa6\xa1\xd5" + "\x12\x25\x76\x0f\x02\x8e\x38\x71\x37\x62\x58\x1c\x22\x18\x78\x07" + "\x13\x14\x6a\x6b\x9e\x3a\x25\x5f\xcb\x5d\xf4\x11\x26\x9c\xee\x7e" + "\xcf\x81\x5f\x79\xf0\x03\xe3\x10\xfb\xfd\xed\x87\x2c\x89\xff\x90" + "\xa5\xf3\xcd\x48\xd6\x3e\x51\xe1\xd7\x23\xa1\xf9\xce\xc5\x49\xc1" + "\xc1\x6f\x5d\x92\x7f\xf2\xad\xcb\x17\xe2\xde\x07\x12\xa6\x50\x4a" + "\xf1\xcd\xc0\xbc\x3c\xf8\xc7\xc1\x0e\xad\x36\x8e\x8e\xe6\x03\x09" + "\xfe\x88\x5f\x90\x08\xde\x87\x9f\xf3\xfe\xf0\xb7\xe1\x10\x3f\x3a" + "\xd1\x0c\x62\xe7\x12\x4e\x50\x61\x13\x0f\x99\xa2\xb1\x43\x5c\x35" + "\x38\x62\x70\xc4\x80\x40\x9b\x2c\xdd\x01\x76\xcf\x17\x4c\x8e\xba" + "\x12\xbf\x17\x99\x83\xcd\xf6\x4f\xee\x8f\x5b\x8a\x15\x3c\x84\x62" + "\x87\x40\x79\x27\xdd\x72\x3b\xca\xad\x85\x3c\x98\xef\xb6\xf0\x59" + "\xf7\xa3\x13\x6b\xb2\x81\x25\x99\x6d\x0d\x06\xf9\x5e\xd8\x07\x7e" + "\x3b\xb1\xf9\xd8\x09\xfb\x09\x7a\x10\xdf\xb9\x63\xaa\xe9\xce\xa6" + "\xb9\x8d\xc6\x33\x3a\xc2\x9b\x26\xb0\xe3\x21\xc3\x35\x3a\x3c\xdc" + "\xbd\x0e\x60\xb0\x36\x85\xe3\xbc\x89\xc4\x41\x01\xc0\xa9\x40\x10" + "\x93\x58\x76\x67\x18\x67\xb2\x96\xea\xdb\xe6\x3b\x9e\x22\xf0\xc4" + "\x37\x89\x40\xe0\xf9\xd6\x2d\x7f\xf1\x62\xfb\x81\xff\x61\xab\xd3" + "\x6c\x81\x1c\x17\x2d\xa7\x9a\xe7\x26\x1f\x6a\x5b\x5b\x63\x93\x91" + "\x91\x89\x2f\x73\x5b\x0e\xc3\xaf\x3e\x50\x5d\x7d\xc5\x0d\xb8\x96" + "\x77\x6d\x18\xcc\xcb\x43\x15\x91\x4b\xa5\xb0\x36\xe8\x52\xb5\x1c" + "\xcb\xa8\x66\x8e\x3c\x0f\x6d\x5e\xe7\x32\x13\xa1\xa7\x60\x89\x76" + "\xd2\xeb\x73\xf4\x03\x9d\xed\x9e\xcc\xc1\x95\x40\x07\xb0\x34\xd6" + "\xec\x90\xf9\x80\x35\x37\x49\x53\xee\x9c\x49\x82\x51\x6f\xb2\xd5" + "\x0b\x25\xef\xc0\xcd\x6e\xd9\x2f\x90\x78\xcb\x8e\xec\x74\xca\xab" + "\xed\x27\x3b\xdd\xba\x9d\xd7\xed\x2d\xfb\xda\x49\xcf\xfd\x0d\x79" + "\x97\xca\x4e\xe1\x46\x85\xad\x0f\x43\x42\xdb\x6c\xd9\xf4\xed\x94" + "\xc9\x79\x23\x3f\x1a\xfa\x86\x33\x66\x0d\xc4\x73\x5f\xb8\xe1\x47" + "\x46\x36\x1b\xc6\x8f\xe0\x1a\xd1\x07\x8a\x82\xb7\x3e\x87\x18\x0b" + "\x93\xa2\xbd\xb3\xb1\xd8\x23\x7c\xaf\x9c\x5a\xd1\x86\x13\x7e\x22" + "\x38\x04\xb1\xc8\xce\xfd\x40\x54\x12\xb1\xaf\x67\xda\xe9\x99\xdd" + "\xcc\x35\x8d\x1a\xe9\xe6\x98\x85\x7f\x7b\x7d\x66\x63\x57\x02\x7d" + "\xc7\xae\xd1\x2c\xfc\xea\x9d\x1b\x88\xf8\x2a\x2b\x77\x5f\x92\xdd" + "\x58\x67\xb1\x5e\x88\x22\x98\x82\x0a\x11\x3f\x07\x61\x9d\xcc\xc1" + "\xdc\x51\x1a\x02\x4b\x6e\xb2\x95\x90\x95\x66\x2f\xf6\xd8\xd2\xf9" + "\xb6\x6c\x83\x25\xe7\x63\xe1\x5b\x5b\xe6\x3e\xb9\x61\xbf\xe1\x17" + "\x58\xf7\x6b\xa9\xf4\xe3\xd7\xa3\xb8\x3c\x6a\xac\x0d\x7b\x87\xdd" + "\x37\x2a\x9e\xa3\x39\x66\x0b\x81\xdd\x24\x87\x39\xe7\x2e\xd9\xc6" + "\x0e\x99\x44\xc6\x19\x33\x96\x77\xc6\x3c\x5c\xda\x19\xfb\x0c\x56" + "\xdb\xc2\x2c\xc0\xcf\x99\xdf\x87\x54\x61\xfd\x44\x9a\x5e\x56\xfe" + "\x1e\xe7\x59\xea\x97\x2e\x70\xcc\xc6\xac\x25\x5b\x1b\x08\x4b\x49" + "\x96\x99\x8e\x96\xc6\x94\x9a\x2f\x44\xb7\xa3\xff\xf9\x0f\x21\xb0" + "\x9b\x73\x9c\x2a\x00\x00", + 4438, + "application/javascript", + "gzip", +}, +{ + "/assets/index-2cY8-ZxW.css", + + "\x1f\x8b\x08\x00\xac\x20\xc5\x65\x02\xff\xed\xbd\x6b\x92\x23\x39" + "\x92\x26\xf8\x7f\x4e\xc1\xc9\x92\x94\x08\x66\x92\x2c\x9a\x19\x8d" + "\xf4\x87\x64\xca\x74\xb7\xec\xcc\xac\x48\xf5\xfc\xe8\x96\xfd\x31" + "\x52\x92\x3f\x8c\xa4\x91\xce\x0e\x23\xe9\x4b\xd2\x23\xc8\xa4\x78" + "\xc9\x1c\x62\x0f\x30\x67\x99\xa3\xec\x49\x16\x4f\x33\x55\x00\x0a" + "\xc0\x8c\x8c\xc8\xe8\xad\xc9\x47\x84\xbb\x41\xf1\x50\x55\x40\x15" + "\xc0\x07\x28\x9e\x0e\xfb\xfd\x69\xf0\xd7\x65\x71\x2a\x86\xf3\xe3" + "\xf0\xf4\x52\x6e\xcb\x5f\xaa\xcd\xfa\xe5\xf4\xdb\x75\xc8\xbf\xcc" + "\xab\xb7\xf2\xa9\xf7\xa7\xf1\x72\x5a\xae\x96\xcf\xe2\xd3\x66\xb7" + "\xdc\xac\xf7\xec\xe3\x74\x9a\x8c\x57\xa9\xfc\xf8\xfa\x76\x78\xad" + "\x38\xe5\x74\x35\x49\x17\x89\xfa\xb8\xd9\x7d\x62\x9f\x96\xd3\x2c" + "\x7b\x98\xc8\x4f\x87\x72\xc9\xbf\x2c\xb2\x7c\x92\xcb\x2f\xfb\x43" + "\xb1\x5b\xf3\x9c\xab\xe5\xac\x4c\x14\xd9\xa5\xac\xaa\xfd\x17\xfe" + "\x71\xb5\x48\xc6\x33\xf9\x71\x7d\x28\xcb\x1d\xfb\x96\x3c\x3e\xcc" + "\x72\x45\x78\x2a\x8b\x8a\x7d\x4a\xc7\x8b\xc7\x47\x45\xb6\xb8\x14" + "\x3b\xd1\xe4\x45\xb1\x1a\x3f\x2b\x2e\x8a\x05\x6f\xc9\x78\xac\x3e" + "\x7c\x79\xd9\x9c\x44\x9d\xab\x95\x2e\xbb\xb8\xf0\xd6\x2f\x66\xf9" + "\x6c\xd9\x7c\x1a\x2e\x8b\x03\xcf\x98\x4d\xb2\x62\x32\x06\xdf\x93" + "\xf1\x98\x67\x7f\x58\x3d\xae\x0a\xf0\x39\x15\x9f\xcb\xc7\x72\x51" + "\x82\x82\x87\x99\xf8\xbc\x2c\xcb\xb4\x9c\x82\xcf\x13\xf1\x79\x51" + "\x2e\x27\x4b\x58\x48\x2e\x3e\x17\xcb\x79\x3e\x87\x4d\x99\x8a\xcf" + "\x56\x0b\x67\xe2\xf3\xe4\x31\x1f\xe7\x33\xf0\xf9\x41\x7c\xb6\xda" + "\xfd\x28\x3e\xa7\x49\x9a\xa7\x8f\x4a\x49\x87\xcd\xb6\x38\x5c\x0c" + "\x25\x1f\xcb\xc5\x7e\xb7\x94\xdf\x61\x95\xc7\xb7\xc5\xa2\x3c\x1e" + "\x0d\x2d\x6c\x76\xab\xbd\x21\xf2\x2f\xc5\x61\xb7\xd9\xad\x0d\x15" + "\x2e\xb9\xae\x0f\x46\x0f\x10\xfd\xcd\x90\xa6\x92\xbb\xa3\xa1\xc3" + "\xc3\x7a\xfe\xd4\x4b\xb2\x41\x2f\x49\xc6\x83\x5e\x9a\x67\x46\x8b" + "\x15\xc1\xf8\x81\x53\xcc\xd8\x1f\x69\x8e\xda\x2e\xd3\xd3\x9c\xa5" + "\x64\xec\x8f\x07\xc0\x43\x53\x76\x3a\x4e\xd9\x1f\x13\xcc\x8c\xce" + "\xc9\xb3\x3e\x32\x22\xc4\x94\x4a\x4c\x59\x9b\x72\x96\x36\x7d\x04" + "\xcc\xa9\xb4\xc9\x03\x2f\xf3\x91\x37\x7a\xdc\xb0\x29\x13\x33\x96" + "\x27\x63\xad\x9d\x24\x98\xdb\x53\x79\x3e\x0d\xcb\xed\xeb\x4b\x71" + "\xdc\x70\xb1\x8f\xf3\x74\x31\xcd\x4d\x96\x4d\xaa\x74\x9e\xae\xb2" + "\x14\xb3\x6d\x95\x54\x64\xd3\x34\x05\xcc\xdb\x55\xe5\xc9\xd4\x90" + "\x80\x49\x33\x9d\x4e\x96\xe3\x0c\xc9\xc1\x24\xc9\x1f\x92\x3c\x59" + "\x40\x69\x98\x14\xb0\xf3\x0a\x89\xf8\x08\xb4\x60\xe6\x6b\xc6\xd9" + "\xfc\x24\x8c\xce\x62\x55\xa6\x7a\x24\x37\x42\x81\x14\x6c\xe4\x65" + "\xa5\xd1\x0f\x60\xfa\x32\x29\x67\xcb\x25\x10\x06\x2e\x7e\x35\x59" + "\x2d\xb0\x20\x60\x3a\xb3\x22\xd9\x62\x89\x84\x80\x92\x1f\x96\x33" + "\x3d\xc0\xa5\x00\x50\xea\x82\xfd\xbb\x04\xcc\xa3\x9a\x81\x6d\xa8" + "\x19\xdf\x1f\x96\xac\x86\x9a\x86\x19\x9b\x7c\x55\x5a\xcc\x1b\x54" + "\x8b\xc9\xe2\x61\x31\x37\x04\x60\xd0\x14\xd9\x62\x35\x9f\x43\x21" + "\x58\x55\x95\xc5\xea\xd1\x10\x84\x41\xb3\x5a\x95\xd3\xc7\x05\x16" + "\x86\x49\x92\x14\xe5\x3c\x47\x02\x31\x28\xa0\x05\x95\x42\x31\x9b" + "\x0a\xac\xa3\x30\xe6\x60\x6c\xea\x3f\x80\xed\x97\xa9\x6c\x68\xf2" + "\xff\xe4\xf7\xd5\x7e\x77\x1a\x1e\x8b\x1d\x17\xda\x61\xb3\x7a\xea" + "\x1d\x2f\xc7\x53\xb9\x1d\xbe\x6d\x06\xbd\x61\xf1\xca\xbc\xd9\x50" + "\x7e\x19\xf4\x7e\xf8\xd7\x72\xbd\x2f\x7b\xff\xd7\xff\xf9\xc3\xa0" + "\xf7\x2f\xfb\xf9\xfe\xb4\x67\xdf\xfe\x6b\x59\x7d\x2e\x4f\x9b\x45" + "\xd1\xfb\x6f\xe5\x5b\xc9\x52\x7e\xf8\x6f\x2c\xa1\xf7\xaf\xac\x44" + "\xfe\xcb\x5f\x36\xf3\xf2\x50\x9c\x36\xfb\x9d\xfe\xf4\x0f\x87\x4d" + "\x51\x0d\x7a\x4d\x95\x8c\xea\x1f\x78\x3d\xbd\x7f\xda\x57\xfb\x43" + "\xef\xff\xd8\xee\xff\x6d\xf3\x03\xa8\xcd\xf1\xe5\x5f\x2f\xdb\xf9" + "\xbe\xaa\x2b\x83\x19\x01\x57\xdb\xfd\x6e\x7f\x7c\x2d\x16\x4c\x50" + "\xff\xfa\x9f\xff\x99\xfd\x32\xfc\x97\x72\xfd\x56\x15\x87\x41\xef" + "\x9f\xcb\x5d\xc5\x5a\xcf\x3e\x16\x0b\xf6\xf7\x3f\xed\x77\xc7\x7d" + "\x55\x1c\x71\x83\x79\x16\x5e\xc7\x3f\xed\xdf\x0e\x9b\xf2\xc0\x18" + "\xfc\xc2\x7e\xad\x4b\xad\xdd\xc9\x72\x53\xee\x98\xe1\xae\x36\xbb" + "\xb2\x38\xd4\x1f\x3e\x26\x0f\xe3\x65\xb9\x1e\xf4\x98\xcc\x8b\x8f" + "\x48\x23\x83\xde\x28\xc9\xfb\xee\x94\x71\xbf\xaf\x14\xb6\x5f\x5e" + "\x24\x1f\xab\x62\xbb\xa9\x98\x07\xfa\x5c\x1c\x3e\xba\x74\x66\x65" + "\x38\x6e\x7e\x2f\x9f\x92\x43\xb9\x35\x13\xbe\x94\xd2\xc7\x4c\xf4" + "\x04\x40\x24\xf1\x86\x0f\x5f\x54\x52\x32\xca\x41\xd2\x82\x4b\xd6" + "\x70\x40\x4d\x82\xdb\x64\x8b\xf4\xf9\x1a\x4e\x2b\xd4\x27\xb2\x73" + "\x6a\x1b\x57\xd7\x57\xcf\x50\x70\x8a\xa3\xff\x36\x43\x5d\xe5\x15" + "\x42\x6d\xda\xc4\x64\x3d\xcb\xfb\x4e\x5a\x77\xf3\xa1\xe1\x34\x86" + "\x20\xb2\xa9\x92\x17\x9e\x3b\xcd\xa6\xfc\x8f\x47\x3d\x15\x3b\x9c" + "\x36\xde\xf6\xe8\xe6\x60\x4a\x77\x6b\x6a\x1a\x29\x50\x30\x35\x00" + "\x29\xa4\x5f\x7d\x29\x59\x5f\x64\xc6\x49\x35\x65\xb3\x7b\x61\xfd" + "\xe5\xa4\x2d\xce\xee\x53\x23\x6f\x30\xe7\x69\x12\xa8\x39\x86\xa0" + "\x58\x32\x61\xc8\x81\xf2\xd4\x7b\xdb\x31\xab\xc4\xbb\x11\x48\x7f" + "\xd9\x7f\x66\x96\xaa\xae\xa0\xc8\x1f\x16\x85\x3b\x59\xcf\x54\xd8" + "\x24\xe4\x41\x4c\x39\xd4\x04\x76\xbf\x2c\xeb\xfc\x70\xf2\xfc\xc2" + "\x7a\xaa\xb4\x97\xae\xee\xd9\xa4\xea\x3e\x58\x3b\x25\x65\x3d\xbf" + "\x6c\x96\xa7\x17\x56\xe1\xeb\x19\x7d\x3e\x9e\x2e\xdc\xa6\x32\x43" + "\xb0\xc1\xf4\x75\x1b\xc0\xc4\x15\x26\x0d\x4f\x6c\xee\x7e\xac\xde" + "\x16\xc2\x0c\x08\x7d\xab\x2e\xca\x07\x7a\xdd\xfb\x54\x16\x6e\x1e" + "\xde\x98\x37\x1f\x65\xb3\x1c\x0c\x51\x90\x36\x3c\x6e\x59\x72\x4a" + "\xa5\x56\x8c\xad\x11\x95\x78\x66\xcb\x80\x84\x4a\xe3\x89\x29\x91" + "\x98\xf2\xc4\xda\xc2\x58\x19\x5d\x3c\xb0\x85\x4d\xc5\x32\xe5\x63" + "\x50\xe4\x79\x78\x7c\x29\x96\x7c\xcd\x32\x96\x8d\x14\xad\xb1\x84" + "\xd2\xc8\x44\x67\x10\x4c\xb3\x3c\x89\xe0\x5b\xb1\x6f\xe6\x1b\xcf" + "\x1c\x19\xb9\x3c\xc6\xb2\x9a\xcc\x55\x97\x2b\xcf\x66\x77\x2c\x4f" + "\x7c\x40\xb0\xbf\x78\xe6\xd7\x73\x2f\x65\xff\x93\xd5\xad\xf6\x0b" + "\xc6\xef\x81\x8f\x25\xd5\x7b\xa0\x7e\x40\xea\x9e\x79\x86\xcd\xe9" + "\x22\xd2\xad\x44\x68\x11\xe0\xa8\x1a\x70\xea\xba\xa6\xc3\x76\xf8" + "\xb9\x60\x7d\xb0\xee\x77\x70\x89\x01\x92\x8d\xde\x69\x51\x6d\x76" + "\xb8\x18\xb8\xd6\x40\x04\x66\x37\x17\x74\xef\xc6\x6a\x98\x4f\x3f" + "\x7e\xbb\xca\xfe\x7e\x5c\xf0\x4f\x4f\xfc\x93\xc3\x57\xe0\x61\x82" + "\x7d\x45\x9a\xf2\xf5\x44\x2a\xec\xe5\xd8\x74\x17\x96\x93\xd1\x96" + "\xcd\x34\x8a\x96\xbb\xa8\x1d\x8d\xcb\x5d\x38\xfc\x8d\xdb\x69\xa0" + "\xc6\x05\xfd\x86\x83\x15\xc3\x75\xc0\x55\xa7\xed\x3a\x72\x96\x3d" + "\x67\xf6\x6e\x3a\xf1\xf8\x0d\xb3\x49\x3e\xd7\xe1\x68\x10\xf6\x1e" + "\xe9\x3c\x1b\x67\x39\xe1\x3d\x26\x4c\xc6\xdc\x81\x68\x1b\x4f\x2d" + "\xbc\xa6\x65\xf1\x60\x4f\xb3\x4d\xaa\x62\x56\x2c\xe6\x89\x7f\xe1" + "\x35\xcb\xe7\xb3\xc7\x07\xcf\xc2\x6b\x5a\x2e\x57\xab\xa9\x7f\xe1" + "\xb5\x5a\x2d\x8b\x69\xe1\x5d\x78\xb1\x06\x4f\x1f\x56\xbe\x85\x97" + "\xb9\xe2\xb6\x08\x60\x97\x76\x2d\xbc\xc6\x59\xc2\xfc\x93\x6f\xe1" + "\x95\x4c\x93\x59\xf2\x48\x2f\xbc\xc6\x79\x32\x4f\x12\x62\xe1\x35" + "\xce\xd2\x87\x6c\x4c\x2f\xbc\xb2\x2c\x9d\x8d\x13\x72\xe1\x95\x2e" + "\xc6\xf3\x71\x49\x2d\xbc\x60\x2f\xb5\x16\x5e\x49\x91\x2c\xd3\xb1" + "\x7f\xe1\x35\x7e\x98\xa4\x5a\x8f\xf4\xc2\x6b\x92\x4c\xa6\x93\xc0" + "\xc2\x6b\xbc\xca\x93\x2c\xf5\x2c\xbc\xc6\x0f\xb3\xc7\xc7\xb1\x7f" + "\xe1\xf5\xf8\x38\x9b\x8c\x27\xde\x85\x17\x6b\xf0\x38\x7d\xf4\x2d" + "\xbc\xac\xa5\xb8\x49\x00\xa5\x16\x3d\xcb\x82\x63\xc7\x31\x47\x7a" + "\x98\xcf\x1f\x51\x32\x9c\x1d\x71\x57\x91\x4c\xf9\xfc\x48\x1b\x79" + "\x62\x1a\x95\xb1\x09\x60\xf2\x90\x03\x42\x34\x91\x2a\xa7\x0f\xb9" + "\x5e\x74\xda\x13\x29\xd8\xd1\x8d\x89\x14\xdc\xe2\x30\x3c\x06\x94" + "\x56\x60\x62\xe4\x58\x07\x91\x7e\x0f\x1a\x08\xda\xef\x59\x54\xa6" + "\xdf\x83\xe3\xdf\xe7\xf7\x24\xdd\xfb\x4f\x83\x9f\x9e\xe6\x25\x23" + "\x2c\xd9\x0f\xc5\x8a\x19\xca\xab\x98\x38\x6c\x7e\xe7\xfb\x78\x2a" + "\x0f\xfb\xf2\xfe\x9f\xb6\xe5\x72\x53\xf4\x3e\xbe\x1e\xca\x55\x79" + "\x10\x7b\xba\x8c\xd3\x25\x5b\x76\xca\x49\x31\x5b\x6f\xca\xa4\x72" + "\xb7\x28\xfb\xd7\x27\xbe\xc7\x7c\x3d\x2e\x0e\xfb\xaa\x1a\xce\xcb" + "\x97\xe2\xf3\x86\x55\x7b\xdc\xb2\xaf\x2f\xef\xef\xdc\xdf\x5d\xd9" + "\xf0\x5a\x6f\x76\x4f\xe3\x67\xb8\xec\x03\x73\x32\xbc\x20\xec\x3f" + "\x37\x8b\x3d\x07\x11\xff\xae\x48\xd4\xb2\xcf\x41\x24\x53\xfa\xcf" + "\x70\x09\x88\xc9\x40\x4a\xff\x59\x8a\x0a\x13\x88\x6f\xfd\x67\x61" + "\x32\x99\x58\xd7\x3b\x23\xbd\x49\xe8\x3f\xcf\x8b\xc5\xa7\xf5\x61" + "\xcf\x96\x0b\x43\x57\x51\xf3\x35\xeb\x0c\x5f\xca\xf9\xa7\x8d\xb2" + "\xd1\x9c\x87\x61\xb1\xfc\xb7\xb7\xe3\xe9\x29\x19\x8f\x7f\x6c\x52" + "\x8b\x57\xab\xf7\xaa\xc9\x9b\xf8\xb7\xff\xfe\x72\xd0\xe2\x14\x33" + "\xc3\xb1\x6a\xbb\x1e\x9c\x52\x8f\x4c\xd4\x4a\xa1\xa7\xfd\xeb\x93" + "\x39\xfb\x15\x33\xbd\xbe\x5a\x10\xe8\x89\x1d\x9b\xa9\xbd\xbf\x4c" + "\x07\x23\xf6\xff\x4b\xce\xfe\xca\x07\x2f\x13\xf6\xd7\x64\xf0\x92" + "\xb1\xbf\xb2\xc1\x4b\xca\xfe\x4a\x07\x2f\x09\xfb\x2b\x51\x4d\x10" + "\xa5\x8f\x9f\xd5\x2f\xf3\xfd\xe9\xb4\xdf\x3e\xc9\x29\x3c\xd4\x4f" + "\xce\x16\xbd\x50\x11\xc9\x28\x35\x25\x8e\x4c\x0d\x63\x52\xd6\xd2" + "\xf4\x83\x45\x51\x2d\x3e\x26\x6a\x69\xd1\xfb\x99\xaf\xe6\x3f\x7f" + "\xe9\xd7\x5d\x75\xcb\xaa\xd7\xab\x9f\x74\x3c\x7e\x3d\xf7\xaf\x56" + "\x11\xa9\x68\xd8\xfb\xbb\x64\xc4\x51\x76\xaa\xca\x1e\x3d\x86\x8a" + "\x36\x4b\x48\x65\xc1\x42\x50\x8e\x82\x55\xb1\xd3\x50\xb1\x66\xfe" + "\x64\x34\x53\x4d\x16\x9a\xb0\x4b\x4e\xb5\x38\x46\x59\xa8\x6c\xb3" + "\x84\x44\x4b\x43\xe8\x1a\x25\x08\x39\xa8\xbe\x70\xc5\xfb\x2e\xef" + "\xaf\x3e\xcd\x0b\x8a\x62\x3e\x3f\xfc\xf5\xb4\x61\xde\xe4\xb7\xab" + "\xe8\xeb\x60\x3d\x5d\x2f\xa7\x7b\x4b\x96\xa3\x5c\x3e\x2f\xde\x0e" + "\x47\xd6\x0d\x5e\xca\xea\xf5\xd9\x20\x1e\x1e\x3f\x6d\x5e\x87\x1c" + "\x61\xda\xed\x77\xe5\x7b\xb1\x5c\x1e\x98\x6b\xbd\xda\x35\x2a\x6b" + "\x21\x16\xb9\x3b\x66\x06\x8b\x0a\x75\x36\x35\x30\xde\xf7\xd5\xe0" + "\xad\xba\xbe\xb2\x72\x78\x3f\xab\xca\xd5\x49\xaa\x4d\x7c\x1f\x2c" + "\xab\x20\x63\xfb\xaa\x27\x68\x7b\x8c\x7c\x2f\xfe\x7c\xe3\x5f\x8c" + "\x16\x8d\xdf\x97\xa7\x2b\xec\xfc\xb3\x31\xfb\xb4\xbc\xba\xc6\x88" + "\xfa\x26\xda\x32\x7e\x9f\x57\xfb\xc5\xa7\xff\xfb\x6d\x7f\x2a\x6b" + "\x7b\xa9\x96\x7f\xef\xf3\xc1\xf1\x74\xd8\xef\xd6\xa8\xe0\xf9\xbe" + "\x62\xd2\x7c\x3f\x32\x86\xab\xc1\x48\xfc\x05\xb4\x35\x62\x8b\x26" + "\x96\x93\x95\xf4\x69\x30\xe2\x7f\x6a\xd6\x9f\x46\x89\x48\xb2\x46" + "\x20\xb6\x3a\x3e\x9b\x06\x1d\x68\xff\x9d\x4d\x1d\x06\xc7\xb7\xd7" + "\xeb\xeb\xfe\xb8\x11\x5a\x3e\x94\x15\xd3\xe0\xe7\x12\x98\xf1\x91" + "\xa8\x11\xaa\x65\xfc\xfc\x99\xcf\xd4\x59\x47\x56\xc6\x75\x5e\x1c" + "\x4b\x4e\xc0\xcb\xbb\x2a\x31\x0d\x59\x5f\x64\x4c\xf0\xd2\xb9\x5a" + "\x86\x23\xfe\x5b\x71\x05\x66\xb1\x6e\x13\x9e\x57\xf4\x07\x38\x41" + "\x19\x39\x36\x81\xe8\xf7\x9f\xc9\x5e\xf9\x5e\x3c\x89\x69\xc7\xd5" + "\x39\x53\xc1\x25\x1a\xf3\x93\x3e\xcb\xbb\xdb\x9f\x3e\xfe\xf5\x85" + "\x79\xc6\xdf\xfa\xf2\xe7\x45\x55\x1c\x8f\xbf\xf5\x07\x74\x92\xaa" + "\x0f\x9b\x70\xb3\x7d\xa2\xff\x33\x8f\x3b\xe0\xf3\x9d\xc1\xa7\xf9" + "\x72\x70\x2c\xb6\xaf\x57\xa7\x2f\xc5\xfb\xc3\xd0\x93\x26\x7c\xf4" + "\x1e\xca\xeb\x72\x73\x7c\xad\x8a\xcb\x93\xe8\x6e\xcf\x81\x4e\xff" + "\xcc\x9b\xb7\xe2\x50\x6d\xf1\x76\xda\x3f\x5b\xdd\x8b\x15\xd8\xe3" + "\xad\x02\x1d\x4f\x73\x81\x79\xfa\xc2\x3c\xcf\x70\x7e\x28\x8b\x4f" + "\x6a\x8c\xbe\x1b\xd9\x46\xce\x4e\xd9\xcc\xf0\xfa\xb2\x88\x2f\x87" + "\xe2\xf5\x49\x94\x33\xe4\xbf\xbf\x17\xbf\x8a\x72\x50\x65\xef\x4c" + "\x44\xb8\xb7\x8b\x8d\x17\xb5\x2d\x15\xaa\xb2\x76\xd8\x01\x9f\xae" + "\x47\x09\xda\xfc\x52\xb6\x93\x35\xa0\x07\x1b\x31\x36\xf4\xb0\xda" + "\xac\xdf\x0e\xf6\x30\xdf\x6c\xd7\x83\xe3\xe7\xf5\xd5\x18\x19\xdb" + "\xcd\x72\x59\x95\xef\xa7\x62\x5e\x31\x4e\x8b\x57\x69\x1d\x37\xcb" + "\xf2\x49\x6a\xea\xb9\x99\xef\x55\xc5\xeb\x91\x79\x07\xf5\xc3\xbb" + "\x22\xae\xad\x1e\x57\xb3\x34\x3d\xfa\x0b\xb2\x47\x06\x9b\xc6\xee" + "\x00\x9a\x0a\x71\x9b\xf5\x7e\x7a\xb9\x82\x4f\xa8\xfb\xca\x4f\x7a" + "\x56\xb3\x2d\x4e\x8b\x97\xe1\x6b\xc1\x66\x8c\x3c\x17\xf3\xf5\x83" + "\x13\x17\xe2\xe0\xb4\xe2\xe7\x13\x4e\x87\xc1\x89\x7d\x79\xb9\xa2" + "\x89\x2b\x9e\xd1\x28\x03\x2f\xe7\x2c\x68\xbf\x73\xfc\x5e\x15\xf3" + "\xb2\xaa\x3b\xf6\x66\x27\xec\x8c\xe8\xdf\xef\xf3\x37\xc6\xdf\xee" + "\x8a\xb5\x34\x56\x9f\x9f\xc4\x16\x96\x18\x90\xf2\xc7\xe1\xe7\xcd" + "\x71\xc3\xa4\xdc\xbf\xee\xdf\x4e\xbc\x14\x46\xba\xd9\xbd\xbe\x9d" + "\x06\x32\xc3\x80\x99\xa8\x72\x71\x1a\xec\x5f\x4f\xbc\x67\xbc\x0e" + "\x38\xaf\x8c\xab\xc2\x3d\xc3\xd5\x1c\xd8\x83\xc3\xe5\xa0\x50\x15" + "\x52\xb0\x62\x99\xc1\xa7\xf6\xd2\x06\xfc\x95\x4d\xb1\xcb\x5f\x24" + "\xdd\x6f\x57\xe5\x3b\x5f\xf7\x9b\xdd\x89\xfb\x01\x99\xaf\x19\x25" + "\x6a\x9c\xc9\xef\x4f\x4c\x3a\xbc\xff\x2c\xaf\x7a\xbe\x97\xbc\xff" + "\xb5\xda\x1c\x4f\xbf\x49\x7b\x74\xba\xbc\xf2\xad\xb0\x53\xa9\x0d" + "\x54\xfd\xe1\xb4\xd9\x96\x43\x26\xcb\xa2\x42\x49\xcc\xc6\x9c\x5e" + "\xd0\x97\x2f\x65\xf9\x09\x7d\xe0\x39\xd9\x87\xba\x17\xb0\x22\x4a" + "\xde\x9f\x86\xaf\x9b\xc5\x27\xa6\x0d\x7e\xd0\x64\x51\x9c\xf6\x87" + "\x5a\x75\x9c\xcb\xff\xb8\xd9\xbe\xee\x0f\xa7\x62\x57\x4b\x44\x96" + "\xa6\xd8\x56\xbf\xb1\xb9\x40\x79\xd2\xbf\x30\x8f\xb1\xdd\xf0\x13" + "\x2d\xaa\xa2\xe2\xf5\xb5\x2c\x98\xe8\x16\x6c\x84\x88\x5c\x5a\xdf" + "\x42\xd3\x5a\x12\x7d\x5c\xb0\x3b\x51\xd6\xe3\x4e\x53\xd5\x1a\x89" + "\xa6\x5e\x18\xff\xdb\xfd\xef\x6a\xb7\x74\xb3\xdb\x31\x73\xdf\x98" + "\x05\xd4\xb7\x85\x8e\xeb\x1e\xc5\x6a\x16\x0b\x20\x65\x0b\x98\xcd" + "\x28\xab\x25\x6b\xcc\xb5\x99\xdd\x8d\x9f\x9b\x92\xea\x0e\xa8\x17" + "\x00\xef\x55\xb9\x66\xe2\xbe\x32\xeb\x5d\x9c\xc4\x78\x7d\x96\xb9" + "\xc4\x7a\xc3\xcc\xe8\x98\xbc\xd3\x13\x4d\x67\xf7\xf5\x4c\x3e\x75" + "\x4b\xac\xc9\xa7\x4c\xf8\xf9\xa7\xeb\xa2\x62\x0a\x93\x46\xa5\xe9" + "\x2f\x75\xef\x63\x05\xb3\x31\x25\xf8\x17\x5d\xfb\xb5\x3c\x0c\x28" + "\x32\x2e\x3f\x32\x91\xb5\xed\xed\x54\x92\xc9\x2f\xfb\xb7\x83\xac" + "\x87\x24\x59\x16\x97\x00\x85\x18\x18\x01\x9a\x0b\xc7\x53\x05\x49" + "\xd3\x17\x00\xe3\xa2\x97\x0c\x8f\xaf\x5c\x2d\xd2\x7e\x29\x59\x73" + "\x27\xfc\xae\x3a\x1f\x2b\x62\xf1\xe2\xec\xf3\x5c\x04\xa2\xf0\x67" + "\x65\xc5\x86\xfb\xd5\x8a\xc3\x02\xc3\xf4\xf5\x0c\xaa\x91\x45\x80" + "\x99\x86\xab\x30\xd1\x29\xc1\x18\x96\xfb\xe4\x5f\x84\x41\x57\xba" + "\x40\x3c\xac\x36\x1c\x58\x17\x36\x87\x11\xaa\xe6\x73\xcd\xd7\xb6" + "\x8f\x1e\xa5\xac\xb9\xcc\xd6\xba\x0d\xf9\x66\x75\x28\xb6\xe5\xb5" + "\xee\xdd\xc7\xb7\x2d\xdf\xb4\xab\x89\xb9\x2d\x1b\x6e\x4e\xdc\x8b" + "\xe1\xf1\xf7\x7a\xd8\xaf\xc5\xca\x81\x9a\x6f\xfe\xf5\x85\xf9\xd7" + "\x92\x19\x54\xc2\x0a\x8d\x58\xdf\x5c\xda\x0b\x24\xb4\xc2\xcd\xd8" + "\x24\x7f\xa4\xf2\x0f\x1d\xeb\xd6\xa9\x5e\x5b\x4e\xc4\xba\xd5\xcc" + "\x6b\xae\x8e\x7d\x83\xc9\x59\x8d\x1c\x4e\x75\x92\x63\x75\x9b\xeb" + "\x11\x9c\x89\xe5\xed\x5d\x5a\x00\xab\x99\x8c\x8c\x36\x38\x16\xc2" + "\x79\x5a\xb7\x21\xbb\x57\x1b\x60\x35\x13\xdc\x02\xc7\x82\x79\xa2" + "\xa5\x90\x8e\x66\xf7\x6a\x01\xac\x26\x33\xa5\x90\x3b\xda\x90\xd6" + "\x6d\x48\xee\xd5\x06\x58\x4d\x86\x5b\x30\x0d\xee\xa2\xdc\xa5\x05" + "\x53\xc7\x4e\xcb\x48\x0c\xca\xb7\x9d\x70\x6f\xcb\x81\xfc\x55\x8e" + "\x6a\xbc\x10\xe7\x55\x1e\x4f\xd0\x0d\x42\x5a\x31\xac\xdd\x56\xc1" + "\x22\x93\xce\x98\x2d\xae\x98\xa9\x7a\xd9\x54\xcc\x1d\x2b\xff\x76" + "\x10\xdc\xc8\x86\x8d\x36\x3b\xb6\x52\x65\x66\xe0\xb8\xb5\x57\x20" + "\xc6\xc4\xeb\x8d\x5b\xb8\x05\xb3\x15\xef\x23\x6b\x81\xee\xd8\x85" + "\x80\x3b\x28\x20\xc3\xaf\xa0\x49\xd6\x86\x01\xa0\x1b\xf2\xf9\x70" + "\x79\x80\x7b\x11\xc3\x04\x6c\x15\xb8\x2b\x44\x0b\x19\x75\x9c\xd3" + "\x51\xaa\xda\xfd\x65\x8b\x25\x66\x18\x99\x41\xfe\xe1\xff\xfd\x1f" + "\xff\xcf\xff\xfa\x9f\x3f\x30\x71\x6c\xd7\xc3\x55\xf5\xb6\xe1\x4d" + "\x3b\x0f\xc1\x2c\x01\xba\x1d\x41\x75\x7a\x79\xdb\xce\x77\xc5\xa6" + "\x6a\xd6\x57\xd2\x18\x46\x6c\x80\x2a\xd3\xed\xdb\x8c\xb4\x70\x7a" + "\xe7\x22\xcb\x0d\xe6\x73\xaa\x1a\xa4\x07\x24\x00\x87\xef\x3f\xfb" + "\xf8\x53\x8b\x32\x77\x3f\x93\x89\x43\x26\x03\xe7\x4e\x0e\x1a\x31" + "\x35\xb5\x5e\x7e\x85\x96\x9c\xe6\x42\xeb\x7d\xc4\x55\x54\xb0\x32" + "\x0f\x83\xe6\x47\xa9\x22\xf8\xe1\x7c\xae\xd0\xaf\xe8\xb7\x6a\x0d" + "\x7f\xdb\xa2\x8c\xac\xdf\xcb\x33\x5e\xcc\xef\xf2\x8c\xe2\x74\x54" + "\x8d\xfa\xab\xaf\x97\xa7\xde\xd8\x31\x65\x54\x23\x49\x98\x92\x9a" + "\x03\x5d\x50\xff\x27\x8e\xe4\xa2\xb1\xed\x23\x44\x63\x53\xec\x30" + "\xc0\x2d\x31\xa1\x16\x87\xed\xc9\x67\x53\x61\x7a\x20\x3f\x80\x3b" + "\xd0\x89\xf3\x09\x33\x52\xef\xae\x32\x66\xd3\x07\xa3\x0c\x53\x42" + "\xee\x12\x67\x29\x55\xe2\xe3\x63\x6a\x94\xe8\xd7\x80\xbb\xfc\xc7" + "\x29\x55\x7e\x6d\x71\xbb\x29\xdc\x5d\x5d\x92\x90\x12\x62\x29\x56" + "\x7d\xdd\xfb\x1b\x51\x7d\x26\xc5\x29\x21\x24\x39\x60\xf9\xde\x8e" + "\x98\xbb\x0d\xcf\xc7\x27\x7d\x18\x0e\x7c\xe5\xc7\x69\x44\x0f\xb0" + "\x52\xb6\x4b\xa5\x57\x2b\x85\x9f\xa4\x11\xfa\xb1\x52\xc4\xb1\x22" + "\x21\x59\x3b\x49\xa4\x09\x29\xbc\x8f\x0e\xfb\x2f\xb1\x43\x46\x1b" + "\x90\x55\x55\x9e\x9f\xf9\x1f\x72\x39\xce\xff\x80\xdb\x6d\x62\x5c" + "\x0c\x93\x9f\xcc\xa1\x71\xe9\x1b\xe3\x42\x12\x8e\xf2\x9f\xec\x41" + "\xd4\x47\xe3\xc5\x47\x28\x38\xf8\xf5\xa7\xab\x68\xcf\xf1\xe5\xc0" + "\xf7\xd5\xd1\xe8\x36\x2c\xe3\xd7\x1b\xec\x08\x90\xaa\x79\xe6\x26" + "\xaf\x12\xad\x7b\x4a\x7a\xe3\xde\xf8\x47\xd1\x60\x6e\x0f\x8f\x43" + "\x6e\x07\x54\xd3\xc5\x5e\x99\x30\x14\xb2\xad\xd2\x72\xd7\x94\x09" + "\x41\xc6\x59\x02\x64\x29\x41\x96\x23\xaa\x8c\xa0\xca\xd8\xec\x55" + "\xfd\x03\xc9\x27\x04\x79\x9a\x43\xaa\x9c\xa2\x42\x55\x4f\x29\x3e" + "\xa6\xa3\xa9\xfc\x67\xf6\xa3\x90\x98\x90\x8d\x47\x32\x9c\x24\x71" + "\xa6\x3f\x40\x26\x38\x59\x1a\x59\x63\x46\x73\xc9\x93\x27\x11\x32" + "\xe3\x74\xb9\x93\x6e\x92\x98\xd5\x4d\x69\x4d\xf1\xe4\x99\x3b\xd9" + "\xe2\xee\xc1\x49\x37\xb5\xb8\x7b\x74\xd2\xcd\x34\x77\xc9\xd8\x2d" + "\x4c\x8b\xbd\xc4\x2d\xf5\x47\x8b\xbf\x24\xf5\xf4\x58\xb9\x6e\x1f" + "\xd6\x70\xab\x18\x63\x88\x37\x45\x91\x22\x0a\xac\x34\x45\x92\x21" + "\x12\xa1\x2f\x95\x32\x41\x29\x58\x55\x8a\x24\x47\x24\x58\x4b\x8a" + "\x64\x8a\x48\x72\xd0\xfc\x19\x4e\x71\xb5\xff\x01\x91\x4c\x5d\xed" + "\x7f\x44\x24\x33\xd0\x7e\xa6\x14\x24\x1f\x17\x03\x09\x96\x21\xd6" + "\xc3\x7a\x38\x1e\x8c\xd6\xe7\xe1\xd8\x34\xf1\x63\x9d\x76\x31\xd2" + "\x2e\x2a\x2d\x11\xf9\x12\x33\x9f\x5e\x00\x48\x82\x8b\x41\x70\x81" + "\x04\xa9\x28\x21\xb5\x4a\x80\xe9\x17\x23\xfd\x02\xd2\x33\x91\x3f" + "\xb3\x9c\x13\x48\xbe\x18\xc9\x97\x26\x79\x22\x72\x4f\xdc\xae\x4d" + "\x13\x5c\x0c\x82\x0b\x24\xc8\x45\x09\xb9\x59\x42\x06\x92\x2f\x46" + "\xf2\x45\x25\x7b\xa7\x76\x15\x9f\xa4\xba\xfd\xc1\x71\xdb\xc2\x25" + "\x30\xe2\x48\xaf\xc0\x28\xe3\x1c\x03\x23\x6c\xe9\x1b\x58\x8e\x38" + "\xf7\xc0\x08\xe3\x3c\x04\x23\x8c\x77\x12\x4a\x60\x01\x3f\xc1\x25" + "\x15\xe7\x2a\xb8\xa4\xe2\xab\x0e\x38\x0c\x2e\x9b\x48\x9f\xc1\xa5" + "\x13\xe9\x36\xb8\x7c\xfc\x9e\x83\x51\xc4\x3a\x0f\x46\x1a\xeb\x3f" + "\x18\x69\xc0\x85\x70\x31\xc7\x7a\x11\x4e\x1b\xeb\x48\x38\x6d\x84" + "\x2f\x61\x64\xd8\x5c\x8e\x61\x52\xd8\xd3\x08\xdd\x07\x9d\x8d\x50" + "\x3b\xe5\x6f\x84\xc6\x83\x2e\x47\x28\x3b\xe8\x75\x84\x9e\x29\xc7" + "\x23\x54\x1c\xf4\x3d\x42\xbb\x41\xf7\x23\x14\x4b\x79\x20\xa9\xd3" + "\xa0\x13\x92\xea\xf4\xf9\x21\xae\x1d\x61\x50\x85\x9a\x5c\xde\x48" + "\x51\x5c\x6c\x8a\x4b\x43\x91\xe8\x32\x3c\x9e\x49\x91\x5d\x6c\xb2" + "\x8b\x41\x96\xea\xd2\x68\x2f\xa5\xa8\x2e\x36\xd5\x05\x53\x65\xba" + "\x2c\xd2\x63\x29\xa2\x8b\x4d\x74\x41\x44\x13\x5d\x92\xc7\x7b\x29" + "\xb2\x8b\x4d\x76\x31\xc8\x72\x5d\x1a\xe9\xc9\x14\xd1\xc5\x26\xd2" + "\xfe\xcc\xbf\xcf\x50\xb1\xf5\x29\xe1\xd0\xb6\xcb\x16\x0e\x8d\x11" + "\x47\x3a\x34\x46\x19\xe7\xd0\x18\x61\x4b\x87\xc6\x72\xc4\x39\x34" + "\x46\x18\xe7\xd0\x18\x61\xbc\x43\x53\x02\x0b\x38\x34\x2e\xa9\x38" + "\x87\xc6\x25\x15\x5f\x75\xc0\xa1\x71\xd9\x44\x3a\x34\x2e\x9d\x48" + "\x87\xc6\xe5\xe3\x77\x68\x8c\x22\xd6\xa1\x31\xd2\x58\x87\xc6\x48" + "\x03\x0e\x8d\x8b\x39\xd6\xa1\x71\xda\x58\x87\xc6\x69\x23\x1c\x1a" + "\x23\xa3\x1c\x9a\xe8\x00\x21\x87\x26\x74\x1f\x74\x68\x42\xed\x94" + "\x43\x13\x1a\x0f\x3a\x34\xa1\xec\xa0\x43\x13\x7a\xa6\x1c\x9a\x50" + "\x71\xd0\xa1\x09\xed\x06\x1d\x9a\x50\x2c\xe5\xd0\xa4\x4e\x83\x0e" + "\x4d\xaa\xd3\xe7\xd0\xb8\x76\x84\x69\x15\x6a\x72\x39\x34\x45\x71" + "\xb1\x29\x2e\x0d\x45\xa2\xcb\xf0\x38\x34\x45\x76\xb1\xc9\x2e\x06" + "\x59\xaa\x4b\xa3\x1d\x9a\xa2\xba\xd8\x54\x17\x4c\x95\xe9\xb2\x48" + "\x87\xa6\x88\x2e\x36\xd1\x05\x11\x4d\x74\x49\x1e\x87\xa6\xc8\x2e" + "\x36\xd9\xc5\x20\xcb\x75\x69\xa4\x43\x53\x44\x17\x9b\xc8\xe7\xd0" + "\x9a\x6d\xee\x6a\x58\xad\x09\x87\x56\xad\x5b\x38\x34\x46\x1c\xe9" + "\xd0\x18\x65\x9c\x43\x63\x84\x2d\x1d\x1a\xcb\x11\xe7\xd0\x18\x61" + "\x9c\x43\x63\x84\xf1\x0e\x4d\x09\x2c\xe0\xd0\xb8\xa4\xe2\x1c\x1a" + "\x97\x54\x7c\xd5\x01\x87\xc6\x65\x13\xe9\xd0\xb8\x74\x22\x1d\x1a" + "\x97\x8f\xdf\xa1\x31\x8a\x58\x87\xc6\x48\x63\x1d\x1a\x23\x0d\x38" + "\x34\x2e\xe6\x58\x87\xc6\x69\x63\x1d\x1a\xa7\x8d\x70\x68\x8c\x8c" + "\x72\x68\xa2\x03\x84\x1c\x9a\xd0\x7d\xd0\xa1\x09\xb5\x53\x0e\x4d" + "\x68\x3c\xe8\xd0\x84\xb2\x83\x0e\x4d\xe8\x99\x72\x68\x42\xc5\x41" + "\x87\x26\xb4\x1b\x74\x68\x42\xb1\x94\x43\x93\x3a\x0d\x3a\x34\xa9" + "\x4e\x9f\x43\xab\xf4\x66\xa1\x50\x93\xcb\xa1\x55\x7a\xcb\xd0\xa2" + "\xb8\x34\x14\x89\x2e\xc3\xe3\xd0\x2a\xbd\x7d\x68\x91\x5d\x0c\xb2" + "\x54\x97\x46\x3b\xb4\x4a\x6f\x25\x5a\x54\x17\x4c\x95\xe9\xb2\x48" + "\x87\x56\xe9\x6d\x45\x8b\xe8\x82\x88\x26\xba\x24\x8f\x43\xab\xf4" + "\x16\xa3\x45\x76\x31\xc8\x72\x5d\x1a\xe9\xd0\x2a\xbd\xdd\x68\x11" + "\xf9\x1c\x1a\xc0\x55\xab\xe1\x99\xc2\xa0\xce\x55\x0b\x8f\xc6\x88" + "\x23\x3d\x1a\xa3\x8c\xf3\x68\x8c\xb0\xa5\x47\x63\x39\xe2\x3c\x1a" + "\x23\x8c\xf3\x68\x8c\x30\xde\xa3\x9d\xa3\xb0\xa9\x73\x34\x3c\x75" + "\x8e\x47\xa8\xce\x41\x90\xea\x1c\x8f\x53\x9d\xe3\xa1\xaa\x73\x10" + "\xad\x3a\xc7\x03\x56\xe7\x78\xcc\xea\x1c\x84\xad\xce\x2d\x90\xab" + "\x73\x0b\xf0\xea\x1c\x87\x5f\x31\x32\xca\xa3\x89\x0e\x10\xf2\x68" + "\x42\xf7\x41\x8f\x26\xd4\x4e\x79\x34\xa1\xf1\xa0\x47\x13\xca\x0e" + "\x7a\x34\xa1\x67\xca\xa3\x09\x15\x07\x3d\x9a\xd0\x6e\xd0\xa3\x09" + "\xc5\x52\x1e\x4d\xea\x34\xe8\xd1\xa4\x3a\x7d\x1e\x8d\x6b\x47\xd8" + "\x56\xa1\x26\x97\x47\x53\x14\x17\x9b\xe2\xd2\x50\x24\xba\x0c\x8f" + "\x47\x53\x64\x17\x9b\xec\x62\x90\xa5\xba\x34\xda\xa3\x29\xaa\x8b" + "\x4d\x75\xc1\x54\x99\x2e\x8b\xf4\x68\x8a\xe8\x62\x13\x5d\x10\xd1" + "\x44\x97\xe4\xf1\x68\x8a\xec\x62\x93\x5d\x0c\xb2\x5c\x97\x46\x7a" + "\x34\x45\x74\xb1\x89\xbc\x1e\x6d\x02\x3d\x1a\xed\xd2\xda\xf9\xb4" + "\x16\x4e\x2d\xde\xab\x75\x70\x6b\xf1\x7e\x2d\xde\xb1\xb5\xf3\x6c" + "\x91\xae\xad\x85\x6f\x6b\xe3\xdc\x22\xbc\x5b\x1b\xf7\xd6\xc6\xbf" + "\x45\x38\xb8\x36\x1e\xae\x8d\x8b\x8b\xf0\x71\xad\x9c\x5c\x2b\x2f" + "\x17\xeb\xe6\x7c\x7e\x2e\xce\xd1\x45\x7a\x3a\xbf\xab\x8b\xf4\x75" + "\x91\xce\xce\xef\xed\x22\xdd\x5d\xa4\xbf\xf3\x3b\xbc\x58\x8f\x17" + "\xe1\xf2\x1a\x9f\x47\x3b\xbd\xc6\xeb\xd1\x6e\xaf\xf1\x7b\x01\xc7" + "\xd7\x78\xbe\x80\xeb\x6b\x7c\x9f\xdf\xf9\x35\xde\xcf\xef\xfe\x1a" + "\xff\xe7\x75\x80\x8d\x07\xf4\xba\xc0\xc6\x07\x06\x9c\x60\xe3\x05" + "\x03\x6e\xb0\xf1\x83\x5e\x47\xd8\x78\x42\xda\x15\x8e\xe4\x0d\x59" + "\x19\x06\x8a\xff\xa8\x83\xb5\x5c\x5e\x4b\x1e\xbd\x46\x9c\xf9\x7f" + "\x06\xc9\xf3\x35\x9d\xa6\x2e\x3a\x9d\x8a\x13\x99\x97\x4e\x54\x91" + "\x57\xea\x63\x8e\x38\x7a\x57\x1f\x97\x83\xa2\xd3\xe9\x60\x21\x80" + "\x00\x05\x73\x21\x0e\xc8\x03\xfa\x62\xc1\xa3\xd2\x88\x72\xc5\x2d" + "\x06\x79\xeb\x16\x52\x1c\x4f\x87\xcd\x6b\xb9\x6c\xd3\x4a\x9d\x85" + "\x97\x8a\xef\xdd\xdb\x81\xc9\xfa\x3c\xc0\x5c\x6e\xb4\x89\xc7\x03" + "\x68\x53\xa1\xca\x11\x5b\x5f\x82\x32\xa3\xe8\x43\x31\xb5\xc9\x0c" + "\xd1\xcc\xf1\xf8\x69\xe8\xe8\xac\x75\x37\xc3\xb8\x6b\x76\xda\xbf" + "\x3e\x23\x3d\xd6\x35\xd8\x3a\xee\xab\x7e\xfc\xab\xb8\xca\xa2\xae" + "\x10\xf4\x7f\xfd\x89\xcd\x4f\xea\x3b\x17\xae\xdb\xda\x56\xb7\x1d" + "\xf4\x9c\x69\xbc\xc7\xbb\x93\xfa\x7d\xdf\xa5\x77\xdd\x5d\xeb\xdb" + "\x18\x92\x5f\x35\xe9\x74\xdf\xea\x80\x57\x32\x74\x48\x42\xfe\xef" + "\x23\xfb\xe7\xf5\xdc\xb3\xca\x26\x1a\xae\xc6\xa9\xf5\xbd\xee\xea" + "\xfd\x7e\x2d\x35\x71\xaf\xdc\xbc\xeb\xa7\xef\xa8\x6a\x1a\x7e\x03" + "\xdd\xba\x0f\x28\xd8\x51\x24\x43\x71\xbd\x7b\xb8\xdc\x7c\xde\x2c" + "\x45\x9c\xa4\x3a\x96\x0e\x3e\xe1\x8c\xb8\xfd\x29\xd5\xd7\x58\x16" + "\x6f\x07\x3e\xe8\x84\x04\xd9\x1c\x42\x5d\xd9\x67\xd9\xf1\xf5\x7d" + "\xf6\x41\xd7\x77\xdc\xfa\xf4\xad\xdc\x03\xec\x2c\xe5\xd2\xcc\x70" + "\x45\xb7\xe2\x89\x6b\x36\xe3\x50\x29\x66\x39\xe3\x9e\xbb\x24\x5c" + "\x4e\x55\x1e\x8f\x74\x49\xa8\xa7\x8c\xa9\x9c\x4f\xab\xcd\xa1\xb9" + "\xb6\xd5\x88\xdc\xcc\xa7\x6c\x91\xd4\xf4\xaf\xa7\xc3\x13\xbf\x6f" + "\xbb\x5f\x89\x2e\xf2\x71\xbf\x5c\x72\x51\x10\x3e\xc0\xe8\x3f\xc8" + "\x10\xf6\x9d\x9e\x81\xc8\xc1\xe3\x9e\x8c\xac\x42\xde\xb6\x3b\x53" + "\x0a\xa7\xc3\xaf\xa2\x7d\x82\xab\x8f\xe9\xae\xff\x2d\x9b\x26\x8d" + "\xe8\x95\xf2\x6a\xd6\x68\x6a\x8c\x74\xdf\xed\xea\xdc\x39\x40\x8d" + "\xc2\x90\x36\x9a\x91\xbf\xfe\x14\xdb\x02\x60\xb7\xe3\x1a\xa0\xed" + "\x76\x5d\xbf\x0a\xe5\x77\xb5\x7d\x71\x13\x79\xb9\xf1\xbb\x28\xae" + "\xbc\xcb\xdb\xfe\xa9\x98\xce\xf3\xc5\x82\xf2\x84\x7f\x5a\xe4\xcb" + "\x99\x7e\x21\xc3\xe9\x5b\xcd\x5a\x81\x5b\xfb\x13\x33\xb5\x73\x1d" + "\x92\xce\xe5\x26\xcd\xbc\x8d\x93\xfa\xd3\x7c\xb5\x4c\xca\x05\xe9" + "\xf2\x44\x4e\xda\x3d\xf4\x5b\xfb\xa2\xe6\x86\x5a\xac\x64\x61\x3c" + "\x7e\xa7\x64\xe7\xf9\x7c\x3a\x9f\x91\x92\x5d\xce\x96\x0f\x3a\x30" + "\x7e\x6b\xc9\x2e\xe6\x8b\x85\x0e\x63\xde\x52\xb2\xcb\x64\x99\x2e" + "\x27\xdf\x52\xb2\x32\x64\x64\xac\x5c\xe1\x3b\x06\xee\x1e\x3b\x9b" + "\x3f\xea\x00\xa5\xae\x1e\x3b\x5b\xce\x97\x9d\x7b\xec\x62\x39\x5e" + "\xcc\x3a\xc9\x75\x91\x2c\xa7\x8b\x6f\xd9\x63\x79\x98\xcd\x78\x33" + "\xd0\xbc\xff\x40\x98\x81\x45\xb6\x28\x3c\x66\xa0\x7c\x28\x57\x9d" + "\xcd\xc0\x72\x51\x66\x1d\xcd\x00\x1b\x66\x8f\xdf\x50\xa8\x2a\x34" + "\x69\xac\x5c\x61\x88\x72\xa7\x5c\xd9\x30\x4d\x8b\x09\x29\xd7\x55" + "\x5a\xce\x16\x59\x47\xb9\x96\xd3\xe5\x7c\xfe\xd8\x49\xae\xe5\xa2" + "\x4c\xe6\xe5\x37\x94\xab\x0c\xe7\x1a\x2d\x56\xf0\xde\x88\x5b\xac" + "\xd3\x62\x51\x94\xa4\x58\x4b\x26\xf6\x45\xd7\xee\xba\x5c\x2d\xd2" + "\xc5\xa4\x9b\x58\xf3\xc5\x0c\x8f\xa2\xaf\x2c\x56\x11\xa3\x2e\x5e" + "\xaa\xe0\x09\x02\xb7\x54\x59\xf3\x1f\x3c\x52\x2d\x97\x65\xd9\x59" + "\xaa\xe5\xb8\x4c\x3a\x4a\xb5\x9c\x96\xb3\x6f\xda\x59\x0f\x9f\x5c" + "\x42\x5d\x19\x33\x29\x33\xf2\xb9\x53\xa8\x93\x65\x9e\xe4\xb4\x05" + "\x48\x17\xd9\x38\x9b\xf8\x84\x6a\xd4\x0a\x85\x9a\xcd\xb2\x79\xe6" + "\x9b\x06\x18\x79\x81\x50\xb3\x34\xcb\x33\x8f\x65\xe5\x39\xef\x2a" + "\xd4\x43\x79\x7c\xdd\xef\x8e\x7c\xba\xae\x43\xee\x0d\xcf\xf2\x4a" + "\xbc\x8e\x97\x53\x7f\x97\xa1\x76\xf9\xc2\xf0\xb4\x7f\x5b\xbc\x34" + "\x10\x50\x7d\x85\xb7\x97\xcf\xf2\xd1\xa3\x3c\x79\x6e\x96\xcf\xef" + "\x55\xb5\xae\xc2\x55\xc7\x6c\x3a\x23\xeb\xd8\x2e\xef\x53\xc7\xe3" + "\x63\x42\xd6\x51\xad\xef\x53\x47\x92\x3c\x3e\x92\x95\x9c\xab\x3b" + "\x55\x92\xf9\x2a\xe9\x54\xcb\x48\xc4\x7c\x96\xb1\xef\x1c\x31\x29" + "\x24\x76\x01\x68\x60\x10\x40\xb1\x8b\xd1\xc4\x81\x71\x2f\xf1\xfb" + "\x66\x94\xc0\xc8\x5c\x46\x7c\x93\x40\xf8\xbb\x64\x94\x9b\x4d\xe5" + "\xaa\xb5\x5b\xdb\xa5\xad\x81\x3c\x8e\x98\x2d\x46\x4b\xd8\x60\xb1" + "\x5b\x92\x76\x69\x4a\x1a\xdd\x96\x91\x8c\x58\xa9\x14\xcc\xe3\xd1" + "\xc0\x78\x30\x30\xfa\x54\xab\x98\x22\xa2\x34\x1e\x85\x81\xf5\x23" + "\x23\x0a\xa8\x23\x30\x9c\x56\xf3\xc8\x8c\x9a\x99\x98\xb1\xaf\x26" + "\x56\xc4\xa0\xdc\x17\x4f\xdb\x88\x2d\x16\x15\x39\x06\x90\x54\x9b" + "\xd7\xa7\x46\xbe\xe7\x3f\x3c\xaa\x8c\xd8\xd6\xec\x3f\x8b\xad\x76" + "\x19\xfe\x16\x56\xc2\xe3\xc0\x1f\x7b\x65\x71\xe4\x0b\x92\xe1\x9e" + "\x07\x92\xac\xb3\x5a\x69\xc1\xc0\xeb\xf2\x77\x66\x41\x90\x2a\x41" + "\xd5\x22\x74\x12\xd6\xb4\x8c\x16\xc7\xa3\xb2\xfd\x56\xdb\x98\x27" + "\x19\xf1\x8c\x24\x34\x22\x1a\xca\x90\x8e\x87\x92\x35\x7a\x57\x5d" + "\x7e\xb3\x22\x1c\xa2\x62\x64\x20\xcd\xab\x2f\x62\x6a\x6c\xa8\x20" + "\x95\xfc\xa7\x87\xe9\x7c\xb6\x2a\x9f\xeb\x90\x9c\x71\x2a\x19\xc8" + "\xad\x66\x35\xee\xd4\x43\x50\x93\xb1\xd1\x5a\x14\xa0\x6f\x58\xb0" + "\x36\x89\x28\x7d\x9f\x8b\xea\xad\x04\x91\x16\x1f\xf2\xd7\xf3\x73" + "\xd3\xbf\xeb\x80\x4c\x4f\xde\xf2\xea\x80\x7f\xc6\x70\x6b\xe2\xe5" + "\x19\x99\x19\xcd\xa2\x7c\x11\x71\x9d\xaf\xa1\x60\xac\x4d\x1c\x4f" + "\x5c\x48\x1d\xe8\x93\x96\x33\x7c\xc9\x83\x2e\xc8\x1d\xca\x8f\xb0" + "\x0f\x4a\x1c\x43\xfd\x79\x88\xbe\xeb\x08\x5d\xe5\x6e\xf9\xa4\x12" + "\x3a\x75\x10\xf0\xb8\x0b\x22\xdb\x6c\x8b\x35\x78\x2b\x40\xbf\x54" + "\xc7\x2c\xb1\xec\xa2\xc3\xf2\x33\xfb\xf5\xa8\x0c\x4e\xa7\x20\xb3" + "\xfa\xd7\x86\x93\x10\xf2\x81\x22\xce\x42\x03\x41\x59\x06\x83\x6d" + "\x97\xed\xf8\xa6\x96\x85\xe8\x01\x7e\x7b\x23\xf7\x7c\x03\x16\x84" + "\x28\x39\xb2\xc7\xe2\x0a\x87\x6c\xd0\x70\x25\x9f\x4f\xf1\x4e\x6d" + "\x6c\xcd\x51\x5a\x38\x30\xab\x95\x7c\x89\x55\xc7\x5d\x95\x1e\x07" + "\x3d\xd9\xf0\x1c\x09\xcc\xb8\xb9\x52\x06\xb5\x09\x48\x4c\xd0\xe1" + "\xcf\x3c\xe2\x52\x0c\x1d\x98\x69\x1d\x54\x5c\x76\x1c\x99\xef\xdd" + "\x2c\x57\x58\x45\x25\x29\x1d\xd7\x51\x86\x86\x55\x13\x1c\x0f\x42" + "\xd6\xfb\xa9\x97\x36\xf3\x23\x35\x95\xe9\x8d\x1c\x13\x1a\x11\x53" + "\x2e\xc2\x3f\xf3\xa8\x6e\x56\x13\x43\xa6\x0b\x56\x5b\x1b\xae\x54" + "\xd9\x2d\xca\x6c\x81\x29\x19\x10\x1e\x25\x8c\xa4\xb5\x2c\xea\x37" + "\xe5\xec\x59\x69\x9c\x24\x2a\x6b\x64\x54\xeb\x90\x24\x9a\x4a\x6b" + "\x39\x48\x31\x24\x6e\x29\x88\x83\x20\x3a\x44\x31\x9e\x86\x90\xdd" + "\x62\x16\xdb\x2f\xdc\x05\xdf\xa5\xcb\x11\x45\xdf\x41\x81\x86\xc8" + "\x85\x45\xb8\xaa\xd3\x76\x5c\x86\xb7\x89\xc4\xb4\x5c\xae\xda\x6e" + "\x99\xad\xa9\x12\x64\x88\x6a\x18\xdb\xb7\x0e\xb4\xdb\x04\xc2\x8d" + "\x9b\x2f\x13\xe5\x3b\xc2\x07\xdf\xb5\x0a\xab\xcb\xdc\xd6\x5d\x82" + "\x35\xb0\x9e\x73\x87\x5e\xa3\x62\xb6\x37\x2f\x38\xc9\x0f\x1c\xf0" + "\xdc\x6c\xd7\x4f\xbd\xb7\x43\xf5\xf1\x07\xfe\x5c\xe1\x93\x98\xe1" + "\xfc\xf9\xf8\x79\xfd\xf3\x79\x5b\x0d\x7e\xcc\x16\xec\xc7\x1e\xfb" + "\x71\x77\xfc\xe5\xc3\xcb\xe9\xf4\xfa\xf4\xe7\x3f\x7f\xf9\xf2\x65" + "\xf4\x25\x1b\xed\x0f\xeb\x3f\xa7\xcc\x21\x71\xe2\x0f\xbd\xcf\x9b" + "\xf2\xcb\x3f\xee\xcf\xbf\x7c\x10\x8f\x0c\x4c\xd9\x7f\x1f\x7e\xcc" + "\x4a\x96\xff\xb5\x38\xbd\xf4\x98\x71\xa8\x7e\xf9\xc0\xbd\xf8\x87" + "\x1e\x7f\x61\xe4\x53\xf9\xcb\x87\x1f\xd3\x4c\xbe\x01\xa6\x3f\x89" + "\x97\x92\x16\xc5\xeb\x2f\x1f\x84\xd3\x43\x9f\xff\x8d\x75\x2a\xf3" + "\xbb\xe0\xf3\x97\x0f\xe9\x87\xde\xf2\x97\x0f\xdb\xb4\x97\xf7\xa6" + "\xfc\xdf\xe1\xf4\xc3\x9f\x65\xd5\xbc\x65\xec\xa7\x1f\xfa\xcf\xd1" + "\x0e\x3b\xd5\x36\xfb\xfb\x5c\x95\x1a\xf3\x4f\x5b\x95\xe0\x3d\x12" + "\x33\x91\xf5\xa8\x41\x8f\xd7\x89\x4a\x3c\x94\xac\x3d\x27\xd6\x16" + "\xf5\x13\x4c\x6b\x1e\x5a\xe1\x9c\x69\x6b\xc2\x8f\xc2\x94\x07\x48" + "\x27\x05\x33\x7d\x3d\xf7\x12\x1e\xfa\xf0\xef\x77\xa5\xac\x9f\x54" + "\x70\x4f\x5c\xd5\x03\x09\x72\x9a\xf5\xf5\x57\x9e\xb2\xba\xbf\x6e" + "\xdf\xaa\xd3\xe6\x95\x2d\xb6\x07\xe8\x33\xd7\x99\x7a\x92\x81\xff" + "\xf8\xcb\x0f\xc9\x0f\xcc\x84\xe3\x29\x9a\xea\xfc\x56\xff\x93\x81" + "\x93\x21\x4f\x6d\xd7\x82\x38\x77\xf3\x6e\x01\x7f\xe4\xf5\x0a\x27" + "\xbb\xf2\x11\x33\x29\x08\xc9\xad\x6b\x54\xa1\xe2\xcc\xad\x34\x35" + "\xb5\x31\x1f\x22\xc1\x5f\xc5\x1c\xf4\x4e\xf3\x43\xd5\x0c\x63\x6f" + "\xd1\xf3\x1c\x0a\x6a\xc4\xad\x33\x33\xd7\xab\xb3\xbd\xef\xda\x0b" + "\xc8\x27\x13\xbf\xbe\x17\xd0\xce\xf6\xa5\x5c\x7c\x32\x5f\x27\x6a" + "\x26\x67\x89\x4b\x27\x60\x27\xa6\x56\x5d\x92\xc2\x89\x12\x2f\xb4" + "\x07\x7e\x1e\x8a\xe7\x5c\xe0\xa3\x18\xf0\x9c\xf8\x50\x94\x08\xf3" + "\x32\xcb\xc2\x96\xb3\xc7\xd2\x18\x82\xb2\x66\x23\x86\x39\x78\xf8" + "\x46\x50\xb9\xca\x21\xdb\x22\x72\xe0\xc0\xaf\x43\xc4\x1f\x5e\x8e" + "\x81\xfc\x4d\xbf\x91\x5f\xdd\x27\x8a\x9d\x81\x5f\x9b\xf9\x69\xd2" + "\x54\xa4\x06\xa7\xfb\x14\x6b\xbc\x9f\x44\x2d\x0a\x7a\x4b\x4d\x28" + "\x13\xdb\xbb\x42\xc2\xfb\xa9\xa0\xc3\xb7\xf8\xbe\xd7\x03\x0f\x06" + "\x2c\x27\xae\xea\xc5\xc6\xf2\x5c\x2c\x4e\xb6\x26\xe4\x0e\xaa\xf8" + "\xc0\x7c\xc2\x6f\x57\xeb\x69\x28\xa3\x6b\x81\x4c\x9c\x66\x6f\xe6" + "\x10\x17\x2d\x4c\xfa\x27\x75\xa8\x8f\x0d\x5a\x11\xd2\x5d\x74\x95" + "\x5d\x79\x3c\x7e\x7c\x1c\xff\xd8\x77\xd0\xb7\xf5\x6b\xfe\x6d\x53" + "\x50\xb0\xf8\xd9\xe5\x5b\x54\x26\x63\x17\x57\x7e\xa4\xcb\x31\xa5" + "\x47\xf5\x8d\xbb\xdb\xc3\x94\xff\x17\x61\x0f\x57\xab\xd5\x8d\xc6" + "\x30\x93\xc6\x90\xd9\xdf\x71\x2f\x63\xff\xba\xac\x21\x38\xe4\x5c" + "\x6f\x63\x86\x84\xa6\x7a\xcf\x37\x91\xd8\x70\xd2\x63\xff\x3d\xf4" + "\x1e\x94\xc4\x16\x9b\xc3\xa2\x2a\x7b\x07\x61\xea\xa5\xe4\x94\xac" + "\xba\x71\x66\x74\x83\xa7\xcd\x6e\x59\xb2\x8e\xce\x3c\x41\x71\x2a" + "\xdb\xf5\xb5\xe7\xff\xdf\x76\xa1\x7f\xe6\x5d\xe8\xe5\xa1\x6b\xe7" + "\xa9\xa7\x85\xae\xed\x71\x65\x58\xc4\xcf\xf5\xdb\xb0\xb9\x43\x51" + "\xba\x94\xdf\xfe\x06\xd3\x04\x6c\x3a\xa0\xeb\xb4\x89\xf5\x06\xc5" + "\xb2\x5c\x15\x6c\x52\x6c\x57\x7a\xfc\xb2\xe1\xdb\x05\xf8\xe9\x4e" + "\xe0\xa8\x65\x7a\xcf\xe7\x19\x25\x89\x70\x8d\xdf\x64\x2c\x64\x7a" + "\x2c\xf0\x8d\xe0\x1f\xd3\x87\xf1\xa0\xa7\xfe\x63\x86\xf5\xc7\xf4" + "\xd1\x5e\x0a\xab\x3b\x9c\x86\xbf\x1f\x0a\x3e\x83\x4b\x4d\xcd\x5d" + "\xdf\xe9\x1b\x79\x49\xf5\xf2\x10\x79\x18\x5e\x1d\x5c\x8f\xd9\x99" + "\x6f\x5e\x7a\x51\xba\xa1\x16\x63\x04\xbd\x72\x63\xdf\x81\x46\xd9" + "\x30\x96\xee\x93\x9a\xc8\x92\x2c\x38\x1c\xa6\xb1\x94\x57\x4a\xfa" + "\x3e\xb8\x6c\x69\xc3\x65\x53\xc3\x53\xe7\xd4\x31\x75\x0e\x15\xe1" + "\xe8\x3f\x78\xa6\x9c\x06\x67\xca\xe2\xd1\x21\xd7\xdb\x2e\x78\xce" + "\x2d\x6f\x3a\xce\x4f\x3b\xb5\x1e\xa9\x15\x54\xcc\xd9\x2c\xf1\xed" + "\x54\x3e\x8b\x13\x08\x07\xb6\x3e\x6b\xf0\x1d\x87\x19\x05\x65\x34" + "\x86\xf2\x67\xfe\x71\xd0\xa4\xd4\x46\x51\x24\xc4\x5b\xe3\x69\xee" + "\x5d\x4e\x52\xfd\x4f\xec\x13\xab\x4e\xd8\x07\xaf\x5e\xf6\xbf\x23" + "\x43\x99\xe6\xf9\xa0\xd7\xfc\x41\x99\x4b\xa5\xdc\x03\x3f\x37\x7b" + "\xb5\x1f\xf4\xc1\x8b\x45\x36\xbf\x0d\x2e\x5b\xc4\xb6\x06\x2c\x95" + "\x80\xdd\x40\x1a\x78\x48\xaf\xda\x88\xbb\x4a\xfc\x71\xa4\xab\x35" + "\x95\x4e\x5e\xcf\xe2\xc0\xa0\x7f\x5b\x08\x17\xcc\x77\x5e\xc4\x97" + "\x7b\x14\x0a\x1f\xa0\x64\xfc\xd4\xf7\xd9\x9e\x4c\x32\x17\x3b\x4a" + "\xb8\x00\xca\x80\xd0\x90\x7c\x95\x59\x6e\x85\x44\xc8\x58\xcd\xd5" + "\x22\x80\x7b\xf3\x19\x7b\xe5\xb0\x12\xb9\xe7\x02\x84\x31\x12\x5b" + "\xee\x35\xff\xe2\x9f\xa4\x20\xbc\xda\x1f\x8c\xab\xfb\xe4\x4c\xf8" + "\x43\x4f\x16\xbd\x12\xb4\xe5\x3c\x9f\x2e\x27\xab\x32\x46\xce\xde" + "\x5a\x0e\x6f\xbb\x9d\x38\xaa\xc8\xda\xc6\x4c\xa1\x3d\xcc\xe0\x3d" + "\x54\xb9\x2f\x88\xb1\xa6\xe7\xd8\x23\x28\xc6\xec\xbd\x81\xd3\x29" + "\xbd\xd3\x9b\xaf\x8e\x9e\x0f\x07\x12\xd1\x9d\xff\x77\xdf\x8d\xed" + "\xbb\xa6\x40\x03\xfd\xd6\x20\xff\x0a\x7d\x16\xd4\xf0\xef\xb5\x9b" + "\xfa\xd6\x63\x4e\x42\xca\xf5\x44\xf0\x81\x76\xe6\xad\x52\x2d\xbf" + "\xd3\xb6\x44\xb1\x99\xc9\xd1\x82\x66\x66\x5b\x56\x05\xd7\xb9\x41" + "\xf0\x2b\xc2\x53\x07\xbe\xc4\xe6\xec\x8a\x9b\x4c\xed\x9f\x43\x3c" + "\x36\x8b\x3f\x8c\x62\x1e\x00\x68\x91\xd5\x78\x27\x33\x37\x59\x54" + "\xe7\xae\xad\x29\x24\xf7\x9a\xe3\x67\xb5\x6b\xfc\x3b\x7f\x07\xbb" + "\x3c\x3f\xa5\xb5\x41\x82\x00\x68\x02\xd0\x4e\xe3\xf8\x26\xdc\x6f" + "\x3e\x9e\x8a\x83\x7a\x79\xbd\xa6\x2a\x2b\x36\x53\x3d\x6e\x8e\xcf" + "\x5f\x5e\x36\xa7\x72\x78\x64\xb3\x47\x6e\xdd\xc4\x3b\x64\xf4\xb9" + "\x38\xff\x1e\x29\x3e\xd7\x54\xbf\x92\x39\xdc\xb3\xd9\xb3\x7c\xc9" + "\x1e\x5a\x2f\x35\x61\x65\xa6\x07\x5b\xa5\x3a\x9f\x99\xd2\xd2\x26" + "\x19\x82\x26\x4c\xd1\x4d\x3d\xee\xea\x50\x84\xb7\x5c\x74\x88\x33" + "\xb2\x12\xd7\xc1\x4f\x38\x21\x25\x6a\x12\x33\x3a\x6f\x15\x72\x92" + "\x0f\x0a\x67\x46\x68\xff\x65\xd7\x8f\x6d\x57\xb8\x06\x40\x4c\xd4" + "\x85\xd0\x36\xfd\x12\xb2\x05\xb8\x4d\xd3\xb0\x64\xeb\x87\xa3\xdf" + "\x4e\x7b\xbe\x68\x88\x6d\x98\x99\xef\xf6\x16\x29\x8b\x73\x37\xce" + "\x84\x9c\xff\x06\xb7\xce\xda\xe9\x33\x22\x6b\x23\x0f\x1f\xb1\x64" + "\xec\x6f\x6a\x5f\x4e\x74\x44\x1c\x11\xa5\x41\x77\x65\x34\x14\xb6" + "\x16\x05\x76\xe0\xe9\xc8\x8c\x66\xf9\x71\xf4\x90\xf7\x65\xf0\x19" + "\x66\xfa\xcb\xff\xfe\x51\x1e\x2a\x03\x9f\x3e\xb2\xc9\x08\xff\x12" + "\x2d\x95\xa7\x62\x75\x0a\x0c\x27\xbf\x6c\x22\x0a\x30\x25\xe4\xcb" + "\x02\xe5\x24\xe9\x1c\x66\x5e\x78\x7a\x65\x38\xe4\xb9\x95\xda\xd8" + "\x0f\x13\x7c\x9a\xbc\x7e\x92\xf7\x87\x16\xc7\xe3\xa3\x4e\x49\x45" + "\x8e\xa5\xef\x43\xe5\xa6\x0a\xae\x6d\x4e\xce\xd6\x45\x36\x7b\xcd" + "\x11\x23\x0a\xd3\x5e\x8d\x37\x94\xbd\x05\xc7\x74\x4a\x57\x8e\xf8" + "\xd3\x18\x62\xdf\x46\xc6\xa2\xb1\x27\x54\xde\x87\x46\xc5\xb4\x40" + "\xbc\x88\x7d\x64\x93\x83\x43\x79\x5a\xbc\xa0\x90\x75\xa0\x64\xd3" + "\x2f\xda\x49\xb2\xb7\xbb\x52\xe8\xe9\xde\xb3\x0a\x3a\x99\xa0\x70" + "\x79\x3f\x3e\x37\x77\x2a\xc6\x9e\x56\x68\xcf\x43\xb5\x85\x4e\xd7" + "\x2d\x92\x14\xac\xaa\xd3\xcb\x66\x77\xd5\xe3\x2e\x47\x75\xf6\xd4" + "\xb6\x9b\xd9\xf4\x7a\x4a\x66\x53\xab\x6d\x21\x77\x79\x43\x74\x0a" + "\x5d\xa8\x05\xea\x41\xed\xee\x7e\xf5\x1b\x56\x60\x5e\xa8\xaa\x74" + "\xcc\x00\x63\x2f\x59\x7c\xe5\x43\x63\x58\x7e\xd5\xda\xd3\x19\x9b" + "\x54\x47\x7f\x14\x89\xa6\x2a\x6c\x0a\xa1\xef\xfb\x9e\xb8\x86\x55" + "\x1c\xb7\xbe\xf6\xd7\xa9\xae\xf6\xf3\x44\x7f\xfb\x39\x05\x6a\xff" + "\xbd\x4e\xcf\x47\xcb\xd8\x60\xc0\xd8\xd8\x97\xb1\xfa\x00\xbd\xf0" + "\xc8\xa3\x97\xe2\xc8\xaf\x53\x6d\x96\x85\x8c\x88\x24\xfd\x74\x55" + "\xd4\xa1\x9e\x24\xd9\xf2\xb0\x7f\x65\xcb\x63\xbe\xa5\xb8\x5e\x57" + "\xa5\xf9\x75\x5b\xee\xde\xd4\x37\x34\xcc\xfb\x83\x70\x8d\x66\xd9" + "\x22\x20\x53\xd3\x80\x8f\xbb\x9f\xb3\xa8\x62\xb0\x7d\x31\xd9\xf0" + "\x68\xfe\x96\xf2\x94\xa8\x41\x38\x2c\x21\xed\xe6\x62\x11\x8e\xb1" + "\x85\x13\x91\x3a\x8c\x06\xfc\xea\x12\xc3\x1d\x75\x61\x56\x17\xd6" + "\xc2\x24\x50\x80\x21\x2f\xbb\xf5\x1e\x15\x74\x2e\xec\x7e\xf2\x77" + "\x44\x39\xa3\x05\x2b\x9a\xca\xaa\xdb\xf3\x53\xa2\xe8\xdb\xaa\x2c" + "\x97\xdc\x78\xab\x8f\x9b\x9d\x8b\x54\x7f\xad\x89\xaf\xd6\x43\xe1" + "\x44\x0c\xbb\x61\x52\x5b\x6e\xce\x2c\xa7\xa7\x78\x45\x69\xef\x3e" + "\x5f\x6c\x31\x1e\x9e\x73\x04\xf3\xda\x8a\x69\xd1\x56\x2c\x9d\xda" + "\x65\x8b\x7d\x10\x3b\xb2\x63\x8b\x6b\xd7\xa2\x69\xb2\x74\xbd\x2f" + "\x86\xf4\x43\xec\x06\x89\xda\xea\x49\xc5\x33\x6a\x8f\xfb\x65\x76" + "\xd7\x2d\x26\xd9\xd0\xc4\xed\x0f\xd4\xcc\x96\x47\xae\xf0\xcc\x3f" + "\x65\x34\xaa\x68\xe7\xfd\xa5\x19\x55\xe5\xb2\xf7\x24\x7e\xfc\x9b" + "\x21\xdd\x81\x97\x4a\xc9\x85\x75\x01\x45\x63\x67\x37\x53\xb4\x28" + "\xd1\x59\x51\xb3\x2d\x78\x3a\x29\xbe\xe3\x1b\x71\x75\xb1\x57\x77" + "\xb0\x0e\xa0\x49\xe3\x40\x20\xf2\x7a\x8e\x8b\x3d\x8e\xc3\x8e\x77" + "\x3e\x6f\xd4\x20\xa9\xe0\xb4\xd1\x8f\x69\x96\x3c\x32\x65\x4f\xe4" + "\x11\xa1\x74\x94\xf5\xa6\xa3\x59\x36\x9a\xf6\x26\xa3\x3c\x5b\x0c" + "\x47\x93\x61\x32\x1a\x4f\x46\x93\x29\xfb\x7b\xd2\x4b\x46\xc9\x70" + "\xf4\x50\xb1\xbf\x7a\xfc\xd7\x8c\x25\x67\xa3\x87\xc5\x68\x3a\x1c" + "\x4d\x33\xf6\x89\xfd\x9d\xce\xd8\xdf\xe9\x68\x56\x0d\x27\xac\x8c" + "\x29\x2f\x22\x1b\xe5\x2c\x97\x28\x8a\xfd\xfb\xbb\x7d\x8e\xa5\xdb" + "\x1d\x86\x3a\xb2\x84\x14\x63\x22\xfb\x6c\x9f\xba\xd4\x20\xc9\x35" + "\x75\xa6\x89\x5d\x5f\x23\xfa\x05\xda\xe6\x32\x7b\x87\xeb\xfc\x64" + "\xb8\x8f\x50\xe7\x29\xf1\xca\x5a\x8d\x36\xb5\xac\x4e\x73\xab\xb1" + "\xce\x5b\x6b\xaa\x33\x3b\xd3\x9a\x4e\xdd\xae\x97\xd6\xea\x60\x16" + "\x84\x54\x86\x57\x55\x6e\x39\xab\xd5\x1a\x1c\x7e\xf2\x53\xd7\xd1" + "\x17\xae\x46\x5e\x9e\xa8\xaf\x57\xf4\x9b\xcb\x14\xbf\xf5\x07\xad" + "\x73\x37\xb7\x30\xdc\xcd\xf7\xd7\x16\x93\xa3\xa9\xe1\x4a\xdd\x0f" + "\xba\xfb\x79\xc5\xef\xd8\x7e\xe0\x7e\x3b\x51\xc7\xf9\x63\xaf\x3f" + "\x0d\xe4\x5f\xaa\xab\xa6\x23\x2b\x33\xbe\x13\x35\xb8\xd9\x90\xa0" + "\xbe\x03\xed\x88\xa9\xf5\x3f\xd2\x8c\xb8\xae\x64\x3a\x3c\xa2\xba" + "\xe7\x58\x8f\x4c\x39\xe9\x50\xa0\x98\xbe\xb2\x2a\x8c\x08\x55\x03" + "\x38\x6c\x84\xca\x6f\xbe\xdf\x77\xdc\x5b\x15\xea\xe3\x4d\x9e\x8a" + "\xe9\x73\xeb\xbe\x49\x5c\x5c\xed\xc8\x91\xb8\xea\xd6\xbd\xe0\x9e" + "\x6a\x35\x5b\x11\x73\x1c\x17\xcc\xa9\xec\xe3\xb8\x41\x61\x58\x07" + "\xeb\xec\xa6\x98\xb3\x38\xb4\xfe\x90\x67\x77\x0d\x66\xe8\xbd\x40" + "\x70\x52\x4d\x77\xab\x28\xe2\x9a\xc9\x41\xb8\x2e\x35\x8e\xa3\xaa" + "\xb2\x69\xdb\xd4\x64\x2c\x6c\xc0\x2e\xa5\xa7\x4a\x4f\xa6\x66\x44" + "\xe9\xf5\x43\xf6\x6e\xad\xff\xee\xbd\xc2\xd1\xe5\xeb\x1e\x61\xac" + "\x42\xbf\xf3\x55\x8e\x0c\xb7\xd9\x75\x91\xa3\x78\xfd\x9b\x25\xe4" + "\x41\x90\x12\x2e\x76\x3c\xc5\xb8\x52\x3b\x2c\x7a\x54\x56\x7b\x62" + "\xab\x12\x7c\x26\x58\x57\xfb\xdd\x2d\x7d\x92\x94\xfd\xf7\xa1\xa7" + "\xae\x43\xf0\x1f\xe5\xa6\xb8\xfc\x99\xba\xca\xb8\xc8\xf2\x49\x8e" + "\x0f\x9f\x2e\x58\x81\xd3\x0f\xbd\xc5\x45\xfc\x75\xf8\xe5\x03\x9b" + "\xe5\xe8\xe9\x88\x98\x15\x51\x17\x32\xf8\xe4\x28\x1f\x3d\xb0\x19" + "\xcf\xf4\x65\x34\xf9\xcb\x94\xcd\x92\xf2\x7a\x22\x63\x17\xfe\x30" + "\x4a\x45\xf1\xa3\x29\x38\x5b\xad\x1a\x54\xb7\x51\xb4\xf8\xdf\xf9" + "\x5a\x4a\x75\x19\x6a\x35\x85\x92\xdb\x77\xbd\x38\x9f\x29\x47\x76" + "\xdb\x05\x95\x1e\x28\xe4\x92\x4a\x0f\x98\xef\x6a\x51\x85\x87\x77" + "\x33\xdf\xec\x3a\xba\x63\x2a\xeb\xbc\xb8\x22\xf2\x7b\x96\x57\x51" + "\x35\xc6\xe5\xf9\x23\x96\x58\x7f\x4f\x76\xea\xdf\xe7\x9a\xcd\x65" + "\xaf\xec\xae\xf4\x87\x9a\x2b\xd7\xc2\xcd\xe9\xd5\x9b\xa5\x9b\x1e" + "\xfd\x37\x2d\xde\x8c\x3a\xf0\xba\xe1\xbe\xf6\xc5\x51\xad\x7f\x11" + "\x67\x10\x85\x96\x71\xe6\x4c\x35\xb6\x0d\x9e\xa5\x9c\xd9\x35\xee" + "\xa8\x69\xbb\x21\xb1\xab\x39\x92\xfc\x1a\x23\x95\xa8\x15\x9d\xb5" + "\xa8\xb8\xd3\x9a\xae\xee\x6d\xd1\xab\xba\x3a\x47\x97\x75\x9d\xa7" + "\x3a\xf7\xca\x2e\xbe\x36\xdf\xda\xce\x53\x6d\x60\x75\xa7\x07\x9c" + "\x5e\x39\x4d\xc4\xe5\x32\xe9\xca\xf8\x5d\x32\x6d\x7e\xf9\xfb\x80" + "\x72\x15\x64\x25\xf1\x27\x01\x33\x23\x4d\x2c\x9e\x56\xc5\x76\x53" + "\xb1\x54\xe3\x73\x73\x0e\x05\x7f\x57\x07\x52\x7a\x13\x1d\x8e\x9e" + "\xa7\xc0\xa3\x29\xdc\xc4\x34\x29\xf6\xa3\x75\xcd\x29\x95\x9a\xc8" + "\xf9\x52\x9d\x48\x80\x87\xbf\x88\xb8\xc9\x16\xb5\xaa\xd2\x57\xa0" + "\x5a\xef\xf5\xa8\x38\x46\x35\xbd\x0a\x08\x1f\x53\x70\x6d\x03\x7a" + "\xfa\x9d\x33\x7e\x43\x6b\x2c\xad\x80\x71\xa9\x6d\x94\xe4\xfd\x81" + "\xa2\xe0\xff\xab\x43\xd5\xea\x86\xb0\x7c\x5e\xae\x2e\x5a\x1f\x20" + "\x1b\xea\xdb\x7f\xbd\xd1\x34\x87\x5a\xe1\x9d\x05\xd6\xef\x31\x42" + "\x4d\x06\x75\x17\x41\x3d\x68\x97\x37\x91\xb8\xd0\xcd\x48\xbd\x08" + "\x47\x05\xd4\x5d\xaa\xdf\x73\x7e\x3f\xab\x50\xd6\xaa\x67\x19\x95" + "\xd7\x09\x30\xe0\xb5\x4d\xc3\x3f\xf7\xd1\x19\x28\x9b\x46\x26\xe0" + "\x53\xf8\x88\x0a\x24\xf4\xad\xf3\x52\xba\x77\xba\x8e\x4b\x89\x2f" + "\xcb\x72\xb1\x3f\x14\xf5\x69\x72\x33\x18\xca\x76\xb3\x5c\x56\xa5" + "\x79\x93\xe4\xed\xc8\xcf\x9d\x6a\x2b\xe2\x3a\x54\x6f\xf4\x6b\xfb" + "\x0c\x95\xd1\x95\xe9\x5d\x0a\xb3\x43\x7b\x23\x2b\x8b\x71\xd6\x8f" + "\xbc\xbe\xe4\xb8\xbf\x82\x3a\x79\xff\xdf\x4b\x34\x5b\x6e\x26\xed" + "\x5b\x01\xfc\x18\x9f\x18\xda\x57\x87\x94\xd0\x1b\x64\x7e\x81\xd6" + "\xaf\x8f\x11\xcf\x3d\xb8\x4d\x48\x1f\x5c\x0d\xfe\xd9\xdf\x96\xa8" + "\x56\xf8\xeb\xb7\x6b\x56\xfe\xe5\xf3\xe6\xb8\xe1\xaf\xa5\xde\x4d" + "\x04\xd1\x17\xe3\x22\xc5\x14\x8a\xba\x86\x7b\xe4\xc0\x61\xe4\x40" + "\x32\x90\x39\xe6\x5f\xde\xbc\xfe\x3e\x1a\xa6\x66\xb4\xf2\x96\xb8" + "\x3c\xc7\x53\x27\xf6\x65\x57\x91\xd7\xe7\x06\x52\x8f\xcd\x99\x18" + "\xf8\x7d\x04\x7f\xe6\x47\xe0\x5d\x2a\xc6\x6f\xfd\xf9\x75\xdc\xbc" + "\xf2\xe7\x0e\x39\xe7\x51\xab\xce\x4a\x2d\x8d\x5c\xc4\x01\xc1\x60" + "\xf5\x79\xc5\x64\x90\x12\x42\x73\x50\x8d\xe8\x14\x2e\x50\x63\x04" + "\xc5\xf1\x13\xd3\x0f\xea\xd3\xe2\xb2\xae\xfa\xb7\xd5\xa6\xac\x96" + "\xfc\x2e\x81\xfe\x22\x0f\x2e\x3b\x04\x5e\xcf\x16\xf4\x86\xad\xeb" + "\x9e\x97\x57\xdb\x75\x09\x5d\xf4\xdd\x64\xc6\x03\x46\x4d\x5d\xdc" + "\xb4\x2a\x15\x75\x8c\x26\x84\x02\x7a\xd1\x11\xcc\x29\x9b\xc7\x7b" + "\xf4\x1c\x12\x45\xfd\xb1\x67\x84\x56\xb2\xfd\xa2\x8f\x65\xd6\x78" + "\xae\x79\x5e\x2e\x67\xfe\x39\xe1\x9f\xc6\x45\xfe\xa0\x5f\xb6\x72" + "\x4d\xb2\xd8\x84\xf9\x71\xd0\x4b\xb2\x94\xcf\x00\xb3\x67\xe7\x30" + "\x34\xdb\x00\x5f\x32\x32\xcb\x77\x8c\x2b\x49\x95\xe9\x67\xcb\xac" + "\x0e\xd8\x4c\x4c\x33\x36\xe5\xcc\xed\x69\x67\x92\x3a\xa7\x9d\xce" + "\xb6\x81\x4e\xe2\x10\xac\xb3\x17\xd4\x74\x52\xad\xc6\x83\x92\x7e" + "\xc5\xca\xdb\x18\xa4\x62\xcd\xe4\x38\xc5\xe6\x8b\x69\x36\x2d\x02" + "\x8a\xcd\xa7\x79\x39\x9d\xf8\x14\x9b\x64\x63\xae\xd9\x07\xf6\xc7" + "\x24\x6f\xaf\x59\xb3\x02\xb7\x66\xf3\x24\x7f\xc8\xff\x00\xcd\x9a" + "\x92\xa5\x34\xab\xaf\xcb\x08\xcd\xc2\x07\x2d\xfd\x7a\x95\xc7\x4d" + "\x48\xbd\x9a\xc9\x71\x7a\x4d\xf2\x59\x36\x09\x0d\xd8\x64\x32\x5d" + "\x4c\x32\x9f\x5e\xa7\x5c\xad\x79\xc6\xfe\x48\xc6\xed\xd5\x6a\x96" + "\xef\x56\x6b\x92\x4d\xf3\x6c\xf5\xed\xd5\x6a\x0a\x96\x52\xab\xa4" + "\x93\x6a\x6d\xde\xd3\x84\x3a\x1d\xc3\x7d\x00\x65\x0c\x16\xc5\x6a" + "\xec\x31\xc2\x38\xd9\x7e\xab\xce\xa5\xd3\x2c\x59\xa6\xfa\x9d\x5d" + "\x52\xa7\x69\xbe\x58\x41\x22\xc7\x58\x4d\x98\x3a\x67\xdc\x08\x8f" + "\x27\xa4\x4e\x51\x1b\xd0\x73\x72\xcb\x65\xbe\x0a\xea\xd4\x6c\xc5" + "\x5d\x75\x8a\xda\x66\x1a\x61\x2c\x58\xda\x08\x73\x3a\xa9\x53\xf4" + "\x9c\xa7\x5f\xad\xab\xd5\x22\x19\xcf\x48\xb5\x9a\xc9\x71\x6a\x65" + "\xb9\x8a\x74\x11\x50\x2b\x23\x9a\xa5\x63\x9f\x5a\xd3\x64\xc6\xf4" + "\x3a\x9d\x0c\x7a\xd3\xf6\x5a\x65\xc5\x2f\xf5\x4b\x7f\xb4\x56\xcd" + "\x46\x7c\x2b\xad\x9a\x72\xa5\xb4\x2a\xe9\xa4\x56\xe1\x63\xa2\x7e" + "\xfb\x2b\xd1\x1d\x52\xa9\x66\x72\x9c\xfd\x9d\xcf\xd3\x65\x36\x0f" + "\x28\x75\x3e\x4e\x8b\x6c\xe6\x55\x6a\x9a\x0f\x7a\x0f\xcc\xfe\x3e" + "\xce\xda\x9b\x5f\xb3\x78\xb7\x52\x8b\x3c\x7d\xc8\x26\xdf\xde\xfc" + "\x9a\x72\xa5\x94\x2a\xe9\xa4\x52\xc1\x53\xa6\x81\x81\x0a\x9e\x31" + "\x75\x0d\x54\x23\x39\x6e\xa0\x2e\xb3\xe5\x64\x99\x07\x74\x0a\xdf" + "\x47\xa5\x06\x2a\x33\xc0\x69\xc2\x0d\x70\x92\xb5\x1f\xaa\x66\x05" + "\x6e\xad\xce\x8b\xf9\x7c\xbe\xf8\x03\x86\xaa\x21\x59\x72\xa8\x0a" + "\x3a\x3d\x54\xf5\x53\xaa\xfe\x81\x0a\x9f\x51\x75\x28\xd5\x4c\x8e" + "\x1b\xa8\x93\x74\x32\x9d\x3c\x06\x94\x0a\xdf\x50\x25\x26\x4a\xd3" + "\x41\x6f\xc6\x44\x37\xeb\xb0\xae\x81\xaf\xbf\xd2\x1a\x35\xdb\xf0" + "\xad\xc6\xa9\x29\x56\x4a\xa3\x92\x4e\x6a\x54\xed\x0d\xd1\xcb\xd6" + "\xaf\xb3\x48\x75\xe6\x0a\x14\xed\x5a\xcb\x88\xe9\x6e\xd7\x45\xaa" + "\x51\x3e\xb1\x48\x75\x53\xdd\x69\x78\x92\x2b\x51\x0a\x63\xf2\xaf" + "\x55\x9f\xd1\x06\xe6\x53\xaf\xd9\x96\xd0\x7a\xf6\xac\x63\xbf\xca" + "\xaa\xd5\x9d\x2b\x50\xb4\x43\xd3\x63\xbe\x60\x15\xf3\xa6\xb4\xc3" + "\xaa\xd5\xac\xc0\xad\x6a\x82\xea\x3e\xaa\xa6\x97\xa6\x6d\x55\x0d" + "\x4b\xf2\xaa\x9a\x5a\xd8\x7e\x9d\x65\xac\x33\x57\xa0\x68\x87\xcb" + "\xcd\xf9\xee\x04\x9f\x4a\x4d\x3a\xac\x62\x8d\xe2\x89\x55\xac\x9b" + "\xea\x3e\x6a\xa6\x97\xaa\x6d\xd5\x0c\x4b\xf2\xa9\x99\x58\xe8\x7e" + "\x8d\x65\xad\x3b\x57\xa0\x68\xb7\xd9\x4e\xc7\x7c\x56\x35\x19\xb7" + "\x9f\x55\x99\xe5\x53\x66\xdb\x49\x75\x2f\xb3\x4d\xad\x5d\xdb\x9b" + "\xed\xa6\x24\x9f\x92\xc9\x95\xef\xd7\x5a\xe7\x3a\x72\x05\x8a\x76" + "\x8d\x65\x3e\x98\x1f\x99\xb6\x67\x9d\xd6\xb9\xa8\x78\x72\x9d\xeb" + "\xa2\xba\xd7\x54\x8b\x5a\xcc\xb6\x55\x33\x2c\xc9\xa7\x66\x6a\x29" + "\xfc\x55\x16\xbe\xee\x5c\x81\xa2\x5d\x0b\x5f\x26\x4a\xbe\xf1\x38" + "\x7d\x6c\x6f\xb1\xcd\xe2\xdd\x5a\x26\xa8\xee\xa3\x65\x7a\x75\xdb" + "\x56\xcb\xb0\x24\x9f\x96\x89\xb5\xf1\x57\x59\x09\xbb\x73\x05\x8a" + "\x76\x28\x79\xf2\xc0\xcd\xf5\x23\x9f\x6a\x77\xb0\xd9\x66\x05\xc4" + "\x60\x76\x53\xdd\x69\x30\x93\xcb\xdd\xd6\x83\x19\x94\xe4\x1f\xcc" + "\xae\xc5\xf2\x57\x59\x1a\xbb\x73\x05\x8a\xb6\xb5\x9c\xb1\x51\x9c" + "\xb1\x39\xf6\x24\x69\x3f\x92\xcd\xd2\x89\xdd\x66\x37\xd5\x7d\x54" + "\x4c\xaf\x7f\xdb\xaa\x18\x96\xe4\x52\x31\xd3\x2f\x50\x2d\x7d\xd2" + "\xd0\x3c\x4f\xc8\xf3\xb5\x3e\x4f\xe8\x3b\xc8\x87\xba\x07\xae\x06" + "\x9d\x8a\x69\x7f\x44\x10\xeb\x3d\xa6\x68\xa7\xc6\xfd\x62\x0f\x2f" + "\x8e\xda\x9d\x65\x94\x67\x09\xb1\x1d\x0a\x60\xdb\xe6\xd9\xb9\xb7" + "\x1d\xab\x90\x8f\x5f\xea\xbd\x42\xad\xff\xf0\xb9\x24\x78\x7c\x4a" + "\xe4\x88\x3a\xc4\xa5\xe8\xd7\x57\xe7\xa1\x58\xf7\x71\xd9\xf3\x53" + "\xcf\x71\xf8\x15\x05\x08\x6b\x77\xa8\x54\x86\x0a\x13\xf0\xe8\xd6" + "\xdd\x90\x94\x6c\xc9\x28\x27\x9a\xa2\xef\x3c\xb6\x6c\x8a\x7c\x11" + "\xb1\x58\x96\x57\x67\xa8\xde\xfc\xd8\xe3\xea\x2a\x0e\x2d\x82\xf1" + "\x1a\x85\xe9\xe8\xbb\xec\xb3\x3c\x9f\xc3\x4f\xcd\xf4\xaf\xfa\x18" + "\xc8\xf8\x7d\xc4\x54\x53\x15\xaf\x47\x94\x0c\xaf\x83\xd6\x14\x7c" + "\x92\xae\xce\x76\x8e\xed\x00\xc8\x4d\x95\x92\xa6\x37\xca\xd4\x51" + "\xc1\xf8\xc6\x83\x8a\x6c\x16\x9a\xc4\xba\xc9\xac\x73\x1d\x36\xbf" + "\xf3\x77\xe5\x2a\x75\xc9\x62\xac\x63\x79\x8a\x48\x87\xa0\x10\x91" + "\x7c\x5b\x9b\x9c\xd5\xda\xed\xdc\x15\x9f\x65\xb7\x62\x3f\x48\x9b" + "\xe2\xec\xca\x56\x2a\x1e\x02\x75\x32\xb2\xc0\x46\x5a\xd0\x06\xd7" + "\x94\xad\x8c\x69\x9d\xcb\x34\x66\x64\xc4\x71\x6f\xfc\x4b\xe3\x69" + "\x46\xfc\x46\x24\x8f\xa6\x78\x64\x83\xe8\x74\xa9\xb4\x15\xd2\xd5" + "\x1b\x0f\x50\x5a\x27\xa0\x6d\x09\x82\x63\xd0\xb6\xf0\x9d\xa7\x9c" + "\xb1\x98\x3d\x47\x9d\x5d\xfa\xb0\x4e\x32\x63\xc5\xf4\xdd\x87\x97" + "\x1b\xdb\x8b\x8e\x25\x8f\xbf\xfe\x41\xde\xf8\x4e\x5f\xab\xc0\xd9" + "\xbd\x81\xc5\x1f\x34\xbf\xcb\x2b\x38\x94\x44\xb0\x1b\xc0\x99\x6a" + "\x47\xd3\xea\x11\x44\x5d\x46\x73\x36\xaf\x29\xb6\x8e\xe2\x4f\x35" + "\x27\xe6\x70\x1e\x7e\x0b\x4d\x56\x78\x2a\xe6\xc7\x66\x74\xf3\xdf" + "\x5a\x5c\x8d\x30\xb3\xd8\x57\x32\xe0\x49\x3d\x67\x96\xa8\xfb\x12" + "\x75\x26\x20\x79\xa2\x4a\x14\xe4\x36\xf8\xd9\xd7\x40\x51\x17\x31" + "\xb3\x2a\xb7\xaf\x2f\xc5\x71\x73\x0c\xe7\x74\x3f\x98\xea\xa1\x8f" + "\x90\x64\xc4\x67\x1c\xcc\x59\x99\x26\xd4\x6b\x2c\x55\x5b\xb7\x05" + "\x9c\xda\xed\x37\xdd\xa6\xd7\x8c\x2a\x6c\x02\xc5\xc5\xc0\x61\xf2" + "\x53\xa0\x3e\x3b\x00\xac\xb7\x5d\xf8\x79\x00\x22\x34\x1f\x59\x54" + "\xf3\x8e\xb8\x3b\xd6\x62\x28\xa3\x8b\x6d\x68\x31\x8c\x14\x69\x3b" + "\x36\xac\xe5\xd2\x50\xca\x9f\xa8\xe3\xad\xa1\xfe\xed\xac\xbd\x3e" + "\x8b\x8d\x93\x78\x38\x60\x31\xe9\x01\xea\xf1\x56\x17\x7b\x5c\x9b" + "\xe8\xde\xfd\x28\x9e\x5c\x87\xb5\x21\x53\x28\x4c\xe5\x15\xc4\xe2" + "\x68\xd9\x97\xe8\x58\x8d\x76\x74\x4d\x59\xff\xeb\xa6\xaa\x80\x05" + "\x14\xbf\xb6\x36\x4e\x32\x97\xc3\x62\x34\x6b\x70\x37\x19\x00\x37" + "\x41\x73\x80\xea\x88\x0b\x3a\x44\x53\xfb\xce\x42\x50\x4f\x51\x69" + "\xbc\x87\xfc\xea\xed\x21\x04\x4f\xa1\x2e\xe2\xe2\xb1\x1f\xf7\xf4" + "\x0e\xcf\x5e\x2f\xe9\x1a\x95\xd4\x9f\x86\x6b\x36\x03\x33\x66\x9c" + "\x4d\x22\x76\x5b\xfa\x9e\xb8\x83\xb0\x8d\x61\xe7\x35\x22\xf6\x50" + "\x63\xcc\x36\x03\xbd\xe1\x6b\xeb\x63\x73\xce\xe8\x31\xcc\x6e\x8e" + "\x9c\x56\x90\xac\x1e\x5a\x26\x57\x32\xba\x78\xae\xa2\x98\x4a\x51" + "\xb0\x39\x02\x5f\xb2\x8b\x5f\xc8\xe2\x51\x87\x02\xe9\x46\xa7\x82" + "\xf3\xce\x19\x7f\x19\xc9\xee\x2d\x1e\xad\x18\xde\x8b\x6c\x1f\x8f" + "\x27\xd0\x54\x3a\xa8\xbf\x35\xe6\xf0\x8a\xc3\xc5\x5b\x77\xf2\x64" + "\x39\xfc\xf5\xed\xcd\x6a\x53\x2e\xcd\xc2\xea\x04\xa3\xc4\xe1\x9c" + "\xf7\x14\xa6\x4c\xf1\x0b\xeb\xdd\x5f\x9e\x12\xaa\x70\xdc\xa0\x5e" + "\xb8\x06\xd0\x95\x60\x68\x7d\x66\xf9\x86\xea\x3d\x87\x5f\xc5\x2f" + "\xaf\x05\x78\x7a\x52\x2e\x37\x10\x8d\x7a\x13\xcb\x88\xec\xc3\xca" + "\x9e\x17\x87\x7a\x88\xb1\x9f\xe1\x9a\x6e\xfc\xec\x4a\xb0\x96\x73" + "\x3c\x51\x8d\x1f\x7c\x15\x14\x0f\x22\x7d\x11\x74\x9a\xf7\x51\x56" + "\xb4\x82\x8b\x29\xe0\x01\xe7\x37\xd7\x72\x31\x45\x64\xb8\x08\x6c" + "\x04\x22\x0a\x48\x70\xfe\x39\x5b\x4c\x2c\xf1\x3d\x68\xc3\xec\x34" + "\x54\xca\xa7\x95\x6c\x95\x84\x4d\x58\x43\xd2\x2c\xe7\x7a\x68\x27" + "\x08\x11\xdd\xd8\xd8\xb6\x52\x37\x0a\x71\x6d\x01\xd8\xbd\x42\x06" + "\xe1\x3e\x50\x7b\x50\x04\x95\x71\xc5\xdc\xa0\x0a\x08\x47\x93\xf1" + "\x78\x2b\xf7\x7e\x61\x94\x2f\xd7\x32\xfe\xdf\x07\x2b\x32\x4a\xfd" + "\xb6\x68\xb3\x1d\xcf\x1f\x16\x9d\x89\x87\x45\x03\xaf\x71\x6f\xd9" + "\x38\x67\xb6\x8f\xfd\xf5\xcb\x87\x64\x6c\x3e\xc6\x9d\xca\x20\x2b" + "\x93\xde\xec\x25\x4d\xd9\x5f\x49\x2e\xff\x4e\x33\xf6\xb7\x1d\x26" + "\xc5\x25\x0b\xbc\x96\x88\x19\x1f\x49\xee\x2d\x29\x76\x3e\x84\xf5" + "\x26\x23\x0e\x48\xaf\x4c\x2b\x0e\x2c\xcc\x7b\x9e\xfb\xb9\xcf\xdd" + "\x9f\x2a\x51\x17\xb0\xa5\xb1\xbd\x68\x13\xf9\x24\x5e\xae\x18\xce" + "\xcb\xd3\x97\xb2\xdc\x39\x37\x65\x90\x15\xc4\x5b\x32\xc8\x72\xc6" + "\x4f\x73\x58\xb6\x5f\x47\xbc\x01\x05\xeb\x1a\xd2\x4f\xe3\x4f\xc3" + "\x55\xf5\xb6\x59\xba\x12\x8e\x5b\xd7\xd7\xad\x93\xb6\x5a\xbb\xbe" + "\x9e\x2b\xe7\xd7\x73\x75\x25\x24\xb9\xd9\xbd\x94\x87\xcd\xa9\xb5" + "\x30\x35\xab\xd2\xf4\xa0\x17\xad\x4c\x19\x1a\x96\xb4\x6f\xbe\x74" + "\x15\xa4\x47\x0f\x2d\xbb\xa9\x1b\x0b\x4c\xed\x9c\x39\x4c\xb1\x6b" + "\x4b\xcc\x30\xc6\xc4\xb6\x98\xfd\x2e\x0a\x96\x07\x98\xa3\x35\xdf" + "\xa8\x3d\x27\xa7\x01\xaf\xfb\xd2\xd0\xbb\x45\x3b\xfe\x7a\xfb\xb3" + "\x70\x16\x10\xb7\x43\x6b\x3b\xff\xe8\x3d\x5a\xa7\xdf\x77\xed\xd4" + "\x2e\x37\xfc\x09\x6d\xb5\xed\xf8\xb6\xdd\x75\xd9\xb0\x55\x52\x75" + "\xcf\x79\xed\x44\xd7\x5d\x68\xc7\x24\xa3\x8f\xcb\xc6\xab\xde\xda" + "\xb2\x1d\x4f\xac\x1b\x2d\x6a\x52\xf8\x54\xa0\x8c\x4f\xe9\x7c\x0b" + "\x0e\x84\xa8\x74\xeb\x07\x15\xd8\x2b\x06\xf8\x57\xa3\x3b\xaa\x8f" + "\xbe\xfe\xe8\x66\x4c\x63\x0a\x70\x8a\x2c\xa2\x6e\xc2\x59\xb2\x6d" + "\x49\x9a\xc6\x49\x7f\x70\xa5\x0c\xb1\x35\xb7\xb0\x0d\xb2\x35\xb1" + "\xf0\x8d\x77\x6b\x7e\x61\x3c\xbd\xe9\x15\x29\xf1\xd6\x77\xbb\x97" + "\x8d\x3c\x5e\x9b\x0c\xd0\xe1\xf3\xcf\x28\x82\x06\x95\xa3\x21\xe9" + "\xb7\xda\x45\x87\x2a\x72\xee\xa5\x03\x02\x85\xa1\xba\xac\xa3\x45" + "\x2a\x3b\x9a\xd3\x90\x7a\x36\xd1\x69\x65\xd6\x93\x8e\xbe\x59\x95" + "\x98\x22\x5e\x9d\x31\x69\xd4\x4a\x4b\xbc\x9a\x87\x9e\xd0\x73\xc7" + "\x67\xa1\xbd\xbd\x7b\x52\xda\x3e\xe8\x26\x11\x56\x53\xae\x05\xc1" + "\x94\xfc\xb8\x38\xb0\x61\x77\xe5\x71\x6e\xcd\x60\x35\x32\x49\x7d" + "\x1e\xf4\x66\xf9\xe7\x97\x7e\x0d\x76\x32\x1f\xc0\x97\xc4\x75\x0f" + "\x68\x1e\x50\xeb\xe5\xb3\xe9\xeb\xb9\xd1\x79\x79\x7e\xe5\xde\xe7" + "\xa8\x96\xbe\x62\x5e\xa0\x5e\xfb\x32\xe7\x00\x82\x40\x3c\x1a\xfb" + "\x6e\xe5\xee\x41\x8f\x65\x18\x6b\x66\x1a\xfc\x19\x48\x83\xa9\x03" + "\x01\x87\xb2\x13\xbb\x33\xa6\xda\x5c\x50\x1b\x72\x21\x11\x19\xfc" + "\x4d\xd1\x0a\xab\x41\x67\x05\x18\x79\x72\xd5\x76\x15\xfa\xbb\xff" + "\xb8\xd9\xbe\xee\x0f\xa7\x62\x77\x7a\x06\xe6\x56\xa8\x94\x2e\x49" + "\x0f\x5f\xbc\x6b\x60\x93\xef\xf9\x15\xca\xdd\xe7\xe2\x68\x7a\xa6" + "\x3a\xcc\xb2\xd8\x4e\x81\x76\x5d\xf6\x1d\xfe\x19\xb4\x0c\x00\xd8" + "\xe0\xab\xe0\x78\x53\x89\xd0\x0d\x92\x79\x90\xe8\x36\xab\x90\x40" + "\x61\x8c\xe0\x53\xf3\x6a\x24\x67\x08\xd1\xa2\xd0\x0f\xcf\xa6\xd9" + "\xf2\xb1\x0e\x7e\x64\x43\xa8\x58\xb6\x11\x1b\xcc\xcb\x11\x19\xc7" + "\xf4\x5a\x88\xad\xde\x1c\x04\xa7\x10\x86\xb5\x54\xde\x5d\x83\x73" + "\x36\x7d\x70\x0c\xce\xed\xf2\x96\xc1\xb9\x5d\xb6\x1c\x9c\x38\x43" + "\xeb\xc1\x69\x66\xff\x03\x07\x27\x6e\x4a\xec\xe0\x04\xb9\x6e\x1c" + "\x9c\xa0\xa4\x98\xc1\xc9\xc9\xff\x4e\x07\x27\x62\xbd\xe5\xe0\x24" + "\xf3\xde\x79\x70\x3e\x3e\xa6\x8e\xc1\x59\xad\x6f\x19\x9c\xd5\xba" + "\xe5\xe0\xc4\x19\x5a\x0f\x4e\x33\xfb\x1f\x38\x38\x71\x53\x62\x07" + "\x27\xc8\x75\xe3\xe0\x04\x25\xc5\x0c\x4e\x4e\xfe\x77\x3a\x38\x11" + "\xeb\x2d\x07\x27\x99\xf7\xce\x83\x33\x49\xc7\x63\xc7\xe8\x3c\x57" + "\xb7\x8c\xce\x73\xd5\x72\x74\xe2\x0c\xad\x47\xa7\x99\xfd\x0f\x1c" + "\x9d\xb8\x29\xb1\xa3\x13\xe4\xba\x71\x74\x82\x92\x62\x46\x27\x27" + "\xff\x3b\x1d\x9d\x88\xf5\x96\xa3\x93\xcc\x7b\xef\xd1\x39\x71\x8f" + "\xce\x1b\x87\x67\xfb\xf1\x79\xeb\x00\xfd\x9e\x46\x68\xc7\x21\x7a" + "\xc7\x31\xda\x76\x90\xfe\x3d\x8f\xd2\x9b\x86\xe9\x57\x19\xa7\xb8" + "\x92\x1b\x06\x62\xbb\x41\x78\xcb\x00\xfc\x5e\x06\x5f\x87\x81\x77" + "\xa7\x41\xd7\x66\xc0\xfd\xbd\x0e\xb6\xce\x03\xed\xfe\x83\x4c\x97" + "\xcf\xef\x21\x6a\x0c\xe6\xaf\xfc\xf4\x02\xef\x6e\xa7\x97\x72\x5b" + "\xfe\xc2\x93\x7e\xbb\x52\x87\x6f\xcc\x30\xf0\x79\xf0\xb4\x8d\x99" + "\x63\x96\x47\x9c\xaf\x31\x33\xa5\xb9\xef\x44\x0d\x3a\xfd\x68\x1d" + "\x61\x21\x52\x89\x5b\x94\xe1\xb3\x0d\x56\x24\xfc\xfe\x77\x75\x42" + "\xc4\x68\xde\x98\xa9\xe8\x1b\x1f\x12\x79\x77\xf5\xa8\x9e\x13\x1e" + "\xf9\xdf\x82\x43\x82\x1b\x2d\x8a\xc3\x52\x0a\x85\xff\x24\x51\xfd" + "\x03\x47\xd0\x9b\xa3\x5c\x30\xe1\x6c\x25\x9c\x36\xa7\xaa\x04\xf9" + "\x00\xf2\x0e\xd2\x55\x77\x86\x05\xbe\xcd\xa9\xa4\xf8\x7b\x1a\x90" + "\xdc\x77\xb3\x40\xa2\x82\xd5\xdb\x42\x44\x54\xb7\xb2\x46\x1d\xff" + "\x51\x19\x9a\x7b\x9e\xe0\xf3\x66\xb7\xb3\x0f\x13\x89\x13\xde\x44" + "\x91\xbd\x61\xef\xa3\x9b\xb1\x3e\xac\x8e\xa9\x9f\x38\xd5\x60\x25" + "\xdb\x9a\xe1\xa9\xbc\x57\x1b\xcf\x59\xd4\xaf\x89\xe8\xb3\x51\xe3" + "\xcc\xac\xd2\x56\xc9\x0b\x3a\x36\x21\x09\x6d\xbd\xd1\x57\x42\xa4" + "\x94\xb6\xeb\x21\xb7\x81\xcc\x8b\xe8\x66\x5b\x8d\x16\x2f\xbc\xa8" + "\x13\x2d\xf5\xb1\xb9\x98\xa3\x51\xd6\xd9\x88\x66\xf5\x55\x5f\x35" + "\xac\x1b\x07\x78\xb2\x1f\xb9\x00\xcf\xad\x7c\x61\x9a\x91\x53\xc2" + "\xf9\xa1\x2c\x3e\x0d\xf9\xef\x9e\x63\xe2\x4a\x0a\x18\x3d\xaf\x36" + "\x2c\xb7\x3e\xf0\x7b\xb6\x10\x74\xab\xc7\x5b\x30\xba\xd5\xc9\x49" + "\xf0\xdc\xee\xd3\xee\xc0\xf1\x46\x57\x56\x66\xe0\xd7\x97\xc3\x15" + "\x9d\x36\xaa\x0f\x94\xc8\xe3\x25\x8a\x6a\x24\x4e\x95\x08\x3d\x5d" + "\x9b\x2b\x08\xf5\x59\x2a\x7c\x00\x5c\x7d\xb5\xb3\xc2\x98\xf2\xa0" + "\x98\x5a\x63\xa1\x6b\x30\xd4\xb0\x8b\xb8\x08\x43\x66\x75\xb4\xb2" + "\x2a\xcc\x46\xaa\x43\xdb\x46\x3b\xd5\xd7\x96\x15\x1a\xb9\xdb\x31" + "\xaa\x5b\xab\xfa\x32\x9f\xda\xfd\x0c\x9a\x3e\xb0\x98\xf9\x59\x92" + "\xae\xf6\x7b\xe6\x40\xa0\xea\x94\x66\xe5\x34\x0f\x1f\x29\xb7\x0e" + "\xab\x20\x2f\xd1\xef\x39\xbf\x9f\xad\x31\xd5\x18\x0c\xd5\x6c\xe9" + "\x16\x8c\xeb\x55\x98\x1c\x3b\x16\x77\x91\xc0\x83\xe8\x82\xb5\x5f" + "\xb1\xef\xda\x8c\xf2\x9f\xbc\x35\xf4\xad\xf3\x53\xae\x2a\xb1\xdf" + "\xaa\xd9\x29\xcf\x27\xd8\x59\x8c\x92\x14\x15\x5f\x53\xfd\xdc\xfc" + "\x88\x9e\x02\x23\x24\xf9\x0e\xf5\x7b\x75\xab\x03\x79\x09\x53\x27" + "\xc8\x47\xc4\xb1\x58\xbb\x80\x7e\xc8\xd6\x49\x17\x43\x5e\xc7\xeb" + "\x62\xdb\x10\xc3\x2e\x2b\x11\x3d\x40\x7a\x11\x24\x6c\x9a\xf6\x8e" + "\x86\xc5\xed\x12\xbe\xab\x44\xd1\x91\xd2\x1b\xc4\x29\xb9\x73\x98" + "\x33\x7d\x67\x0c\x9e\x39\xba\x45\xa2\x48\x7d\xf2\x12\x2e\xf2\x29" + "\xc4\x50\xc4\x32\x34\xbb\xa9\x75\x57\xce\xa1\x94\x3e\x72\x56\x91" + "\xd5\xe0\x7e\x3b\xb6\x1b\x6f\x1d\x93\xbc\xc6\x78\x7f\xc7\xf5\x1e" + "\x8b\x0a\xd7\x25\x2f\xeb\xdd\x20\xa9\x16\x5c\xab\x9a\xc1\x6c\xcc" + "\xf1\xf2\xb8\x08\x82\x03\x16\xf7\x86\xe6\xed\x99\x9c\x7f\x52\xe2" + "\xe9\x2a\xac\xac\x41\xd3\x22\xd6\xe1\xc1\x6f\x52\x84\xe8\xa2\x90" + "\x3b\xcf\xf5\x8f\x9b\x2f\x18\x8d\x51\x4d\xfe\xa3\xe7\x05\xfa\xa9" + "\x44\xb1\xbe\xf3\xb9\x59\x38\xe1\xee\xfb\xce\xcb\x35\xd4\x8e\xad" + "\x20\xb1\xef\x77\xd8\x7f\xe9\xc9\xe3\xe0\x56\x0b\xd4\xac\x82\x99" + "\x99\x1f\x9f\xdd\xbe\x11\x50\xff\x8c\x5a\x8d\x2f\x16\xc2\xa9\x28" + "\xcc\x23\x5f\x81\x6c\xec\x5b\xff\x4a\x5e\x8f\xf5\xcd\xd9\x62\x4a" + "\xee\xb9\x7a\x6b\x44\x06\xe5\xc3\x3d\xd7\x76\xdb\x54\x2d\x5b\x1f" + "\x5f\x3b\x9e\xf6\xb5\xe2\x1d\x38\xe1\xfe\x35\x74\x1d\xd9\xd1\x67" + "\xa3\x0a\x8e\x93\xaa\x23\x87\x2d\xd6\x5b\xea\xf6\x8b\xd5\x91\xc9" + "\x29\x57\xdc\x82\xf7\x51\x51\x95\x07\x15\x6c\x4f\xfc\xe8\x0e\xb7" + "\x25\x93\x9c\x0b\x7a\x9c\x74\xb1\x93\xf0\xa0\xb2\x92\xd5\x62\x5d" + "\x2f\xd2\x60\x4b\xfc\xc1\xad\x20\x11\xb5\x17\x63\xce\x42\xec\x82" + "\xfb\x8e\x1a\xa3\x36\x5d\x64\x0e\x78\x45\x43\xb3\x60\xef\x09\x58" + "\xae\xca\x10\x5a\xbf\x47\xa4\x58\xd3\x62\x83\x0e\x25\x5a\x13\x3c" + "\x20\x60\xdf\xec\x4e\xeb\xdd\x0e\x0e\x01\xa5\x42\x7a\x51\x87\xe8" + "\xfa\xaa\x5f\x89\x11\xc0\x23\x31\xe9\xa7\xae\xd5\x92\xbb\x91\x5d" + "\xe8\xc2\xb2\x29\xe5\xba\x64\x66\xe8\xb7\x9b\xa3\x0c\xf9\x82\x31" + "\xa6\xec\xc0\x5f\x2e\xb6\xa8\x7a\xf2\x55\xb9\x6a\x7f\x2c\x1d\x93" + "\x0a\xb1\xd8\x7c\xd6\x9b\x0b\x1a\x81\x49\x6b\xcd\xa9\xfb\x8f\xa2" + "\xf7\xea\xc2\x51\x4c\x78\xd4\x99\xeb\xe6\x2b\x12\xb1\x08\xab\xef" + "\xff\xe1\x2e\xb7\x76\x90\xcf\xd7\x62\x31\x57\x95\x7d\x7a\x3c\xd8" + "\x99\x64\xb2\x23\xa3\xf3\x1e\x91\xbb\x69\x9a\x37\x23\x0e\xba\x9b" + "\xbb\x26\xc2\x4b\x24\x7f\x30\x24\x4c\x0b\x0e\x41\xb6\x76\x3c\x52" + "\x0d\xac\xb9\x84\x21\xc0\x09\x1e\x25\x49\x34\x87\x8a\xbc\x1d\x7f" + "\x3a\x53\x4b\xee\x9c\x4d\xd3\xbc\x35\x71\xaf\xdd\x8c\xf1\xf4\x58" + "\xae\x04\x6d\x2b\x96\x64\x8e\x76\xfc\x38\x5a\xa4\x99\x41\xf1\x9d" + "\xdd\xfc\x28\x92\x58\x96\x34\x79\x2b\xae\xea\x4c\xed\x18\x73\x37" + "\xad\xb6\x51\x20\xa8\xb1\x9b\x35\xf5\xd8\x7c\x24\x67\x8a\xba\x15" + "\x63\x3a\x4f\x3b\xbe\x9c\xed\x6a\xac\x7b\x1d\xc5\xd7\xcd\x95\x20" + "\x88\x65\x4a\x12\xb7\xe2\x49\x65\x69\xc7\x92\xab\x51\x8d\xa2\x74" + "\xc0\x5a\x4a\x4d\x87\x4f\xf1\x4a\x62\xb4\x2d\x55\xc4\x73\xb4\x55" + "\x90\xd5\xa2\x77\xb8\x49\xae\x58\xd6\xbf\x87\xdf\x77\x07\xb4\x1e" + "\x48\x05\x52\x45\x47\x29\xb3\x33\x45\xa0\x6c\x76\xa6\xa8\xb9\x1b" + "\xc8\xc6\x2f\x44\xba\x27\xb6\x14\x11\x46\xbb\x00\x55\x21\x40\x9e" + "\x70\x9c\x43\x22\x9f\xfb\xf2\xae\x33\xec\x19\x95\x19\xe9\xe4\xc4" + "\x2f\xd0\xa9\xf0\x6b\x54\x36\x22\x24\x8f\x4f\xef\x38\x27\xe9\xde" + "\xed\x8c\xf1\x81\x20\xc9\x9c\x71\x7d\x8e\x3a\x10\x61\x93\x58\xef" + "\xdc\x38\x48\x9c\xef\xc8\xdc\x7e\x01\x9a\x98\x4c\x53\x1d\x1a\x8d" + "\xdb\xe1\xee\x6d\x3b\x2f\x0f\xe5\xf2\xda\x5c\xa3\x1e\x9e\x2e\xaf" + "\xea\x3d\xdf\x05\x9b\xe4\xf3\x38\x84\x87\x92\x6f\x94\x1d\x65\xb3" + "\x9c\xf9\x21\x06\x23\x3a\xf9\xd3\xbc\x5c\xed\x0f\x3c\x5a\xaf\x3c" + "\x57\xa6\x8a\x3a\x7e\x54\xa5\x0c\x7e\x18\xfd\xd0\xef\xfd\x30\xea" + "\xfd\x50\xd7\xb2\xd9\x2d\xd8\x60\x10\x81\x08\x1c\x35\x89\x91\x23" + "\xbb\x0c\xd8\x2b\x33\x67\xf9\xc4\x20\xea\xc3\xd0\x3e\xf5\xe2\xc1" + "\x5d\xba\xbe\x4b\x4d\xa4\xca\xbb\xae\x7a\x5e\x9f\x84\x1b\x80\x6e" + "\xcb\x07\x62\x70\x0e\x23\x4b\x13\x7b\xab\x44\x03\xd5\x1e\x6e\xb0" + "\xa4\xd8\xb8\x60\x9e\x11\x6b\x37\xe2\x4a\xc3\xd8\x44\xdc\x54\xd2" + "\x38\xf6\x7b\x41\x1a\x1b\x89\x30\x5d\xd0\x2d\x12\x77\xad\x63\x09" + "\xdf\x62\x6d\x0f\x10\x8e\xcb\x16\x18\x85\x11\xc3\xdd\x15\x03\x76" + "\xb6\x76\xd5\xa8\x0e\x4d\x23\xbb\xae\xec\x9e\xcd\x2d\xaa\x02\x10" + "\xec\xd4\xac\x9a\x8a\x79\x4a\x9a\xf1\xb6\x4f\x92\xbb\xad\xba\x2d" + "\x60\x8d\x69\x34\x2b\x71\x7f\xff\xee\x30\x24\xbc\xa1\x14\xfd\x8e" + "\xc0\x6e\xef\xcf\xd6\x90\xb2\x4f\x0e\x84\x33\x69\xae\x7d\xc1\x18" + "\xa9\xbe\x8c\xe0\x02\x59\x63\x30\x0f\x6a\x11\x08\x48\xed\x3a\x28" + "\xec\xa4\xfc\xd5\x37\x30\xc8\x8d\x6f\x1f\x78\x40\x3a\x40\x5f\x50" + "\xc9\xc8\xb6\x35\x4d\xf1\xef\x1e\xbb\x31\x91\x60\xcb\xdc\xfb\xcb" + "\x71\x6d\x73\x68\x3e\x3a\x6f\x44\xdf\x0b\xf6\x04\x08\x62\x38\xfb" + "\x6b\x9b\xfa\x0d\x66\x00\x00\xd8\xa6\x1f\x83\xa6\x84\x3b\xb2\x07" + "\x1d\x72\x32\x51\x47\x55\x88\xe9\xe5\x8c\xf8\x7b\xee\xe8\xce\xe6" + "\x7d\x3f\x7d\xdd\xd5\xbc\x16\xdd\xdd\x95\xfd\x1b\xf7\xf8\xa8\x26" + "\xfc\x01\x9d\xde\x17\xa6\xc0\xcd\x88\x0e\x57\x10\xd5\xeb\xb7\xcb" + "\xef\xba\xd7\xbb\x9a\xf7\x1d\xf5\x7a\x47\xf3\xda\xf4\x7a\x47\xf6" + "\x6f\xdd\xeb\x63\x9a\xf0\x9d\xf4\x7a\x7d\xff\xdf\xcd\x88\x8e\x03" + "\x10\xd5\xeb\xab\xf5\x77\xdd\xeb\x5d\xcd\xfb\x8e\x7a\xbd\xa3\x79" + "\x6d\x7a\xbd\x23\xfb\xb7\xee\xf5\x31\x4d\xf8\x4e\x7a\x7d\x7d\xb1" + "\xde\xcd\xc9\xb9\xc5\x44\x9e\x11\x7f\xd7\xdd\xfe\xfc\x5d\x4f\xe7" + "\x5d\xcd\x6b\xd3\xed\xcf\x7f\xf8\xa4\x3e\xaa\x09\xdf\x4b\xb7\x9f" + "\xf8\xbb\x7d\xbb\x7e\xff\xbd\x77\xfc\xef\xbd\xe7\xdf\xda\xf5\xbf" + "\x87\xbe\xff\xbd\x76\x7e\xd8\x86\x55\xf5\x76\x7c\x31\xcf\x46\xdb" + "\x14\xbf\x52\xb2\x53\x32\x80\xa7\xa9\xa3\xb6\x85\xdc\xa5\x06\xaf" + "\x9f\xd8\x1b\xdd\xe8\xb8\x8c\x07\x74\xf4\x9d\x99\xa1\xf0\x47\xea" + "\xe0\x4c\x18\x89\xf4\x9d\x9e\xf9\xfa\x18\x5d\xbb\xda\xdb\xbc\x8c" + "\x14\x87\xd8\xb5\xa8\xdf\x51\x71\x84\xd4\x7d\x95\x06\x14\xec\x7f" + "\x9d\x89\x3a\xbe\x64\xf6\x3a\xe3\x20\x93\xa7\xdf\xf9\x4f\x33\x51" + "\x3d\x8f\x3e\xd2\x14\xee\x7b\xfe\x73\x4d\x5f\xbf\xf7\xb5\xad\xff" + "\xfe\xfd\xaf\x55\x0b\x1c\x55\x47\x49\xdf\x5f\xf1\x4d\xbd\x90\x3e" + "\x60\x66\xf5\x43\x78\xd4\xcc\xd7\x0b\x3d\xe7\xcd\xc8\x3e\x48\x1c" + "\x3a\x8b\xe8\x81\x9e\x93\x67\xdf\xa0\xff\xb5\xaa\xfd\x2b\xf4\xbe" + "\xf8\xfa\x5d\x7d\x2f\x2c\x75\x5f\xa5\xb7\xf5\x3b\xe2\xe8\x9f\xd9" + "\xeb\x9a\x43\x80\x9e\x2e\x47\x9e\x04\xa4\xfa\x9b\xf3\x38\x60\xb8" + "\xb3\x91\x67\x02\xbf\x7e\x4f\x6b\x51\xf5\xfd\xbb\x59\x6c\xe5\x8e" + "\x5a\x43\x92\x26\xab\xbb\xa9\x77\x39\x0f\x62\x9a\x5d\x0b\x1d\xc9" + "\xf4\xf4\x2e\xdf\xb9\x4c\xaa\x83\x51\x87\x33\xc3\x7d\xcc\x77\x42" + "\xf3\xeb\x77\xb3\x76\xb5\xdf\xbf\xa7\xb5\xa8\xdf\x51\x71\x84\xd4" + "\x7d\x95\xde\xd4\xe5\xa8\x23\xb2\x66\xaf\x83\x87\x65\x3d\x9d\xce" + "\x73\x62\x96\xea\x73\xc4\xb1\xd9\x70\x97\xf3\x9c\x9d\xfd\xfa\x3d" + "\xae\x55\xe5\xf7\xef\x70\xf1\xd5\x3b\xea\x0d\x4b\xdc\x53\xe5\x4d" + "\xbd\x8d\x38\xb8\x6c\x76\x36\x70\x84\xd9\xd3\xd7\xe8\x73\xcc\x54" + "\x57\x73\x1f\x66\x0e\xf7\x34\xfa\x44\xf3\xd7\xef\x68\x6d\xea\xbe" + "\x7f\x3f\x8b\xae\xdd\x51\x6d\x50\xda\x74\x85\x37\x75\x32\xf7\x51" + "\x72\xdb\xa0\xe9\x43\xe5\x5e\x73\x46\x9c\x2c\xa7\x8d\x99\xe3\x78" + "\x79\x8c\x29\x23\xce\x98\x7f\x0b\x43\x16\x5d\xf5\xd7\x30\x63\x71" + "\x95\x3b\x8d\x98\x5f\xd2\x64\x75\x37\x1a\x30\xc7\xc1\xfe\xe6\x7e" + "\x9b\x3c\x1f\xad\x7f\x6d\x0e\x2f\x8f\xd5\xbb\x54\x4d\xd2\x57\x88" + "\x2d\x96\x4c\xd9\x7f\x1f\x7a\xfc\xf9\xcd\x5f\x3e\xfc\x98\x66\x8c" + "\x0a\x46\x1a\xe3\x31\xc0\x46\xe9\x63\xc6\xff\x2f\x78\x34\x17\x91" + "\xa7\x97\x8c\x26\xc9\xa4\x37\xfe\xcb\x43\x6f\x3a\xca\x1f\x58\x11" + "\x13\x83\x28\xa9\x89\xc4\x9f\x7f\x79\x14\x3f\x3f\x54\x53\x4e\xd3" + "\x9b\xe2\xe2\x86\x90\xf2\xa1\x27\x68\xab\xa1\x87\x54\xfe\xf9\x17" + "\x59\xf7\x43\x4f\x10\x26\xa3\xd9\x78\x06\x9a\x38\x96\x44\xbf\x13" + "\x2f\x01\x36\x42\xdd\xbf\x16\x0b\x1e\x79\xb1\x37\xca\xcd\x24\xd9" + "\xf3\x1b\x82\x99\x45\x21\xdf\xd1\xd1\x91\xbc\xd0\xc3\xf5\x22\x5c" + "\x56\x92\x0d\x7a\x49\x32\xe6\x91\xd9\x32\x18\x0d\xd0\x2c\xa1\xae" + "\x23\x31\xd3\xeb\x83\x97\x4d\x33\x52\xab\x19\xf2\x29\x35\xa6\x44" + "\x1e\x9c\xa3\xb7\xd9\xf1\xe7\x78\x3e\x26\xfd\xde\xfa\x50\x5c\x8e" + "\x8b\xa2\x2a\x3f\xf2\x83\xdc\xfd\xde\x5c\x60\x0c\x3b\xb6\x18\xfd" + "\x98\xf2\x0f\x32\xaa\xd3\xe6\x77\x7e\x5a\x58\x9d\x22\x17\xc1\xa5" + "\xd4\xe1\x6f\xf0\xca\x4f\xf3\x9e\xd6\x13\xab\xdf\x7e\x48\xcb\xe8" + "\xbf\xf0\x64\xe7\x13\x7a\x92\xb7\xe7\xc8\xc2\x9f\x9c\x97\x2f\xf9" + "\xfc\x99\x55\x24\x22\x06\xf5\xc0\xbb\x3f\x2a\xbe\xa5\x71\x0a\x7f" + "\x94\xc9\xa0\x5e\x5a\x2e\x8e\x72\x55\x12\x1c\x6d\xea\xc9\xa5\x50" + "\xeb\xdd\xef\x2c\xd1\x35\xa1\x9e\x82\xea\x93\x67\xd9\x9d\x4f\x34" + "\x39\xca\x81\xfd\xa9\xef\xab\x10\x75\x1b\x54\x61\x73\x5e\xb8\xfe" + "\x56\x9f\x21\xbe\xba\xce\xff\xbe\x1d\xb9\x21\x2d\xab\x72\x71\x0a" + "\xf2\x69\xf6\x46\x58\xb3\xec\x85\x03\x77\x0c\xc5\xc6\xdc\xa9\x5e" + "\xea\x28\x1c\xf6\x62\x56\xf0\x76\xbf\x2c\x2a\x69\x1d\xc5\x8f\xc3" + "\xdf\xe5\xe9\xe2\x5e\x32\xce\xd5\x08\x90\xdf\xf5\x11\x42\x0e\x34" + "\xc2\xef\x8e\xd8\x70\x32\xa1\x0e\x0b\x97\x1b\x09\x28\x16\x9d\xfc" + "\xe4\xb9\xc5\xa2\x08\x3a\x85\x0d\x44\x79\x23\xee\x4e\x21\x7a\xff" + "\xb5\xa9\x61\x65\x36\xb0\x89\x35\x08\x72\xe8\x8f\xc3\xe3\x16\x91" + "\xb7\x8d\x41\xc8\xab\x0b\x87\x21\x94\x65\xeb\x28\x35\xae\x1b\x5c" + "\x4e\x8a\x4b\x88\x42\xa6\x53\x44\xf1\x17\xda\x5c\xd9\xa2\xd5\x22" + "\x03\x79\xc1\x57\xf1\x98\x3b\x42\x5d\x54\x46\x77\x90\xef\xb3\x5b" + "\xbd\x4e\x25\xf2\x9e\xe6\xfa\xdc\x92\x07\x9c\xcd\xcf\x43\x7d\x93" + "\x64\xb5\x39\x97\x4b\x75\xaf\x5e\xdd\x81\xd2\x87\xf9\xeb\xac\x70" + "\x10\x36\xaf\x4a\xca\xa7\x3c\x9b\xcb\x42\xda\x61\xf0\x9f\xeb\x38" + "\xbe\xe7\xa7\x97\xcd\x72\x59\xee\xcc\x77\xd5\x9a\xa7\xeb\xd4\x70" + "\x67\x06\xa6\xa8\xf6\x6b\xc7\x15\x97\x26\x9c\xb2\xba\x9d\x65\x36" + "\x4c\x85\x9e\x71\x5d\x71\x50\x85\x8f\x56\x4c\xbb\x3d\x5c\x11\x08" + "\x80\x5c\x07\x4d\xee\x8d\x32\xf5\xa4\x2e\x7f\x4f\xb7\x89\xa5\x2c" + "\x47\x71\x71\x2a\xff\xfb\xc7\x61\xce\x0f\x35\xc4\x3f\x0c\x18\x53" + "\xbf\x7a\x22\x50\x92\xf2\xf7\x32\x5d\xa4\x75\x50\x67\x4d\x28\x49" + "\x64\x30\x6a\x32\x83\x9a\x03\x8c\xc6\x69\x1f\x0b\x5a\xc5\xdc\xe6" + "\x36\xfd\xaa\x34\x27\x86\x3a\x57\x1f\x1b\xd4\x6e\x11\xff\xe4\x29" + "\x45\x37\x41\xcd\x26\xe0\x8b\x7b\xa8\x4b\xa8\x0e\x11\x2c\x47\xc4" + "\x12\x34\x5f\xe3\xc3\x99\xe4\xcc\x81\x39\x37\x74\xcf\xcf\xf1\x16" + "\x2f\x3f\x95\xd2\x85\x49\xcd\x4b\xa7\xf0\xa1\xf4\x3d\x3a\xe0\x72" + "\xac\x5e\x2b\xfa\x39\x7d\x39\x46\xbb\x26\x3b\x42\x68\xf3\xe8\xa9" + "\x1d\x22\xd4\xf6\x39\xd6\x9d\x2a\xdb\xa5\x91\x91\x44\x1c\x1e\xc9" + "\x1d\x25\xd4\xf4\x42\x7d\x7b\xd4\x73\x2e\x78\x00\x7b\xb5\x16\x52" + "\xbf\x41\x87\xaf\xd7\x42\x3a\x49\x5e\x06\x1d\x9b\x9f\xe1\x64\xbe" + "\x95\x71\x33\xea\xec\x37\x7a\xfb\xfc\x05\xd8\xb4\xcf\x2f\x1e\xad" + "\x80\xc6\xf5\x4d\xce\xc4\xd8\xbf\xea\xe6\x59\x8c\xcb\xf7\x71\xed" + "\x89\x97\xc1\x57\x5d\xac\x11\x82\xbd\xe9\x7f\xc7\x97\xc3\x66\xf7" + "\x89\x71\x78\xfb\xc3\xde\x2e\x77\x4b\x86\x68\x24\xfd\x27\xd1\xc5" + "\x1c\x0e\xba\x1f\x0c\xd6\x4a\x4e\x50\x22\xa2\xaf\xd1\x79\xb1\x4c" + "\x51\xe4\x19\x25\x12\x3c\xfb\x71\x4f\x54\xfa\x3f\x8d\xf2\x7e\x2f" + "\x82\xf2\x2c\x28\xb5\x13\xb3\x43\xed\x11\xc5\xab\xb2\xc3\xa4\xe7" + "\x78\x52\x5e\x2a\x34\xa8\xae\x60\xaa\x63\xf4\xda\xaf\x51\x9e\x35" + "\xf1\x69\xfa\x3d\xb7\xdb\xb6\xc1\x0c\x44\x85\x45\xf3\xf6\xba\x2c" + "\x15\x1a\xcb\xd3\xd9\xdb\x3f\x6a\x2f\x72\x94\xbb\xe5\xb3\x4f\xc7" + "\xba\x21\xb6\x93\x68\xe6\x73\x52\x9b\x21\x53\x5d\x4f\xf1\xdc\x11" + "\x39\xc9\x99\x1b\x31\x7a\x1c\x53\xc3\x7e\x54\x08\xe1\xf0\x08\xf2" + "\x9d\x94\x0c\x8f\x21\xd9\xb0\x5f\x7f\xba\xc2\xee\xed\x97\x9d\xef" + "\x36\x98\xb5\x04\xd4\x2b\xb7\x44\x45\xf4\x8e\x5f\xe6\x18\x53\x16" + "\x31\x31\x31\x8e\xf6\x81\xd5\x64\x1d\xc9\xeb\x50\xbf\xd7\x81\x22" + "\x64\xc2\x51\x73\xdc\x5e\xed\xc5\x68\xc6\x17\xa3\xde\xdb\x0f\x92" + "\xbc\x5a\x0f\xd4\x4f\xe7\xca\x51\xcc\x03\x59\x4c\x7d\x9c\xdc\x93" + "\x3b\x49\x26\x22\xbb\x56\xce\x5b\x55\xb1\x19\x16\x33\xf6\x57\xe8" + "\xdd\x1a\x49\x88\xb9\x3c\x9c\xad\x29\x71\x8f\xed\x12\xcc\x79\x1e" + "\xcc\x45\x6c\xd8\x78\x4a\x91\x76\x69\x40\xa6\xe3\xe0\x78\xe1\xf2" + "\x9c\xb3\xc6\x5a\x88\x35\xbf\xac\x9f\xe5\xa3\xc7\x07\x20\xc6\xa6" + "\x28\xa6\xd6\x21\x7f\x4f\xe7\x76\x51\xe9\x92\xee\x23\x32\xb3\x34" + "\x4a\x74\x26\x5d\xac\x08\xcd\x7c\x4e\x51\xba\x64\x39\x9b\xce\x48" + "\x59\x6e\x97\xf7\x92\xa5\x2a\xe9\x4e\xb2\x34\x4a\x23\x65\x69\xd0" + "\x45\xcb\xd2\xc8\x17\x2d\xcb\xc7\xc7\x84\x94\x65\xb5\xbe\x97\x2c" + "\x55\x49\x77\x92\xa5\x51\x1a\x29\x4b\x83\x2e\x5a\x96\x46\xbe\x68" + "\x59\x26\xc9\xe3\x23\x29\xcc\x73\x75\x2f\x61\xaa\x92\xee\x24\x4c" + "\xa3\x34\x52\x98\x06\x5d\xb4\x30\x8d\x7c\xf1\xc2\xcc\x7c\xc2\xbc" + "\xa3\x34\xef\x2c\xce\x68\x79\x76\x16\x68\x94\x44\x47\xc7\x57\x39" + "\x7b\xe2\x4f\x5e\x0d\xea\xdf\x64\xf1\xf5\x04\x77\xb3\x13\x33\x6a" + "\x19\xcc\xc5\x98\xa3\xe8\x2c\x6a\x96\x62\x4e\xcb\x75\xb2\x7e\x93" + "\x84\x03\x41\x1b\x36\x09\x53\x61\x79\x2c\x3a\x9c\x6e\xae\xf5\x73" + "\x26\xe5\x62\xb7\xd9\x4a\x0c\xc4\xca\x5c\x27\xb1\x2f\x65\xb9\xec" + "\xf7\x78\xb3\x8b\x43\x6f\xb3\x5b\x6d\x76\x6c\xf6\xdd\xf3\xe4\xd8" + "\x15\xdb\x92\x4d\xfd\x3e\x95\x97\xd5\x81\xfd\x78\xec\x19\xb2\x38" + "\xed\xc1\xf6\xd5\x61\x7f\x2a\x4e\xe5\xc7\x6c\x3a\x5e\x96\xeb\x3e" + "\x10\xa3\x22\xb6\x25\xf3\xd4\x4b\xeb\xe9\x21\x96\x89\x2b\xc5\x90" + "\x52\x6f\x38\x4a\x04\xc6\x85\x88\xf0\x86\xea\xc8\x26\x30\xc4\x21" + "\xf0\xc2\xe3\xb3\x87\xff\x27\x83\x69\x6b\xc3\xc6\x55\xb5\x5e\x11" + "\x2c\xde\x0e\x3c\xba\xae\x98\xfb\xd7\x6a\x13\x73\x7e\xf0\x4a\x9c" + "\x29\xa9\x7a\xae\x6a\x08\x2b\x21\x85\x65\xa7\x98\x72\x28\xb7\x2e" + "\x35\xf2\x0e\x7e\x1d\xff\x68\xed\x41\x8e\xfb\xef\xac\x57\xd5\x3b" + "\x1d\x89\xf1\x54\x9d\x31\x44\xbe\x8d\x66\x6f\x50\x1c\x6f\xa4\xbd" + "\xf8\x43\xba\x01\x7b\x3e\x30\x57\x37\x55\xc4\xef\x38\x63\x75\x0d" + "\x3c\x62\xb5\xd8\x4f\x46\xf9\x91\x29\x62\x51\xb1\xc1\xbc\xda\x9c" + "\x9f\x8a\x15\x5c\x7e\x4b\xb3\x24\x12\x9f\xd8\x62\xf1\xe5\x59\x2f" + "\xa9\x7f\xf8\xe1\x7d\x24\x70\xd3\xf9\xba\xbe\x3e\xa4\xfa\xe2\x6a" + "\xb5\xf2\xbd\x68\xf8\x2f\xff\xe5\x1f\xff\xe1\xa3\x75\x59\x44\x3c" + "\x2b\xd5\xac\xe4\xd6\x7a\x13\x6c\xd0\x4b\xfa\xfd\xa6\xb8\xa6\xd2" + "\xe6\xf6\x48\x97\x6a\x9b\xdb\x01\xed\x2b\x56\xd7\x05\x3a\x55\xab" + "\x0e\x87\xb7\xae\x54\x9c\x16\x6f\xc6\x7a\x7c\x8d\xe2\xc0\x70\xeb" + "\xea\xf4\x09\xe2\x2e\x35\xea\xf3\xa2\xad\x2b\x55\x07\x48\xbb\xc8" + "\x55\x9d\x1a\x6c\x5d\xa5\x3c\x46\xd8\x85\x4b\x79\x84\xac\x03\x8f" + "\x87\x4f\x1d\x39\x3c\x7c\x8a\xaf\x4e\xbe\xc3\x8a\x86\x65\xcc\xb0" + "\x13\xd9\xdc\x65\x9a\x87\x24\x86\x2d\x4b\x65\x7c\xf1\x07\x08\x77" + "\x65\x54\x9b\x9b\x90\x81\xe0\x9b\x3c\x5c\x01\xea\x4d\xc6\x83\x87" + "\x87\x41\x3a\x4e\x6f\xe6\x80\x2a\x29\xb2\xd5\xa6\x2d\x8a\xb3\x35" + "\xb7\x4a\xdb\x5b\x6e\xdb\x96\x23\x89\x37\x5f\x2d\x99\x3f\x4c\x07" + "\x8f\x93\x01\x9b\x92\xdf\xcc\x07\x55\x52\x6c\xcb\x91\x19\x8e\x31" + "\xb3\x37\xcb\x9b\x2e\xb5\x5d\x9b\xb1\xac\xd5\x37\x4b\xd2\xe9\x98" + "\x09\xe7\x61\x30\x9d\xdd\xcc\x01\x55\x52\x64\xab\x81\xef\x09\xfa" + "\x96\x5b\x65\x4c\x15\xd9\xa2\xa9\x48\xba\xe2\x83\x25\xda\x69\x32" + "\x48\x93\x6c\x90\x4e\xb2\x9b\x5b\x4e\x16\x15\xd9\x62\xec\x69\x63" + "\x3c\xe9\xad\x22\xf6\x94\xda\xae\xcd\x48\xd0\xfa\x9b\xdd\x8d\xf3" + "\x9c\x19\xd6\x7c\x90\xdf\xa1\x1f\x53\x45\x45\xb6\x1b\x4d\x30\x22" + "\x26\x10\xb7\x4a\x9a\x2e\xb4\x55\x83\x91\x9c\xd5\x27\xdb\x17\xce" + "\xa6\x83\x49\x3a\x60\x12\xba\xd9\x17\x12\x25\x45\xb6\x19\x4e\xa9" + "\xc2\x53\xa6\x5b\x45\x4c\x96\xd9\xa6\xb5\x48\xc0\xf2\x8b\xdd\x8d" + "\x27\x8f\x83\x34\x1f\xb3\xff\x93\xdb\xfb\x31\x59\x56\x74\xbf\xa8" + "\x67\x91\xc1\x59\xe2\xed\x9d\xd8\x5d\x64\x8b\xa6\x1a\x1d\x98\x7d" + "\xb0\xc5\x3b\x1d\x64\xe3\x41\x76\xbb\x3d\x26\x0a\x8a\x6c\xad\x38" + "\xf2\xa9\xcf\xed\x3b\x25\x8c\xaf\x32\xdc\x59\xd6\xe1\xc2\xbb\xf0" + "\x81\xc4\x8f\x53\x2c\x3d\x74\xe1\x73\x34\xcb\xbf\x0d\xa7\x46\x45" + "\xef\x23\x79\x2e\xfa\xd0\xf8\x1d\xff\xc9\xeb\x86\x7c\x78\x1e\xf4" + "\xe0\xe9\x74\x90\x72\x21\x53\xe6\xd5\xdb\x81\x4c\x54\xdb\x75\xae" + "\x24\x1d\x97\x58\xbc\x18\x2f\x5e\x56\x32\xf6\x7e\xc5\x19\x07\x7e" + "\x5a\x54\x9f\x72\x77\x1c\x69\x70\x0b\x15\xbf\xd2\xdd\x3c\x34\xe1" + "\xd7\x17\x93\xa2\x2c\x0f\xc8\x78\xb5\xe2\x11\xe9\xe5\x46\x27\x5f" + "\x8a\xae\xf8\x69\xa1\xcf\x9b\xe3\x66\xbe\xa9\xf8\x86\x96\x3e\xc1" + "\x57\x33\xf1\xeb\x68\xbe\xb9\xe2\x83\x19\xce\x8b\x04\xfc\xb2\x09" + "\xde\x23\x03\xa7\x20\x47\xa9\x3a\x7b\xb9\xd9\xf1\xe3\x97\xbd\x7a" + "\x7f\x30\x7e\xeb\x0b\x37\xc8\x3e\x61\x59\xa7\xcb\x63\xfb\x72\x30" + "\x70\xda\x81\x95\x24\x75\x26\x98\xae\xca\xa6\x38\xb1\x5f\xd9\xcc" + "\x50\xeb\x4c\x75\xe2\xa0\x57\x1f\x16\xcd\x96\x1f\x85\x0c\x59\x3f" + "\xe1\x5d\x85\x69\x5d\xe8\x8b\x3c\xe2\x2a\x9f\xa7\x14\x34\x3a\xc0" + "\xbf\x33\xbc\x3b\x3e\x41\x52\x1c\x5f\xcb\x05\x3f\xb1\xc1\xb2\xf5" + "\xd1\x96\x9c\xf8\xf4\xeb\x4f\xe4\x33\x5a\xea\x44\x9c\xfb\x08\xaf" + "\xca\x3e\x4c\xce\xc9\xd5\xaa\x87\x1f\xcc\x6b\x48\x26\xe7\xcc\x45" + "\x32\xcb\x9b\x42\xa6\xe7\x47\x17\x49\x3e\x65\x02\xaa\xa9\xd2\xc4" + "\x4d\x35\x49\x47\x0f\xf9\x2c\x99\xa4\xfc\x4f\x46\x2d\x4e\xf5\x89" + "\x37\x3b\x9d\x07\xfd\xf4\xeb\x60\xc6\x81\xbf\x64\x9c\x8d\x75\x5e" + "\xf5\xc4\xa6\x91\x5d\x67\x6c\xce\x3f\xb9\x4a\x38\x9e\x36\x8b\x4f" + "\x17\x5c\xbd\xfc\xa6\xea\x6f\xc8\xd3\x86\xdc\xac\x51\xe5\xa8\xab" + "\x42\x99\x3c\xe7\x62\x54\x71\xc7\x6d\xdb\x06\xb0\x1c\xad\xda\xe0" + "\x0b\x5a\xab\x8a\xdc\x2e\xdb\x36\x62\xbb\xbc\xbd\x11\xfa\x14\x8d" + "\x2a\xb2\x5a\xb7\x6d\x44\xb5\xbe\xbd\x11\xf5\x19\x1c\x55\xe6\xb9" + "\x6a\xdb\x8a\x73\x75\x87\x56\x4c\x8c\x56\x74\x68\x46\xeb\x76\x8c" + "\x5e\x8e\x27\xe6\x13\xae\xbe\x13\xd0\x1c\x1b\x71\xf8\x2d\xf9\xe9" + "\x58\x56\x2b\x56\xc7\xa1\x3c\x2d\x5e\xde\x47\x9f\x89\xd2\x9a\xb3" + "\x82\xee\xd3\xd5\xce\xb2\x36\xc7\xb7\xa2\xaa\x2e\x43\xe9\xa0\x06" + "\xe6\x07\xe9\x88\xf9\x21\x73\x15\x8f\x8f\xff\xda\x07\x3f\x33\xc1" + "\x9e\x5e\x36\xbb\xbe\xc6\xb1\x5f\xcf\x60\x2a\xa3\x8d\x23\xfa\xa8" + "\x0f\x11\xc2\xdd\x62\x85\x6e\x0f\x31\xa5\x71\xfe\x1d\xa4\x88\xe3" + "\xdb\x9c\xbd\xfa\xaa\x1c\x48\x94\x57\xa3\xc4\x81\x5d\xd6\x50\x7e" + "\xc8\x11\xee\x13\x2b\x20\x1c\xce\x83\x0c\x9e\x05\x77\x8b\xe2\x95" + "\xcb\xae\xdf\x5d\x22\xa8\x18\xdb\xa3\xc0\x06\x28\x75\x94\xf2\x89" + "\x7a\x85\x21\xd1\xef\x43\xc3\xc7\x5e\x0c\x38\xe9\x74\x78\xdb\x2d" + "\x98\x23\xbd\x1a\xb2\x93\x13\x96\xfa\x63\x59\x31\x01\xb2\xf9\xa3" + "\x43\x56\x4c\x1c\x04\xba\x6e\xf7\x1f\x13\x70\xc7\x17\x66\xc0\x15" + "\x82\x44\x4d\x8b\xc2\xc8\x1f\xf3\x6e\xfc\x55\x32\x5e\xd3\x9c\xcd" + "\x6c\x78\xf5\x57\x03\x98\xd4\xdf\xa1\x04\x65\x0e\x3e\x92\x0d\x62" + "\xf6\xc9\xa6\xdb\x32\x99\x54\x56\xb9\xf2\xab\x4d\xad\x06\xbb\xd9" + "\x0a\xf1\xd5\xd1\x06\x01\x55\x38\xb3\x80\x24\x22\x9f\x8b\x01\xf5" + "\x1d\x4d\xdc\xab\x7d\xc1\x5f\x47\x2a\x0e\xa7\xab\xf8\xf9\x89\xfb" + "\x5d\x9b\xa2\xdc\x2d\x55\xba\x70\xd4\x36\x01\x9f\xe4\x29\x0a\xfe" + "\x23\x24\xd8\xcf\xff\x8d\x4f\x28\x56\x9b\x93\x38\x50\x52\x6c\x76" + "\xd7\xe6\xd3\x93\xfa\x44\x66\xe0\xf7\x46\x11\x39\xfb\x40\x10\xf3" + "\x19\x2e\xa4\xe5\xbf\x13\xa4\x02\x16\x87\xb4\xe2\x83\x38\x4b\x42" + "\xe4\x10\x0c\x82\x0c\x16\x97\xb2\xdb\x0d\xc7\xcd\x75\x03\x57\x72" + "\x9a\x5f\x41\x07\x75\x51\xe4\x4d\x09\x23\x27\xc1\x0c\x14\x31\x73" + "\x52\xb0\x09\x62\x83\xf5\x23\x02\x7d\x34\x86\x1b\xf7\x66\x64\xf3" + "\xdf\x9c\x64\x72\xc8\x5f\x49\xf3\x09\x48\xd5\x6c\xbd\xa1\x55\x1f" + "\x9c\xc4\xf2\xc6\x51\x43\x2b\x7f\x77\x92\x9e\x71\x5b\x87\x67\xba" + "\xb5\x67\xb3\xbd\xf5\x0d\x38\x82\xdc\x6c\x33\xa3\xf7\xb5\xfa\x6c" + "\xb6\x9b\xd1\x7b\x5a\x7e\x31\x5a\x7e\xa1\x5b\x7e\xb1\x5a\x7e\xf1" + "\xb5\xfc\x62\xb7\xfc\xe2\x6d\xf9\xc5\x6a\xf9\xc5\xd1\x72\xfe\x22" + "\xbd\x30\x93\xd8\x68\xbb\x48\xa4\x21\x77\x5a\x77\x4c\x8e\xe9\x1c" + "\x04\xeb\xc3\xa6\xb9\x43\xc6\x7f\x71\x56\x87\xa8\xc0\x37\x4c\x7c" + "\x12\x37\xea\x34\x99\xf8\xcd\x41\x30\xe4\x67\x31\x10\x11\xff\xe2" + "\x22\x5c\x30\xef\x66\x50\xf2\x4f\x98\x94\x4f\x91\xd0\x14\xca\xc9" + "\x00\xa2\x02\xdf\x30\xb1\x30\x32\xf0\x8e\x27\xf2\xed\x62\x17\xe5" + "\xea\xbc\xca\xde\x1c\xb8\xb7\x73\xf0\x33\x2f\xfe\x4c\xfc\x32\xb2" + "\x23\x5f\xb5\x0e\xe5\xab\xd6\xae\x7c\x82\x0b\x90\xd3\x64\x04\x6c" + "\xc9\xa0\x80\xb7\xe6\x56\xcd\x53\x0f\x6f\xab\x20\x54\xdb\xb9\xc3" + "\xa3\x2f\x6c\xf5\x51\x25\x46\x7c\xd3\x50\x35\x06\x9c\xdb\xa6\x22" + "\x18\xc0\x32\x58\x0d\x44\x31\x5b\x54\xd2\xc4\x2b\x0c\xd5\xd0\x60" + "\x78\x2d\x8a\x47\x31\xeb\x42\x35\x20\x08\xab\x45\x25\x30\x44\x59" + "\xa8\x0e\x08\xde\xb4\xa8\x02\x04\xa6\x0a\xd5\x00\xb0\x8b\x56\x3c" + "\xe8\xa8\x44\x61\x0e\xf4\xce\x7d\xa8\x78\x3d\x53\x57\x37\x8b\xe1" + "\xb2\x90\xff\x0e\x07\x51\x4d\xaa\x37\xb2\xec\xad\x2d\x27\xb9\x5e" + "\x03\xf8\xd7\x11\x35\xb9\xd8\x9d\x31\x36\x6b\x9c\x84\x72\xe1\x6a" + "\x2e\x64\xd1\xd1\x9b\xfd\x2b\x9b\x1d\x89\xf5\xb0\xf9\x39\x97\xdf" + "\xf3\xf1\x8f\x66\x0a\x9f\xca\xf0\x24\xbe\xe7\x05\xd3\xd4\x85\xa9" + "\xf1\x55\xaf\x94\x1d\x89\x79\x9d\x9a\x3b\x33\xf3\xb2\x15\x81\x59" + "\xbc\x98\x11\xb3\xd2\xe5\x2e\x94\x9d\x92\xab\xa4\xdc\x95\x8d\x97" + "\x2b\x52\xcd\x52\xd9\x2c\x9a\x95\xa9\xb6\xba\xcc\x84\x5c\xa7\xe4" + "\x76\x26\x5e\xe2\xa1\xde\x1e\x44\x32\xd2\x1b\x9e\x7a\x29\xe2\xb8" + "\x38\xcf\xef\xcd\xff\x38\xe0\x7f\xf4\x7d\x59\x87\x67\x32\xb3\x3f" + "\xdf\xe5\x4a\xdd\xd6\xc7\x19\xd5\xb9\x61\xf3\xbc\x2d\x3e\x67\x6b" + "\x7e\x16\x2f\xb7\xf6\x89\x08\x0c\x76\xe9\xa2\x47\xd8\x0b\xf3\xe6" + "\xfa\xdf\xd5\x75\x13\xf0\xbe\x4d\x90\x1d\x1d\xd4\xe3\x6a\x0a\x5f" + "\x51\xc1\x03\xc4\x5f\xab\x31\xb2\xcf\xa1\x9a\x5c\xcd\x51\xeb\x4c" + "\xe2\x9e\xf1\x7d\x9b\x04\xc6\x2e\xac\xcd\xd5\x2c\xb9\x32\x05\x0f" + "\x03\x7c\xad\x36\xe9\x01\x0f\xab\x72\x35\x08\x4d\x58\xd4\x37\x10" + "\x46\x0a\x85\x0d\xf1\xcc\x5e\xcc\x76\xd5\x3e\xc0\xd5\x34\x3c\x7d" + "\x69\x55\x29\x79\xbc\x36\xa2\x5a\x38\x99\x69\x57\xa9\xfb\x70\x6d" + "\xb8\xca\x66\x6a\xd3\xaa\x3e\xd7\xd1\xda\x70\x65\x68\xa2\xd3\xaa" + "\x3e\xe2\x60\x6d\xb8\x4a\x38\xed\x69\x55\xa3\xfb\x58\x6d\xb8\x42" + "\x30\x09\x6a\x55\x9f\xf3\x50\x6d\x0c\x7f\x7a\x4a\xd4\x92\x3b\xfb" + "\x48\x6d\xb8\xb2\x79\xc5\xf7\xae\xdb\xd7\x26\xf2\x75\xe8\x2e\x7c" + "\x7f\xb3\x4b\x67\x11\xfb\xa2\xad\xab\xd3\xd6\x42\xc6\x4c\xbc\xba" + "\x5f\xe0\x75\x3f\x4d\xe1\x33\x21\xfe\xf2\xa8\xa7\x06\x68\xeb\x10" + "\x28\xcf\x19\x3c\x9e\x18\xf8\xfe\xa2\x1c\x01\xc2\xe9\x31\xed\x2f" + "\xca\x1d\x01\x9a\x1c\xae\xfe\xc2\x9c\xd1\x7d\xa9\x91\xe8\x2f\xca" + "\x15\xc0\x95\x18\x64\xa1\x36\x59\xa1\x3a\x1d\xe5\x24\xf8\xd5\x1b" + "\x04\x98\xd4\x44\x29\x26\x4a\x9d\x44\x19\x26\xca\x9c\x44\x13\x4c" + "\x34\x71\x12\xe5\x98\x28\x77\x12\x35\xbb\x9c\xee\xe1\x38\x4a\x2c" + "\xd2\x34\x27\x48\x39\x46\x60\xd0\xe6\x54\xb1\x36\xe9\x8c\x2a\x76" + "\x96\x3b\x5a\x4b\x94\xcb\x5a\xfb\x85\x37\x50\x49\x38\x47\xd3\xfb" + "\x2f\xbc\x39\x4a\x18\x63\x23\x65\xa6\xf3\xcc\xcc\x3c\xbc\xae\xe6" + "\x64\x01\x4e\x13\x7b\x92\x4d\x58\x2f\x98\xb8\x95\x39\x9b\xbb\xa3" + "\x66\xee\xcf\x46\xd1\x9f\xd1\xae\x19\x47\x69\x14\x45\x83\x93\x5a" + "\x54\x2f\x9c\x57\x05\xe6\x18\xcc\xbe\x70\x66\x55\x92\xc1\xed\x0b" + "\xe7\x56\x25\xcd\xcc\x5c\xbc\x46\x70\x7a\x02\x27\x0a\x7e\x55\xaa" + "\xc5\xf0\x4b\xcd\x30\x91\xff\xb3\x59\xfa\xe7\x17\x8b\xe5\x97\x9a" + "\x65\x8a\x4c\xa0\xa8\x02\x9d\x40\xe8\xaa\x45\xc2\x37\x26\x6d\x34" + "\xd7\x22\x93\x28\xec\xd5\x89\xcd\xba\xca\x1c\x1e\xca\xcf\xe5\x81" + "\x07\x81\xb4\xca\xd6\x49\x44\x1d\x54\x4e\x9c\x6a\x65\x16\x37\xed" + "\xc6\xd7\xfa\x67\x3c\x93\x6e\x48\x12\x40\x92\x58\x24\xf2\x38\x93" + "\x2e\x47\x1f\x6e\xa2\xc8\x12\x44\x66\x97\xc6\x11\xc9\x2b\x8e\x58" + "\x63\xd1\x48\xdc\x12\x50\x99\xa0\x2f\x28\x0b\x8b\xa6\x2e\xd3\x25" + "\x13\x23\x0a\x8e\x5a\xd4\x38\x63\xe3\x88\x24\x5f\x5e\xbe\x6c\xa4" + "\xa2\xea\xf8\xf2\xc9\x53\x00\x56\x56\xf9\xd9\x97\x51\x05\xaa\xba" + "\x7a\xc3\x58\xf9\x0a\x28\x04\x52\x4b\xe4\x97\x89\x5e\x86\x3f\x97" + "\xbb\xea\x42\x64\x97\x89\x36\x04\x2a\x4e\x3e\x28\x39\xc3\xb3\x10" + "\x6e\x19\xc3\x3c\x5c\xbe\x56\x0e\x43\xb6\x90\x5e\xc9\xd5\x3e\x70" + "\x41\x65\xa8\xb1\x68\x98\x85\x06\xa2\x35\x27\x02\x25\x47\x79\xd4" + "\x37\x3b\x0b\xee\x66\xe8\x9b\x57\x00\xb0\x8b\x39\x72\x39\x85\x60" + "\x74\x2f\x9c\x8d\x12\x84\xd9\xb5\x70\x2e\xb2\x63\xe1\xcc\xaa\x5b" + "\xb9\xf2\xda\x9d\xca\x14\x0c\x94\x66\x9d\x97\x92\x27\x3f\xa7\x20" + "\xdd\x08\x38\xb7\x60\xda\x6f\x40\x0a\xe5\x2e\x68\x7d\x42\x17\x39" + "\x1a\x89\x37\xf4\x4e\x71\x0b\x6a\x24\x6b\x91\x81\x12\xb4\x20\x37" + "\x3a\x9c\xc8\x40\xf7\x37\xc5\x01\x14\x10\x3c\xa7\x81\xd0\x45\x31" + "\x8f\x11\xef\x6a\x5e\xe5\x96\xdb\x30\xb1\xd3\xc7\x57\xc7\x76\x9c" + "\x9e\x81\xca\x24\x47\xae\x54\x25\xa5\x76\x52\xa6\x92\x32\x3b\x69" + "\xa2\x92\x26\x76\x52\xae\x92\x72\x3b\x89\x3f\xd3\xa8\x52\xa7\xc8" + "\xb9\x0f\xc7\x3a\xa0\xd6\x18\x7f\x4f\xf4\x77\x19\x74\x1c\x27\xa6" + "\x75\xa2\x9d\x96\xe9\xb4\xc4\x4a\x9a\xd4\x49\x8e\x7c\xb9\x4e\xcc" + "\xac\x24\xd1\x31\x55\xaa\x35\xbf\x39\xd7\x2c\xd8\x5b\x7f\x28\xb2" + "\xd6\xd8\xc8\x96\xe0\x6c\x26\x9f\x28\xaf\x43\x08\xe7\x5a\x0a\xba" + "\x00\x5f\x7e\x47\xf6\x0c\x67\x4f\xe8\xdc\x89\x9d\x79\x62\x64\xf6" + "\x55\x9e\xb8\x6a\xcf\x71\x01\x19\x9d\x3d\xb3\x33\x03\x85\x80\x38" + "\x66\x44\x7e\x4b\x63\x97\x46\x63\xc6\xce\xf1\xb3\x11\x21\xd0\xc8" + "\x96\xc0\x6c\x94\xbe\x54\x5e\x87\xc6\x2e\x8d\xc6\x44\x01\xfe\xfc" + "\x8e\xec\x19\xcc\x9e\xf8\x72\x27\x76\xe6\x09\xca\xec\xaf\x3c\x71" + "\xd5\x9e\xc3\x02\x32\x5f\xf6\xcc\xce\x0c\x35\xc6\xf3\xbb\xf5\xa5" + "\xf2\x5b\x1a\x3b\x91\x1a\x13\x89\x5e\xbd\x08\x0a\x9f\xe0\x05\x81" + "\x47\xb4\x22\xdd\x2b\x3d\x41\xe1\x11\x8f\x48\xf7\x4b\x80\x91\x94" + "\x1e\x43\x22\x92\x03\x06\x43\xd0\xf8\x6d\x82\x20\xf1\x8e\x7b\x41" + "\x11\x18\xdc\x82\xc6\x3b\x7e\x05\x45\x68\x90\x32\xa2\x79\xc3\xb2" + "\x73\xc8\xcd\x1b\x9e\xe9\x61\x35\x6f\x98\x26\xc7\xce\xbc\xe1\x9a" + "\x1a\x21\xf3\x86\x6d\x7a\x14\xcc\x1b\xbe\xa9\xbe\x3e\x47\x8c\x53" + "\x3d\xfa\xd8\x70\xee\x70\x0e\xc7\x86\x6f\xca\xfc\x1f\x1b\xae\x09" + "\x0b\x7f\x6c\x78\x76\x5b\xf1\x63\xc3\x31\x65\xa7\x8f\x0d\xbf\x6e" + "\x5b\x7c\x44\xdc\x3a\xed\x2d\x07\xea\x1c\xc7\x88\x79\x42\x72\x05" + "\x4f\x6f\x18\x45\xbf\x32\x06\xeb\x54\x3b\x31\xab\x13\x13\x2b\x6d" + "\xd2\xa4\x39\x72\xe6\x75\xaa\xc9\xcd\xeb\xb9\x69\xaa\xc3\x99\xeb" + "\x14\x5b\x61\xaf\xe7\x86\x15\xca\x9d\xa3\xdc\x0e\x76\xcf\x0d\xbf" + "\x84\x43\xc7\x25\x38\x0a\xc8\x8c\x02\x12\x4f\xfe\xc4\xce\x3e\x31" + "\xb3\x7b\x1b\x90\xb8\x5a\x90\x1b\x45\x64\x9e\x02\x2c\xe9\x5f\x80" + "\xf4\x4d\xc7\xdc\x44\xff\xb6\xcd\xc4\xeb\x05\x48\xdf\xe9\x9a\x8d" + "\xdc\x0e\xe9\x5f\x80\xf4\x5d\xce\xd9\x2c\xc1\x51\x40\x86\x0a\x48" + "\xbc\xf9\x13\x3b\xfb\x04\x67\x0f\x34\x20\x71\xb5\x20\x47\x45\x64" + "\xde\x02\x2c\xe9\x9f\x68\xe9\x8b\x54\xbf\x88\x05\x89\x57\x84\x82" + "\xc2\x27\x23\x41\xe0\x97\x82\x20\xf1\x71\xc9\x08\x4a\xdf\x18\x16" + "\xe9\xa1\xa1\x2a\x88\x02\x83\x51\xd0\xf8\xc7\x9b\x20\x09\x8d\x29" + "\x41\xe4\x1f\x35\x8c\x64\x0e\x78\x72\x8e\x80\x39\x60\x8a\xee\xe4" + "\x73\xc0\x15\xd9\x91\xe7\x80\x2d\xaa\xb7\xce\x01\x5f\x74\x87\x9c" + "\x03\xc6\xa8\x5e\x77\x04\x9c\x39\xec\xea\x11\xf0\x45\x19\xce\x23" + "\xe0\x8a\x30\x8d\x47\xc0\x93\xdb\xfa\x1d\x01\x47\x94\x79\x3b\x02" + "\x7e\x9c\x16\x6c\x5d\x70\x5f\xc7\x2f\xb7\x8e\xcd\xcf\x89\xf8\x6c" + "\xb7\x9e\xa7\xa5\x32\xcd\x95\x94\x89\xa4\xc4\x91\x32\x91\x29\xce" + "\x5c\xb9\x48\x33\x5b\xc7\x77\x83\x65\x0b\xd5\x4f\xb8\x95\x3a\x39" + "\xa9\x93\xed\xd6\x6a\x9a\xb4\xa1\xa1\x48\xb2\x9a\x24\x21\x28\x26" + "\x0d\x05\x59\x4a\x5e\xd3\x98\xdc\xa8\xed\x71\xc9\x50\xf3\x0b\xe6" + "\x09\x10\x25\x90\xc8\xe6\x0c\x50\xa6\x88\xd2\x43\x98\x41\xc2\x84" + "\xa6\x9b\x20\x3a\x5f\x89\x39\xa4\x34\x39\x5e\xed\x77\xa7\xe1\x76" + "\xbf\xdb\x8b\x1d\xb8\xab\xf8\x75\x55\x6c\x37\xd5\x05\xde\xfa\x86" + "\x34\xf8\xfe\x38\x1f\x4b\x22\xfd\xb8\xf9\xbd\x54\xef\x84\xa8\x4b" + "\xd8\xbd\x9f\x79\x68\xbc\xcf\x5f\xcc\x0c\xa9\x23\x43\xaa\x32\x8c" + "\x1e\x6d\xfa\xcc\x41\xaf\xa8\xa7\x36\xf5\xc4\xa6\x4e\x75\x73\x46" + "\x99\x4d\x9f\x03\xfa\xc4\x56\x21\xa3\x98\x42\x0a\x2b\xf9\x34\xdc" + "\x9c\x8a\x6a\xb3\x50\x44\xfc\xf4\xd2\x93\xfc\x62\xd2\xed\xf6\x87" + "\x6d\x51\x41\x3a\xf9\x05\xd1\x7d\x91\x68\x72\x79\x90\x74\x5f\x24" + "\x30\xa5\xbe\xb9\x28\x11\x5d\x36\x1e\x1b\x34\xb0\x52\x45\x34\xb1" + "\x88\xf8\x25\xc9\xb7\x2d\x22\xca\x2d\xa2\x63\xb9\xdd\xcc\xf7\xd5" + "\x12\x91\x4d\x2d\x32\x8b\x64\xe6\x24\x31\x18\x94\x9f\x50\x14\x86" + "\x17\xd6\xb3\xe0\x5b\x0a\x89\x91\x7a\xdc\xe2\x64\xe3\x56\x0e\xa3" + "\xe0\x9b\xa5\x06\x8d\x49\x52\xad\x11\x41\x6a\x45\x9c\x93\x7b\xc2" + "\xe2\x47\x79\x19\xcb\xbc\x66\x25\x1f\xaa\xdc\x2d\x21\x8d\x75\xd5" + "\x4a\xa4\xa9\xed\x5f\x40\x67\x6f\xff\x9a\x41\x0a\xc4\x89\x7c\xd7" + "\xeb\x7a\xbe\x4c\x75\x50\x02\x2b\x67\x9d\xe2\xcb\x2e\x04\x72\x7a" + "\x39\xec\xdf\xd6\x2f\x56\x09\x30\xd1\x2a\xa4\xda\x7f\x29\x0f\x0b" + "\x2e\x75\x75\x13\x51\x1f\x2e\xad\x13\xac\x2c\x6f\xaf\xaf\xee\x2c" + "\x75\x82\x2d\xc7\xe2\x55\x0c\xb0\xdf\xad\x3c\x4d\x8a\x95\x49\xe0" + "\x83\xf8\xaa\xa3\x39\xf6\x04\x9d\x42\x12\x7d\x17\x48\x75\x2c\xc2" + "\x43\x59\x7c\xba\x7e\xd9\x1f\x96\x12\x44\x14\xbf\x0f\xf9\xef\xf0" + "\x22\x2a\x4f\x16\x29\xce\x74\x55\x14\x3a\x9b\x28\xaf\x69\x36\x47" + "\x94\xe2\x8f\x24\xc2\x9c\x8e\xe0\x89\xc6\x71\xc4\x98\x7a\xa8\x53" + "\x88\xa1\x9a\xe0\x09\xc4\xa8\x7a\x9c\x07\x0f\x03\xb5\x34\x87\x0e" + "\x63\xaa\x70\x9c\x35\x0c\x94\x8f\xce\x19\xc6\x54\xe1\x3e\x5e\x18" + "\xa8\x05\x1e\x2d\x8c\xa9\xc4\x79\xa2\x30\x50\x07\x38\x4d\x18\x53" + "\x85\xeb\x10\x61\x90\x0b\x7d\x80\x30\x8e\x07\xeb\xdc\x60\xa0\x7c" + "\x70\x66\x30\xa6\x02\xd7\x51\xc1\x90\xb6\x9b\x63\x82\x51\xba\x76" + "\x9c\x0e\x0c\xf1\xc0\x63\x9c\xc7\xb3\xc0\xc3\x0c\xb9\x42\xd1\x04" + "\x6a\xd9\xbe\x9d\xca\xa5\xaf\x1a\xc7\xe0\xb6\x0f\x57\x37\x42\xaf" + "\x8f\x55\xb9\x4b\x13\x71\xb3\xc7\xe3\x87\xb1\x5b\xa0\xa1\xdc\x2b" + "\xf1\x8f\x23\xb7\x60\x3f\xca\x62\xb5\xe0\x87\x97\x79\xe2\x77\xab" + "\x63\x8b\xd4\xc4\xde\x12\xeb\x68\x57\x31\x25\x1a\x0f\x79\x5b\x25" + "\x1e\xca\x63\xe9\x1d\xaa\x9b\xdd\x4b\x79\xd8\xd8\xb3\x0b\xf3\xc4" + "\x1c\xce\x2d\xce\xcb\x21\x3a\xb7\x62\x46\x26\xd9\xcc\x5d\xdc\xcc" + "\xa4\xab\x4f\xc9\x19\xad\xc6\x1e\xce\x8c\x0c\x66\x39\x34\xfc\xec" + "\x37\xed\xc2\xc8\x82\x1a\x8a\x50\x51\xca\xe5\x90\x05\xa9\xf4\x40" + "\x31\xc2\xad\x50\x65\x88\xc4\x40\x01\xda\x69\x50\x65\xe8\xf4\x40" + "\x31\xca\x2d\x50\xa5\xa8\xe4\x40\x21\xd2\xf0\x53\x65\xc8\xd4\x60" + "\x3b\x98\x69\xa7\x5b\x61\xbd\xec\x6e\x05\x5e\x6b\x3a\xd4\xc0\xfc" + "\x00\xe3\x4f\x5d\xad\xb0\x5c\xf2\xfc\x28\xca\x92\xe6\x03\xf3\x43" + "\xb0\x0c\x3e\x50\x50\x9e\xdc\x6c\x48\x1e\x6e\x88\x59\xc6\xcc\x6c" + "\xc8\x2c\xdc\x90\x59\x6e\x49\xc4\x16\x49\xb0\x29\xb5\x48\x44\x78" + "\xb2\x61\x32\xc0\xbf\xa2\xec\x44\x44\x33\xf1\x04\x80\xad\x27\x59" + "\x42\x8a\x0b\x4c\x63\x0a\xf4\x95\x97\xe1\xf2\xb2\x98\xf2\xb2\x99" + "\xab\xc0\x86\x0e\x4d\xaf\xdd\xa1\xf1\xb8\x7d\x8d\x09\x10\xd7\x26" + "\x3e\xb7\x23\xaa\x60\x43\x63\xb8\xb6\xdb\x5a\xd5\x2e\x8e\xb5\xbf" + "\x5d\x70\xea\x7e\x63\xab\x5a\x44\x7b\xf6\xb6\xa9\x99\xe8\xdf\xd6" + "\xa0\xe8\xd0\xc8\xde\xd6\xa0\x65\xc1\x6d\x0d\x6a\x13\x48\xd8\xdb" + "\x26\xb8\x88\xb8\xad\x49\x2d\x22\xee\x7a\x5b\x04\x96\x1c\xb7\x35" + "\x28\x3e\x3e\x6d\x40\x42\x7a\x81\x72\xab\x7c\x22\x83\xb9\xfa\x5a" + "\x73\x1f\xb9\xf8\x42\x55\x46\x46\x39\xb5\xc8\x86\xda\xc5\x38\x52" + "\x08\x57\xe3\xe0\x60\x4c\x16\x9f\xd0\xe5\x27\x2d\x2a\xa8\x3d\xbd" + "\x5d\x4c\xed\xf3\x5d\x49\x2d\x6a\xa8\xe7\x01\x76\x39\x39\xcd\x44" + "\xde\x86\x09\xba\x86\x19\xcd\xc4\xac\x0d\x13\xb3\xdc\xa3\x09\x9f" + "\x2a\x5a\xb0\xc1\x2f\xed\x18\xf1\x40\x9a\x77\x35\xc4\x1d\x3b\x33" + "\xea\x57\xd4\xf5\xda\x35\x71\xcb\xce\x8a\x0a\xd2\xaa\xb2\xf0\xab" + "\x35\x76\x75\xe8\x3a\x6d\xab\xca\x02\x6f\xd5\x58\x55\x81\x6b\xb4" + "\x6d\xea\xf1\xbe\x50\x63\x55\x82\xaf\xcf\xb6\xa9\x27\xf4\x2e\x8d" + "\x55\x15\xba\x36\xdb\xa6\xa6\xc0\x6b\x34\x56\x45\xf0\xba\x6c\x9b" + "\x7a\xfc\x6f\xd0\x38\xf8\xa9\xaf\xc9\xb6\xe3\xc6\xf3\xf2\x8c\x55" + "\x09\xbc\x1e\xdb\xa6\x16\xe7\xf5\x58\x4f\x37\x00\xd7\x62\x5b\x75" + "\x02\xd7\xb5\x58\x0f\x37\xf5\xa6\x57\x3b\x66\xf8\xc6\xca\xbc\x45" + "\x57\x13\x20\xc0\x6b\xc1\xa3\x09\x46\x55\x27\xf6\xad\x1c\x6d\xbd" + "\x93\x75\x69\xd3\x74\xc7\xb6\x54\xab\x5a\xeb\x4d\xaa\x36\x95\x5a" + "\x77\x31\xd7\xc6\x3d\xcc\xb5\x7d\x07\x73\x6d\xde\xbf\x5c\xdb\x77" + "\x2f\xd7\xc6\xbd\xcb\xb5\x7d\xe7\x72\x6d\xde\xb7\x5c\x3b\xee\x5a" + "\xae\x09\x07\x53\x5f\xa0\x25\x5f\x10\xaf\xef\x56\xaf\x9d\x77\x68" + "\xd7\x8e\x3b\xd5\x64\x59\x48\xa1\x44\x69\xc6\x7d\x6a\xba\x2c\x7d" + "\xa7\x9a\x2a\x09\xdd\xa5\x26\x8b\x91\xf7\xa9\xa9\x32\xcc\x7b\xd4" + "\x64\x31\xf5\x5d\x6a\xaa\x24\xe3\x0e\x35\x59\x90\xbe\x47\x4d\x95" + "\x83\xef\x4f\x93\xc5\xa8\x3b\xd4\x74\x6b\xc0\xdd\x69\x4f\x5b\xf8" + "\xfd\x69\xaa\x8c\x35\x7f\xa6\x93\xdb\x07\x50\x00\xeb\x2a\xeb\xb2" + "\x29\x40\x93\xa0\xac\x6f\x47\x71\x11\xbf\xe2\x01\x24\x8b\xaa\xba" + "\x82\xdf\x9f\x0a\x1c\x54\x0e\x91\xf2\x23\xac\x88\xd6\x38\xc2\x0a" + "\x89\x05\xce\x0b\x89\x4d\x8c\xf7\xb5\x94\x34\xaf\xfb\x0d\xc7\x8c" + "\xc5\x05\xba\xd3\xd1\x45\x26\xea\x35\xc8\xcc\xaa\x05\xf3\xe5\xd2" + "\x78\xa8\xd5\x0c\x73\xa0\x1e\xab\x77\x64\x04\x81\x69\xd4\x1b\xaf" + "\x2e\xa2\x24\xaa\x7c\x33\x86\x9d\xce\x9d\x76\x6f\x5d\x16\x57\xb1" + "\x11\x04\x4f\xe7\x9e\xc4\xe5\x3e\x57\xce\xdc\x79\x64\x6e\x22\xfb" + "\x62\x73\x58\x34\xf1\x01\x9a\x87\x65\x5d\xb4\xaf\xfc\x62\x72\x54" + "\x6d\x9c\xd2\x59\x1d\x8e\xab\x24\x0e\xa0\x45\xcb\xfb\x19\x64\x94" + "\x4f\xa9\xb6\xd7\x94\x19\x71\x09\xb5\x60\x1c\x51\xd7\x98\x2a\x35" + "\x69\xc7\x17\xee\x85\x2d\x59\xa3\xba\x30\xcf\x9e\xfe\xe1\xf2\xcd" + "\x5a\x4a\x02\x0d\x8b\xb6\x92\x20\xc6\x14\xcf\x3e\x69\xd9\x0e\x34" + "\x42\xda\xb6\xe3\x4c\xf6\xf7\x66\x84\xc6\xb6\xe3\xb6\x86\x78\x5a" + "\x82\x07\xbb\xd9\x1c\x34\xea\xc9\x6a\x09\xdb\xc0\xe9\xa0\x7d\x88" + "\xe4\xd5\x30\x14\x6d\x99\x25\xed\x0c\x08\x9a\xd6\xbe\x3b\x3f\xe3" + "\xf0\x63\x5d\xc7\x02\x0a\xa8\xe6\x33\x24\xbe\xfa\xc6\x54\xc9\xc9" + "\xf5\x16\x9b\xd1\x9e\x45\xca\xe6\xf0\xb6\xa4\xdf\x85\xac\xb3\xeb" + "\x2d\xb6\xa3\x83\x44\x08\xdb\xc3\xdb\x32\xb9\xde\x62\x3f\x3a\xb4" + "\xe5\x4c\x8e\x03\x6c\x7f\xda\x9b\x90\x2e\x8d\xf1\xb4\xc6\xb6\x41" + "\xb4\x79\xf1\x55\x4d\xd8\x21\x5e\x85\x69\x87\x3a\x58\x92\x0e\x4c" + "\x93\xb6\xc8\x15\x31\xf1\xb6\x51\xd2\xca\xad\x9b\x0d\x31\xc3\x29" + "\xc6\x9a\x25\x62\xa6\x64\x15\x9f\x5c\x6f\xb4\x2d\xad\x99\xa5\x4c" + "\x93\x2a\x20\xfd\x7e\x44\x9f\x5d\x6f\xb4\x32\xed\x65\x43\x18\x29" + "\x55\xc0\xe4\x7a\xa3\xa9\x69\xdf\xa0\xb3\x6f\x94\x34\xc6\xaa\xb3" + "\xb9\xe9\xd0\x22\x7f\x93\xb0\xc5\x0a\xda\x22\x4f\xfd\x84\xcd\x52" + "\x94\xd0\x6c\x75\xb7\x3b\xed\xd9\x27\x0d\x17\x8a\xa9\xda\xa5\xff" + "\x3f\x77\x5d\x8a\x18\x6d\xb0\x4c\x56\xc4\xaa\x2d\x68\xae\x54\x08" + "\xe6\xeb\x6d\xd6\xe6\xf9\x86\x55\x9f\xd9\x96\xf4\xbb\x90\x75\x76" + "\xbd\xcd\xc6\x3c\xdf\xb0\xfa\x33\xdb\x32\xb9\xde\x66\x5e\x9e\x6f" + "\x58\x01\x9a\x6d\xc9\xaf\x37\x1a\x96\xe7\x5b\x96\x81\x66\x6b\x9c" + "\x46\x29\x6a\x35\x17\x61\x90\x64\x15\x0e\x7b\x74\xdb\x8a\xae\x8b" + "\x2d\xd2\xef\x97\x80\x87\x2d\x1d\xef\x97\x6c\x76\x0e\x3a\xfb\x5d" + "\x94\xdf\x87\xbb\xe4\xaa\x9f\xb2\xc2\x31\x88\x7e\x67\x36\x46\xa7" + "\x8c\x71\x42\x93\xc5\xc8\x91\xd6\x09\x29\x4e\xc8\xea\x04\x18\x7b" + "\xc8\xf3\x60\xa0\x7a\x5d\x69\x1b\xf1\xc0\x12\x23\x0a\xbe\xb1\xc4" + "\x68\xe2\x9e\x59\x62\x84\xad\x5f\x5a\x12\x79\x5a\x3c\xb6\xc4\xe8" + "\xdb\xbc\xb7\xb4\xed\xf0\xe4\x92\xe6\xd7\xf3\xea\xd2\x92\x13\x45" + "\xbc\x5a\x53\x53\x45\x3f\x5c\xc3\xdf\x6c\x0c\xbd\x5d\xc3\x68\x02" + "\xcf\xd7\x34\xf5\xc6\xbd\x60\xc3\xdf\x96\x0c\x3d\x62\xa3\x69\x62" + "\xde\xb1\xa9\x69\xa3\x9e\xb2\xe1\x3a\xf5\xbf\x66\xd3\xf0\x13\xf7" + "\xa0\x8d\x56\x21\xf5\xa6\x8d\x0c\x8d\xb6\x8d\x09\x8e\xc9\xa8\x22" + "\xe3\x63\x8a\xae\xdc\x22\x44\xa6\x2c\xb9\x4b\x94\xcc\xba\xa6\x8e" + "\x81\x32\x45\x07\x0a\xc6\xca\xd4\x54\x81\x70\x99\xdb\xe8\x88\x99" + "\xdb\xd8\xa0\x99\x8c\x32\x26\x6e\xa6\xd0\x72\x5c\xe8\x4c\x55\xe2" + "\x2d\xd1\x33\xb7\x37\x05\xd0\x54\x86\xb6\x4b\x0c\x4d\xae\xed\xae" + "\x61\x34\xb9\x39\xb9\x35\x92\x26\x2b\xe3\xc6\x60\x9a\x9c\xf9\x1b" + "\xe2\x69\x6e\x3b\x85\xd4\x54\x12\x6f\x13\x55\xb3\x91\x74\x7c\x60" + "\x4d\x2e\xe1\x4e\xb1\x35\xb7\x1d\xc3\x6b\x6e\x3b\x47\xd8\x44\x12" + "\x89\x0f\xb2\x69\x4a\x25\x36\xce\x26\xe8\x7b\x9d\x42\x6d\x36\xfd" + "\xae\x53\xb4\xcd\x6d\xa7\x80\x9b\xc7\x6d\xab\x98\x9b\xdb\x0e\x61" + "\x37\x91\x1a\x62\x22\x6f\x9a\x0a\x08\x07\xdf\xb4\x3b\x65\x54\xfc" + "\xcd\x6d\xab\x10\x9c\xc2\x7f\xfa\xa3\x70\x1e\xb7\xbe\x40\x9c\xc7" + "\xad\x2f\x16\xe7\x71\xeb\x0b\xc7\x79\xdc\xfa\x22\x72\x1e\xb7\xbe" + "\xa0\x9c\xc7\xad\x2f\x2e\x27\x4b\xa5\x43\x73\x1e\xe9\xe8\x9c\xc7" + "\x40\x80\xce\xa3\x3f\x46\xe7\xd1\x1b\xa6\xf3\x18\x88\xd4\x79\xf4" + "\x06\xeb\x3c\x06\xe3\x75\x02\xbe\x5a\x86\xec\x04\x6c\x77\x8e\xda" + "\x09\x44\xd3\x31\x70\x27\x90\x5e\xa7\xd8\x9d\x40\xbe\x9d\xc3\x77" + "\x02\x1d\x74\x8a\xe0\x89\xb5\xd4\x29\x88\x27\x54\x63\xbb\x38\x9e" + "\x50\x8d\x5d\x43\x79\x42\x35\x76\x8b\xe6\x09\xd5\xd8\x25\xa0\x27" + "\x54\x63\xd7\x98\x9e\x50\x8d\x5d\xc2\x7a\x1a\x6a\xec\x12\xd9\xd3" + "\xa3\x46\x9d\x1e\x8e\xef\x19\xd0\x86\xa6\x09\x45\xf9\x0c\x89\x54" + "\x13\x85\x62\x7d\x06\xc5\x22\x02\x64\x7a\xed\x90\xa6\x88\x09\xfa" + "\x19\x34\x29\x9a\x2a\x1c\xfa\x33\x6c\x1b\x34\x59\x38\x00\x68\xc4" + "\x18\x17\xf1\x32\xa1\x1c\x88\x30\xa0\x50\x10\xbe\x48\xa0\x50\x12" + "\x9e\x60\xa0\x50\x14\x74\x3c\x50\x28\x0b\x5f\x48\x50\x28\x0c\x3a" + "\x2a\xa8\x21\x0d\x3a\x30\x28\x14\x87\x33\x36\x28\x14\x06\x1d\x1e" + "\x14\x8a\x82\x8c\x10\x0a\x05\x41\x05\x09\x85\x62\xa0\xe3\x84\x42" + "\x21\x50\xa1\x42\x0d\x11\x10\xd1\x42\x05\xff\x44\xc0\x50\xc1\xba" + "\x2f\x66\xa8\xe0\xda\x13\x36\x54\x30\x4c\x47\x0e\x15\xbc\xfa\x82" + "\x87\x0a\x36\x3d\xf1\x43\x61\xe3\xdb\x86\x10\x85\xcc\x75\x8f\x22" + "\x0a\x25\xd0\x35\x90\x28\x94\x52\xb7\x58\xa2\x50\x90\xdd\xc3\x89" + "\x42\x69\x77\x8b\x28\x8a\xf4\xd1\x32\xa8\x28\xd2\x47\xe7\xb8\xa2" + "\x48\x1f\x1d\x43\x8b\x22\x7d\x74\x8a\x2e\x8a\xf4\xd1\x39\xc0\x28" + "\xd2\x47\xa7\x18\xa3\x3e\x7d\x68\x82\x88\x48\xa3\x21\xa1\x6a\xa2" + "\x60\xbc\xd1\xa0\x5c\x34\x55\x30\xea\xa8\x7f\xe4\x6b\x92\xa8\xd8" + "\xa3\xe1\x21\xac\xc9\x22\x22\x90\x46\x8c\x44\x4d\x17\x11\x87\x14" + "\x71\x49\x84\x22\x45\x6c\xfa\xa2\x91\x22\x3e\x3d\x01\x49\x11\xa3" + "\x74\x4c\x52\xc4\xa9\x2f\x2c\x29\x62\x95\x8e\x4c\x8a\x78\x75\x06" + "\x27\x45\x9c\xd2\xf1\x49\x11\x9f\x64\x88\x52\xc4\x25\x15\xa5\x14" + "\xf1\x48\x07\x2a\x45\x1c\x92\xb1\x4a\x05\x83\xce\x70\xa5\x82\x31" + "\x3a\x62\xa9\x60\x88\x0c\x5a\x2a\x18\xa1\xe2\x96\x0a\x06\xe8\xd0" + "\xa5\xa2\xe1\xbe\xe8\xa5\xa2\xcd\xde\x00\xa6\xa2\xed\xe1\x18\xa6" + "\x82\x87\x60\x18\x53\xc1\x4b\x28\x92\xa9\xe0\x29\x1c\xcc\x54\xf0" + "\x16\x11\xcf\x54\xb0\x18\x11\xd2\x54\x30\x1a\x1b\xd5\x54\xb0\x1b" + "\x19\xd8\x54\x30\x1d\x17\xdb\x54\xb0\x1e\x1b\xde\x54\x08\xc0\x13" + "\xe1\x54\x46\xfb\xd9\x46\x46\x72\x54\x5b\x8b\xc1\x60\x8e\xcd\x8e" + "\xa2\x2f\x9e\xa3\x0b\x63\x9e\x4d\x1f\x00\xc6\xbc\x5d\x46\x60\xcc" + "\xdb\x65\x18\x63\x66\x34\x71\x18\xf3\x76\xd9\x1e\x63\x16\x79\x5a" + "\x60\xcc\x8c\xbe\x05\xc6\xcc\x65\xd0\x1a\x63\xd6\xfc\x7a\x31\x66" + "\x46\x14\x81\x31\xd7\x54\xd1\x18\x33\xcb\x11\xc4\x98\x19\x4d\x00" + "\x63\x6e\xea\x8d\xc3\x98\x19\x7d\x10\x63\xd6\x34\x31\x18\x73\x4d" + "\x1b\x85\x31\x73\x9d\xfa\x31\xe6\x86\x9f\x38\x8c\x59\xab\xd0\x8b" + "\x31\xeb\xae\xe4\xc7\x98\x19\x55\x24\xc6\x2c\xba\x72\x0b\x8c\x59" + "\x96\xdc\x05\x63\xae\x6b\xea\x88\x31\x8b\x0e\x14\xc4\x98\x35\x95" + "\x1f\x63\xe6\x43\x2c\x0e\x63\x6e\x28\x43\x18\xf3\x76\x19\x85\x31" + "\x0b\x2d\xc7\x61\xcc\xaa\xc4\x1b\x30\xe6\xda\x9c\x76\xc3\x98\x95" + "\xa1\xed\x82\x31\x73\x6d\x77\xc5\x98\xb9\x39\xb9\x15\x63\x66\x65" + "\xdc\x88\x31\x73\xe6\xbb\x63\xcc\xb5\xe4\xdb\x61\xcc\x4a\xe2\x6d" + "\x30\xe6\x46\xd2\xf1\x18\x33\x97\x70\x17\x8c\x59\x70\xd5\x01\x63" + "\x36\xa4\xd1\x06\x63\x46\x12\x89\xc7\x98\x4d\xa9\xc4\x62\xcc\xa0" + "\xef\x75\xc2\x98\x9b\x7e\xd7\x05\x63\xb6\xe4\x1b\x87\x31\xf3\x4a" + "\xe3\x31\x66\x43\x19\x71\x18\x33\x52\x43\x0c\xc6\x6c\x2a\x20\x8c" + "\x31\xdb\x9d\x32\x06\x63\xb6\x44\xe6\xc7\x98\x85\xff\xf4\x63\xcc" + "\xdb\xa5\x0f\x63\xde\x2e\x7d\x18\xf3\x76\xe9\xc3\x98\xb7\x4b\x1f" + "\xc6\xbc\x5d\xfa\x30\xe6\xed\xd2\x87\x31\xb3\x54\x1a\x63\x16\x0c" + "\xb9\x31\x66\xc1\x8d\x07\x63\x16\xfc\xd0\x18\xb3\x60\x88\xc4\x98" + "\x05\x43\x1e\x8c\x59\xb0\x44\x62\xcc\xba\x53\xd3\x18\x33\xe0\xab" + "\x25\xc6\x0c\xd8\xee\x8c\x31\x03\xd1\x74\xc4\x98\x81\xf4\x3a\x61" + "\xcc\x40\xbe\x9d\x31\x66\xa0\x83\x4e\x18\x33\xd6\x52\x27\x8c\x19" + "\xaa\xb1\x1d\xc6\x0c\xd5\xd8\x15\x63\x86\x6a\xec\x86\x31\x43\x35" + "\x76\xc1\x98\xa1\x1a\xbb\x62\xcc\x50\x8d\x5d\x30\x66\x43\x8d\x5d" + "\x30\x66\x8f\x1a\x75\x7a\x18\x63\x0e\x68\x43\xd3\x84\x30\xe6\x90" + "\x48\x35\x51\x08\x63\x0e\x8a\x45\x60\xb0\x5e\x3b\xa4\x29\x62\x30" + "\xe6\xa0\x49\xd1\x54\x61\x8c\x39\x6c\x1b\x34\x59\x18\x63\x8e\x18" + "\xe3\x02\x7d\x85\x72\x20\x30\x66\x28\x08\x1f\xc6\x0c\x25\xe1\xc1" + "\x98\xa1\x28\x68\x8c\x19\xca\xc2\x87\x31\x43\x61\xd0\x18\xb3\x21" + "\x0d\x1a\x63\x86\xe2\x70\x62\xcc\x50\x18\x34\xc6\x0c\x45\x41\x62" + "\xcc\x50\x10\x14\xc6\x0c\xc5\x40\x63\xcc\x50\x08\x14\xc6\x6c\x88" + "\x80\xc0\x98\x05\xff\x04\xc6\x2c\x58\xf7\x61\xcc\x82\x6b\x0f\xc6" + "\x2c\x18\xa6\x31\x66\xc1\xab\x0f\x63\x16\x6c\x7a\x30\x66\xd8\xf8" + "\xb6\x18\x33\x64\xae\x3b\xc6\x0c\x25\xd0\x15\x63\x86\x52\xea\x86" + "\x31\x43\x41\x76\xc7\x98\xa1\xb4\xbb\x61\xcc\x48\x1f\x2d\x31\x66" + "\xa4\x8f\xce\x18\x33\xd2\x47\x47\x8c\x19\xe9\xa3\x13\xc6\x8c\xf4" + "\xd1\x19\x63\x46\xfa\xe8\x84\x31\xfb\xf4\xa1\x09\x22\x30\xe6\x90" + "\x50\x35\x51\x10\x63\x0e\xca\x45\x53\x05\x31\x66\xff\xc8\xd7\x24" + "\x51\x18\x73\x78\x08\x6b\xb2\x08\x8c\x39\x62\x24\x6a\xba\x08\x8c" + "\x19\x71\x49\x60\xcc\x88\x4d\x1f\xc6\x8c\xf8\xf4\x60\xcc\x88\x51" + "\x1a\x63\x46\x9c\xfa\x30\x66\xc4\x2a\x8d\x31\x23\x5e\x9d\x18\x33" + "\xe2\x94\xc6\x98\x11\x9f\x24\xc6\x8c\xb8\xa4\x30\x66\xc4\x23\x8d" + "\x31\x23\x0e\x49\x8c\x59\x30\xe8\xc4\x98\x05\x63\x34\xc6\x2c\x18" + "\x22\x31\x66\xc1\x08\x85\x31\x0b\x06\x68\x8c\x59\x34\xdc\x87\x31" + "\x8b\x36\x7b\x31\x66\xd1\xf6\x30\xc6\x2c\x78\x08\x62\xcc\x82\x97" + "\x10\xc6\x2c\x78\x0a\x63\xcc\x82\xb7\x08\x8c\x59\xb0\x18\x81\x31" + "\x0b\x46\x63\x31\x66\xc1\x6e\x24\xc6\x2c\x98\x8e\xc3\x98\x05\xeb" + "\xb1\x18\xb3\x10\x40\x08\x63\xae\xb7\x19\x43\x18\xb3\xda\x5a\x0c" + "\x62\xcc\xcd\x8e\x62\x5b\x8c\xf9\xf1\x31\x05\x18\x73\xb5\x8e\xc0" + "\x98\x19\x51\x10\x63\x66\x34\x71\x18\x33\x23\x6c\x8d\x31\x8b\x3c" + "\x2d\x30\x66\x46\xdf\x02\x63\xe6\x32\x68\x8d\x31\x6b\x7e\xbd\x18" + "\x73\xb5\x8e\xc1\x98\x6b\xaa\x68\x8c\xb9\x5a\x87\x31\xe6\x6a\x1d" + "\xc2\x98\x9b\x7a\xe3\x30\x66\x46\x1f\xc4\x98\x35\x4d\x0c\xc6\x5c" + "\xd3\x46\x61\xcc\x5c\xa7\x7e\x8c\xb9\xe1\x27\x0e\x63\xd6\x2a\xf4" + "\x62\xcc\xba\x2b\xf9\x31\x66\x46\x15\x89\x31\x8b\xae\xdc\x02\x63" + "\x96\x25\x77\xc1\x98\xeb\x9a\x3a\x62\xcc\xa2\x03\x05\x31\x66\x4d" + "\xe5\xc7\x98\xf9\x10\x8b\xc3\x98\x1b\xca\x10\xc6\xcc\x28\x63\x30" + "\x66\xa1\xe5\x38\x8c\x59\x95\x78\x03\xc6\x5c\x9b\xd3\x6e\x18\xb3" + "\x32\xb4\x5d\x30\x66\xae\xed\xae\x18\x33\x37\x27\xb7\x62\xcc\xac" + "\x8c\x1b\x31\x66\xce\x7c\x77\x8c\xb9\x96\x7c\x3b\x8c\x59\x49\xbc" + "\x0d\xc6\xdc\x48\x3a\x1e\x63\xe6\x12\xee\x82\x31\x0b\xae\x3a\x60" + "\xcc\x86\x34\xda\x60\xcc\x48\x22\xf1\x18\xb3\x29\x95\x58\x8c\x19" + "\xf4\xbd\x4e\x18\x73\xd3\xef\xba\x60\xcc\x96\x7c\xe3\x30\x66\x5e" + "\x69\x3c\xc6\x6c\x28\x23\x0e\x63\x46\x6a\x88\xc1\x98\x4d\x05\x84" + "\x31\x66\xbb\x53\xc6\x60\xcc\x96\xc8\xfc\x18\xb3\xf0\x9f\x7e\x8c" + "\x99\x91\x78\x30\x66\x96\xea\xc1\x98\x59\xaa\x07\x63\x66\xa9\x1e" + "\x8c\x99\xa5\x7a\x30\x66\x96\xea\xc1\x98\x59\x2a\x8d\x31\x0b\x86" + "\xdc\x18\xb3\xe0\xc6\x83\x31\x0b\x7e\x68\x8c\x59\x30\x44\x62\xcc" + "\x82\x21\x0f\xc6\x2c\x58\x22\x31\x66\xdd\xa9\x69\x8c\x19\xf0\xd5" + "\x12\x63\x06\x6c\x77\xc6\x98\x81\x68\x3a\x62\xcc\x40\x7a\x9d\x30" + "\x66\x20\xdf\xce\x18\x33\xd0\x41\x27\x8c\x19\x6b\xa9\x13\xc6\x0c" + "\xd5\xd8\x0e\x63\x86\x6a\xec\x8a\x31\x43\x35\x76\xc3\x98\xa1\x1a" + "\xbb\x60\xcc\x50\x8d\x5d\x31\x66\xa8\xc6\x2e\x18\xb3\xa1\xc6\x2e" + "\x18\xb3\x47\x8d\x3a\x3d\x8c\x31\x07\xb4\xa1\x69\x42\x18\x73\x48" + "\xa4\x9a\x28\x84\x31\x07\xc5\x22\x30\x58\xaf\x1d\xd2\x14\x31\x18" + "\x73\xd0\xa4\x68\xaa\x30\xc6\x1c\xb6\x0d\x9a\x2c\x8c\x31\x47\x8c" + "\x71\x81\xbe\x42\x39\x10\x18\x33\x14\x84\x0f\x63\x86\x92\xf0\x60" + "\xcc\x50\x14\x34\xc6\x0c\x65\xe1\xc3\x98\xa1\x30\x68\x8c\xd9\x90" + "\x06\x8d\x31\x43\x71\x38\x31\x66\x28\x0c\x1a\x63\x86\xa2\x20\x31" + "\x66\x28\x08\x0a\x63\x86\x62\xa0\x31\x66\x28\x04\x0a\x63\x36\x44" + "\x40\x60\xcc\x82\x7f\x02\x63\x16\xac\xfb\x30\x66\xc1\xb5\x07\x63" + "\x16\x0c\xd3\x18\xb3\xe0\xd5\x87\x31\x0b\x36\x3d\x18\x33\x6c\x7c" + "\x5b\x8c\x19\x32\xd7\x1d\x63\x86\x12\xe8\x8a\x31\x43\x29\x75\xc3" + "\x98\xa1\x20\xbb\x63\xcc\x50\xda\xdd\x30\x66\xa4\x8f\x96\x18\x33" + "\xd2\x47\x67\x8c\x19\xe9\xa3\x23\xc6\x8c\xf4\xd1\x09\x63\x46\xfa" + "\xe8\x8c\x31\x23\x7d\x74\xc2\x98\x7d\xfa\xd0\x04\x11\x18\x73\x48" + "\xa8\x9a\x28\x88\x31\x07\xe5\xa2\xa9\x82\x18\xb3\x7f\xe4\x6b\x92" + "\x28\x8c\x39\x3c\x84\x35\x59\x04\xc6\x1c\x31\x12\x35\x5d\x04\xc6" + "\x8c\xb8\x24\x30\x66\xc4\xa6\x0f\x63\x46\x7c\x7a\x30\x66\xc4\x28" + "\x8d\x31\x23\x4e\x7d\x18\x33\x62\x95\xc6\x98\x11\xaf\x4e\x8c\x19" + "\x71\x4a\x63\xcc\x88\x4f\x12\x63\x46\x5c\x52\x18\x33\xe2\x91\xc6" + "\x98\x11\x87\x24\xc6\x2c\x18\x74\x62\xcc\x82\x31\x1a\x63\x16\x0c" + "\x91\x18\xb3\x60\x84\xc2\x98\x05\x03\x34\xc6\x2c\x1a\xee\xc3\x98" + "\x45\x9b\xbd\x18\xb3\x68\x7b\x18\x63\x16\x3c\x04\x31\x66\xc1\x4b" + "\x08\x63\x16\x3c\x85\x31\x66\xc1\x5b\x04\xc6\x2c\x58\x8c\xc0\x98" + "\x05\xa3\xb1\x18\xb3\x60\x37\x12\x63\x16\x4c\xc7\x61\xcc\x82\xf5" + "\x58\x8c\x59\x08\x20\x84\x31\xd7\xdb\x8c\x21\x8c\x59\x6d\x2d\x06" + "\x31\xe6\x66\x47\xb1\x2d\xc6\x9c\xa4\xe3\x31\x00\x99\xcf\x55\x04" + "\xc8\xcc\x88\x82\x20\x33\xa3\x89\x03\x99\x19\x61\x6b\x90\x59\xe4" + "\x69\x01\x32\x33\xfa\x16\x20\x33\x97\x41\x6b\x90\x59\xf3\xeb\x05" + "\x99\x19\x51\x04\xc8\x5c\x53\x45\x83\xcc\x2c\x47\x10\x64\x66\x34" + "\x01\x90\xb9\xa9\x37\x0e\x64\x66\xf4\x41\x90\x59\xd3\xc4\x80\xcc" + "\x35\x6d\x14\xc8\xcc\x75\xea\x07\x99\x1b\x7e\xe2\x40\x66\xad\x42" + "\x2f\xc8\xac\xbb\x92\x1f\x64\x66\x54\x91\x20\xb3\xe8\xca\x2d\x40" + "\x66\x59\x72\x17\x90\xb9\xae\xa9\x23\xc8\x2c\x3a\x50\x10\x64\xd6" + "\x54\x7e\x90\x99\x0f\xb1\x38\x90\xb9\xa1\x0c\x81\xcc\x8c\x32\x06" + "\x64\x16\x5a\x8e\x03\x99\x55\x89\x37\x80\xcc\xb5\x39\xed\x06\x32" + "\x2b\x43\xdb\x05\x64\xe6\xda\xee\x0a\x32\x73\x73\x72\x2b\xc8\xcc" + "\xca\xb8\x11\x64\xe6\xcc\x77\x07\x99\x6b\xc9\xb7\x03\x99\x95\xc4" + "\xdb\x80\xcc\x8d\xa4\xe3\x41\x66\x2e\xe1\x2e\x20\xb3\xe0\xaa\x03" + "\xc8\x6c\x48\xa3\x0d\xc8\x8c\x24\x12\x0f\x32\x9b\x52\x89\x05\x99" + "\x41\xdf\xeb\x04\x32\x37\xfd\xae\x0b\xc8\x6c\xc9\x37\x0e\x64\xe6" + "\x95\xc6\x83\xcc\x86\x32\xe2\x40\x66\xa4\x86\x18\x90\xd9\x54\x40" + "\x18\x64\xb6\x3b\x65\x0c\xc8\x6c\x89\xcc\x0f\x32\x0b\xff\xe9\x07" + "\x99\x19\x89\x07\x64\x66\xa9\x1e\x90\x99\xa5\x7a\x40\x66\x96\xea" + "\x01\x99\x59\xaa\x07\x64\x66\xa9\x1e\x90\x99\xa5\xd2\x20\xb3\x60" + "\xc8\x0d\x32\x0b\x6e\x3c\x20\xb3\xe0\x87\x06\x99\x05\x43\x24\xc8" + "\x2c\x18\xf2\x80\xcc\x82\x25\x12\x64\xd6\x9d\x9a\x06\x99\x01\x5f" + "\x2d\x41\x66\xc0\x76\x67\x90\x19\x88\xa6\x23\xc8\x0c\xa4\xd7\x09" + "\x64\x06\xf2\xed\x0c\x32\x03\x1d\x74\x02\x99\xb1\x96\x3a\x81\xcc" + "\x50\x8d\xed\x40\x66\xa8\xc6\xae\x20\x33\x54\x63\x37\x90\x19\xaa" + "\xb1\x0b\xc8\x0c\xd5\xd8\x15\x64\x86\x6a\xec\x02\x32\x1b\x6a\xec" + "\x02\x32\x7b\xd4\xa8\xd3\xc3\x20\x73\x40\x1b\x9a\x26\x04\x32\x87" + "\x44\xaa\x89\x42\x20\x73\x50\x2c\x02\x84\xf5\xda\x21\x4d\x11\x03" + "\x32\x07\x4d\x8a\xa6\x0a\x83\xcc\x61\xdb\xa0\xc9\xc2\x20\x73\xc4" + "\x18\x17\xf0\x2b\x94\x03\x01\x32\x43\x41\xf8\x40\x66\x28\x09\x0f" + "\xc8\x0c\x45\x41\x83\xcc\x50\x16\x3e\x90\x19\x0a\x83\x06\x99\x0d" + "\x69\xd0\x20\x33\x14\x87\x13\x64\x86\xc2\xa0\x41\x66\x28\x0a\x12" + "\x64\x86\x82\xa0\x40\x66\x28\x06\x1a\x64\x86\x42\xa0\x40\x66\x43" + "\x04\x04\xc8\x2c\xf8\x27\x40\x66\xc1\xba\x0f\x64\x16\x5c\x7b\x40" + "\x66\xc1\x30\x0d\x32\x0b\x5e\x7d\x20\xb3\x60\xd3\x03\x32\xc3\xc6" + "\xb7\x05\x99\x21\x73\xdd\x41\x66\x28\x81\xae\x20\x33\x94\x52\x37" + "\x90\x19\x0a\xb2\x3b\xc8\x0c\xa5\xdd\x0d\x64\x46\xfa\x68\x09\x32" + "\x23\x7d\x74\x06\x99\x91\x3e\x3a\x82\xcc\x48\x1f\x9d\x40\x66\xa4" + "\x8f\xce\x20\x33\xd2\x47\x27\x90\xd9\xa7\x0f\x4d\x10\x01\x32\x87" + "\x84\xaa\x89\x82\x20\x73\x50\x2e\x9a\x2a\x08\x32\xfb\x47\xbe\x26" + "\x89\x02\x99\xc3\x43\x58\x93\x45\x80\xcc\x11\x23\x51\xd3\x45\x80" + "\xcc\x88\x4b\x02\x64\x46\x6c\xfa\x40\x66\xc4\xa7\x07\x64\x46\x8c" + "\xd2\x20\x33\xe2\xd4\x07\x32\x23\x56\x69\x90\x19\xf1\xea\x04\x99" + "\x11\xa7\x34\xc8\x8c\xf8\x24\x41\x66\xc4\x25\x05\x32\x23\x1e\x69" + "\x90\x19\x71\x48\x82\xcc\x82\x41\x27\xc8\x2c\x18\xa3\x41\x66\xc1" + "\x10\x09\x32\x0b\x46\x28\x90\x59\x30\x40\x83\xcc\xa2\xe1\x3e\x90" + "\x59\xb4\xd9\x0b\x32\x8b\xb6\x87\x41\x66\xc1\x43\x10\x64\x16\xbc" + "\x84\x40\x66\xc1\x53\x18\x64\x16\xbc\x45\x80\xcc\x82\xc5\x08\x90" + "\x59\x30\x1a\x0b\x32\x0b\x76\x23\x41\x66\xc1\x74\x1c\xc8\x2c\x58" + "\x8f\x05\x99\x85\x00\x42\x20\x73\xbd\xcd\x18\x02\x99\xd5\xd6\x62" + "\x10\x64\x6e\x76\x14\x5b\x83\xcc\x13\x0c\x32\xc7\xa1\xcc\x51\x30" + "\x73\x3c\xce\xdc\x09\x68\x6e\x8d\x34\xb7\x84\x9a\xbb\x61\xcd\x71" + "\x60\x73\x24\xda\xdc\x01\x6e\x8e\xc2\x9b\x23\x00\xe7\xd6\x88\x73" + "\x14\xe4\xdc\x0a\x73\x6e\x09\x3a\x47\xa0\xce\xad\x61\xe7\x38\xdc" + "\x39\x12\x78\x6e\x81\x3c\xb7\x86\x9e\x6f\xc0\x9e\x6f\x06\x9f\x23" + "\xd1\xe7\x48\xf8\xb9\x05\xfe\xdc\x02\x80\x8e\x45\xa0\xdb\x40\xd0" + "\x77\xc0\xa0\x6f\x05\xa1\x6f\x41\xa1\x6f\x82\xa1\xef\x82\x43\xdf" + "\x01\x88\xbe\x11\x89\xee\x0a\x45\x77\xc1\xa2\x3b\x81\xd1\x9d\xd1" + "\xe8\xce\x70\xf4\x2d\x78\x74\x57\x40\xba\x33\x22\x7d\x33\x24\x7d" + "\x23\x26\xdd\x15\x94\x6e\x89\x4a\x77\x83\xa5\xdb\xe3\xd2\x1d\x80" + "\xe9\x8e\xc8\x74\x5b\x68\x3a\x06\x9b\x0e\x80\xd3\x01\x74\x3a\x00" + "\x4f\x07\xf0\xe9\x00\x40\x1d\x40\xa8\xfd\x10\xb5\x0f\xa3\x0e\x82" + "\xd4\x21\x94\x3a\x00\x53\x07\x71\xea\x00\x50\x1d\x81\x54\xdf\x00" + "\x55\xdf\x05\xab\xbe\x03\x58\x7d\x33\x5a\x7d\x17\xb8\xfa\x66\xbc" + "\xfa\x1e\x80\xf5\x0d\x88\xf5\x5d\x20\xeb\x3b\x60\xd6\x37\x83\xd6" + "\x77\x41\xad\x6f\x86\xad\xef\x81\x5b\x07\x81\xeb\x38\xe4\x3a\x0a" + "\xba\x8e\xc1\xae\xe3\xc0\xeb\x18\xf4\x3a\x12\xbe\x8e\xc0\xaf\x63" + "\x01\xec\x48\x04\x3b\x0e\xc2\x8e\xc5\xb0\xe3\x40\xec\x68\x14\x3b" + "\x06\xc6\x8e\xc6\xb1\x63\x81\xec\x48\x24\x3b\x1a\xca\x8e\xc4\xb2" + "\xe3\xc1\xec\x30\x9a\x1d\x09\x67\xc7\xe1\xd9\x51\x80\x76\x24\xa2" + "\x1d\x05\x69\x47\x62\xda\x5e\x50\x3b\x8c\x6a\x07\x61\xed\x10\xae" + "\x1d\x06\xb6\x83\xc8\xf6\x4d\xd0\xf6\x9d\xb0\xed\xbb\x80\xdb\x77" + "\x40\xb7\xef\x04\x6f\xdf\x01\xdf\xbe\x09\xe0\xbe\x13\xc2\x7d\x17" + "\x88\xfb\x0e\x18\xf7\x9d\x40\xee\x3b\xa0\xdc\x61\x98\x3b\x12\xe7" + "\x8e\x03\xba\xa3\x90\xee\x48\xa8\x3b\x0a\xeb\x8e\x01\xbb\xa3\xd1" + "\xee\x58\xb8\x3b\x12\xef\x8e\x06\xbc\x23\x11\xef\x28\xc8\x3b\x1e" + "\xf3\x8e\x06\xbd\x63\x51\xef\x78\xd8\x3b\x16\xf7\x8e\x00\xbe\x63" + "\x91\xef\x48\xe8\x3b\x0e\xfb\x8e\x05\xbf\x23\xd1\x6f\x0f\xfc\x1d" + "\xc2\xbf\x03\x00\xb8\x1f\x01\x0f\x41\xe0\x61\x0c\x3c\x02\x04\x8f" + "\x45\xc1\x23\x61\xf0\x38\x1c\x3c\x16\x08\x8f\x46\xc2\xa3\xa1\xf0" + "\x76\x58\x78\x2b\x30\xbc\x0d\x1a\xde\x0e\x0e\x8f\xc3\xc3\xe3\x01" + "\xf1\x68\x44\xfc\x06\x48\xbc\xbe\x77\x7d\xe4\xc0\xd2\x7e\x77\x1a" + "\x1e\x37\xbf\x97\x4f\xa9\xc5\x28\x23\x48\x21\x81\x9d\x9c\x81\xe4" + "\x64\x34\x73\x14\x30\x41\x14\x06\x81\x6e\xde\xeb\x61\xb3\x3b\x5d" + "\x47\xcb\xa1\xf8\x21\x06\x3b\x86\x84\xd1\xe8\xb1\xcc\x14\xc4\x8f" + "\x25\x59\x00\x41\x46\x0d\x88\xc3\x90\x65\x96\x20\x8a\x0c\xc8\x62" + "\x70\x64\x48\x1e\x85\x24\xcb\x0c\x01\x2c\x19\xb1\x17\x87\x26\xcb" + "\x2c\x3e\x3c\xf9\xfd\x3f\xfc\x7f\x8f\xa2\xa3\x63\xa3\xb9\x02\x00", + 24544, + "text/css", + "gzip", +}, +{ + "/assets/index-nk3CbLWe.js", + + "\x1f\x8b\x08\x00\xac\x20\xc5\x65\x02\xff\xec\xbd\xfb\x76\xdb\x46" + "\xd2\x38\xf8\xff\x3e\x05\x85\xd1\x32\x40\xd4\xa4\x24\x67\x66\xf6" + "\x1b\x32\x30\x8f\x2c\xc9\xb1\x62\x4b\x72\x24\x39\x17\x33\x0c\x05" + "\x92\x4d\x12\x11\x08\x32\x00\x48\x59\x26\xf1\x3d\xc6\x3e\xcb\x3e" + "\xcf\x3e\xc9\x56\x55\x5f\xd0\xb8\x50\x92\x27\x33\x7b\xbe\x33\xbf" + "\xdf\x49\x2c\x02\x8d\xbe\x54\x77\x57\x57\x57\x55\x57\x55\xfb\xb3" + "\xc5\x3c\x4a\xd6\xaf\x23\x6f\x32\xe3\x61\x52\xf3\xe2\xda\x4f\xe9" + "\x38\x9a\xcf\xac\xe6\x7e\xbf\x3f\xe6\x23\x1e\x79\x89\x3f\x0f\xfb" + "\xf1\xd4\x8b\xf8\xa8\xbf\x88\xb8\x37\x4c\x1a\xff\xd5\xff\xb4\x3a" + "\xfb\x6b\x38\x6f\xfe\x1e\x5b\x6d\x7b\xbc\x0c\x87\x98\xc9\x76\xd6" + "\xc3\x79\x18\x27\xb5\xc4\x1d\xcd\x87\x4b\xac\xb0\x39\x84\x02\x09" + "\x3f\x0d\x38\xbe\xd9\x56\xe0\x87\x77\x96\xd3\x8c\x78\xf0\xce\x8f" + "\x93\xb6\x3f\xb6\x93\x7a\x3d\x69\xc6\xcb\x05\xc2\x11\x9b\xcf\xb6" + "\x35\x9b\x8f\x96\x01\x87\x26\x83\xb9\x37\xb2\x1c\x27\xe2\xc9\x32" + "\x0a\xdb\xe3\x79\x64\x8b\x76\xfc\xda\x7c\x5c\xd3\x4d\xfd\xb1\xe4" + "\xd1\xc3\x35\x0f\xf8\x30\x99\x47\x47\x41\x60\x7f\x85\xad\x75\xa1" + "\xb8\x5b\xa8\xaa\xf7\x15\x54\x66\xfb\x4e\x3b\xe4\xf7\xb5\xf3\x65" + "\x42\x5d\xbc\x1c\xc4\x3c\x5a\x71\x48\x77\x5f\xae\xb3\x36\x62\x6c" + "\xc3\x77\x00\xd2\xb8\x99\x3c\x2c\xb8\xeb\xba\xd6\x70\xea\x07\x23" + "\xec\x80\xe5\x64\x19\x3d\xcc\x18\x37\xbd\xd1\x88\x8f\x2e\xe6\x23" + "\x1e\x3b\x5e\x33\xf1\x26\x17\xde\x8c\xca\xbc\x3b\xbb\x78\x6b\xd5" + "\xeb\x1e\xf6\x1d\xdf\xf3\x10\xd5\xeb\x91\xed\x39\xa9\xd3\x9c\x0b" + "\x28\x6c\xd5\x2b\xb6\xd6\x8d\xb5\x76\x0e\x58\xbc\x1c\x24\x11\xe7" + "\xf0\x98\x3a\x6d\x35\xee\xb5\x10\xfa\x22\x87\x3e\x76\xd7\x69\x5b" + "\x0c\x54\xcd\x6f\xfa\x61\xc2\x27\x91\x9f\x3c\xd4\xeb\x00\xbe\x7e" + "\x73\x8d\x2f\x0e\xf3\x01\xa4\x31\x8f\x22\x1e\xbd\x9f\x07\xfe\x50" + "\xe4\xcd\x27\xb9\xc5\x3c\x58\x6a\x18\xcd\xe3\xf8\x32\xf2\x27\x7e" + "\x88\x1d\x5a\xc6\xbc\x01\xb3\x3d\x02\xa0\x7d\x2f\x88\xad\x4e\xdc" + "\x34\x5e\x5d\xcb\x0f\x87\xc1\x72\xc4\xad\x56\xa9\xa4\x17\xce\xc3" + "\x87\xd9\x7c\x59\x2e\x33\x9f\xf9\x89\xd5\x2a\x24\xc6\x30\xa2\x8d" + "\x39\x95\xb6\x58\x9c\xea\x51\xc0\x19\x5d\xc3\x3c\xf9\x4d\xbe\x50" + "\xb8\x82\xcf\xee\xce\x41\x5b\x0d\x0e\x8e\x54\x7b\xcc\x93\xe1\x14" + "\xb2\x4d\xa1\x4f\x2c\x76\xd2\xd4\xb1\x1d\x99\xc3\x8b\x8a\x33\xc3" + "\x86\x91\xab\x11\x9c\x3b\x6b\x51\xb1\xb5\x6f\xed\xf1\x94\x5d\x25" + "\x30\xdc\x6c\x37\xc9\x72\x24\x2c\x64\x91\xb3\x0e\x38\x60\xa7\xfb" + "\x1e\x16\x92\x1f\x73\x18\xbb\x78\x1e\xc0\xa4\x3a\x88\xf0\x61\xbd" + "\x1e\x36\x03\x1e\x4e\x92\xe9\xcb\x83\x6c\xda\x34\x1a\x4f\x78\x22" + "\x97\x4b\xfc\xea\xe1\x46\x20\x90\x5a\x38\xed\xac\x4e\x0f\x10\x3c" + "\x6c\xce\xbc\x85\xed\x01\xbe\x42\xbd\x9e\x3b\x44\x1c\x62\x5e\xcd" + "\x0f\x6b\x57\x89\x1a\x81\xab\xa4\xeb\xf5\xb2\x21\x18\xba\x5e\x93" + "\x87\xa3\xf8\x27\x3f\x99\xda\x56\x73\x18\xc7\x96\xc3\x02\x77\xd8" + "\xf9\x4a\x2c\x94\x38\x79\x08\x78\x3c\xe5\x3c\x81\x55\xd2\xb2\x2c" + "\x84\x78\x67\x27\x22\x3c\xc7\x4e\x2d\xdc\x58\x02\xdf\x38\x6c\x2f" + "\x5e\xba\x07\xed\x45\xa3\xa1\x7a\xd1\x77\xe3\xee\xa2\x87\x45\xfa" + "\x34\xb8\x30\xb9\x1e\x60\xd3\xce\x70\xb3\xe9\x2b\xbc\x37\x1a\x50" + "\x2b\x3a\xe5\x41\xcc\x6b\x50\xaa\x7a\x29\xdb\xb7\xb4\x8e\xa9\x42" + "\x6b\x77\xed\xa5\x56\x6f\x77\x1d\xa4\xb7\x9a\x20\x88\xc6\xc7\x4f" + "\x10\x1d\x04\x6b\x4c\x50\x0c\x3b\x26\x14\x2d\x2f\x62\x00\x20\x7c" + "\xf3\x10\xb9\x86\x91\xbf\x48\x2c\x36\xce\x21\xa9\x05\x83\x34\x16" + "\x5d\xf2\x98\x6e\x66\xca\xbd\x51\xd3\x5b\x2c\x60\x3c\x8f\x71\x91" + "\xda\x63\x87\x0d\x25\x50\x35\x24\x2d\x72\xae\x6c\x7b\xc1\xfa\x0e" + "\x52\x15\xa4\x0e\xa7\x2b\x28\x8b\xeb\x99\x87\x40\x6c\x2c\x81\x64" + "\x0b\xac\xbf\xfc\x11\x56\xdc\x3c\xb2\x98\x0d\x85\xfb\x36\xd6\x78" + "\x8a\x09\xf6\xed\x87\xd0\x1b\x04\xbc\x96\xcc\x6b\x12\x4d\x6b\xc7" + "\xd7\xd7\x35\x98\xa3\x1a\x8e\x0f\x8c\x0c\x90\x92\x14\xfe\x68\x42" + "\x90\x4c\x79\x68\x63\x35\x89\xed\x38\xcd\xa1\x87\x0b\x20\x06\x88" + "\x24\xd6\xbb\x54\xf7\x8a\x46\x6b\xe5\x27\xbc\x25\xab\x3d\x15\xed" + "\xaf\x87\x5e\x38\xe4\x01\xb6\x29\x28\x0f\xa2\x5b\x73\xe1\x3d\x60" + "\x1e\x37\x66\xf7\x7e\x38\x9a\xdf\x37\x47\x7e\xbc\xc0\x9a\x45\x45" + "\x80\x8a\x3b\x5e\x73\xc4\xc7\xde\x32\x48\xde\x47\x1c\x13\xf9\xc8" + "\x49\xa6\xd1\xfc\xbe\x16\x03\x7c\xec\x5d\xe2\x5a\xdd\x83\xc6\x3f" + "\x8e\x1a\x1f\xbd\xc6\xe7\x46\x6f\xcf\x62\x47\x89\x7b\x6b\x77\x5a" + "\xbf\xfe\xba\x67\xef\xae\xdf\x25\x29\x3d\x37\xe9\xd1\xf9\xda\x71" + "\x6e\xd9\x8a\xbb\xd6\xc1\xa6\x7b\xd8\xf8\x47\xef\xd7\x5f\x47\x5f" + "\x5b\xec\x8a\x8b\x4a\xb0\xf4\x0d\xcc\x14\xa6\x76\xa1\x3a\xa8\xb4" + "\xd1\x93\x0f\xf0\xb9\xd1\x83\xbc\x67\xa2\xf6\xdd\xf5\x15\x4f\x37" + "\xbb\xeb\x9b\x30\x85\x1a\x83\x88\x12\x1b\x1d\x68\xf1\x2c\x6b\xf1" + "\x4c\xb5\x78\xae\x0a\xad\x8c\x42\x77\xa1\x28\x04\x65\xce\xb3\x32" + "\xe7\xaa\xcc\x2b\xee\xde\x8a\x02\x9f\x36\x3f\x6f\x7e\xfd\xf5\xeb" + "\x5b\x36\x82\xa4\xee\xca\xfd\xf5\xd7\xb8\xf7\x35\x94\x7a\xc5\x81" + "\xea\x50\xb1\x2d\x2f\xbb\xeb\x3b\x68\xa9\xb3\xbb\x3e\x4a\xd2\x8e" + "\x03\xff\xdd\xb2\x25\x40\xfa\x1b\x54\x80\xe5\x47\x90\x0b\x1e\xf7" + "\x1a\xf8\x27\x7b\xff\x7a\x17\x5a\xc2\x0e\x51\x1f\x1d\x51\x63\xfe" + "\xe9\x96\x8d\xa3\x0c\x14\x28\x19\xa5\xb0\x9c\xa2\x54\x36\x75\xcb" + "\x8e\x61\x5a\x6c\x80\xe0\xdb\xcd\x4b\xa7\xe3\x76\x1c\x8b\x4d\xb1" + "\x46\xac\xdd\xd9\x5d\x1f\x27\xa9\x04\x61\x1c\xe1\x78\x8c\xa8\xca" + "\x13\x18\x79\x28\xf2\xdf\x2f\x31\x7b\xdf\xc8\x7e\x12\x62\xf6\xbd" + "\x5b\x76\x29\x72\xfc\xfa\xeb\x6f\x90\x63\x61\xe4\xb8\x54\x39\x66" + "\x40\x7b\x6d\xd9\x28\x7e\x83\x61\xb3\xd8\x04\xfb\x4c\x99\xa8\x29" + "\xe8\xde\x4a\x74\x6f\xa5\x3b\x95\x7f\xba\x65\x03\xc8\xb0\x82\xde" + "\xac\xb0\x63\x30\x88\xba\x63\x0f\xa2\xae\x93\xac\xae\x53\x91\x22" + "\xfb\xa4\x52\xef\x73\xa9\x50\xef\x20\x4a\x9d\xdd\xcd\x6f\xf0\xe9" + "\x02\x60\xa4\x29\x78\x89\xc3\xf7\xf5\x41\x13\xfe\xa3\xa2\x96\xb1" + "\x1b\xf3\x6c\x9f\x20\x32\x70\xc5\x27\xa7\x9f\x16\x90\x98\xed\x55" + "\x7f\x64\x59\x76\xf8\x66\xc3\x9b\xc9\xfc\xdd\xfc\x9e\x47\xc7\x1e" + "\x90\x0b\x07\xe9\xe4\x27\x0b\x92\xf1\xe1\x6b\x2b\x2b\xf6\x3e\xb4" + "\x9b\xcd\x66\x56\x7b\xe2\xbe\xc4\xdd\x65\xb4\x1c\x02\x91\xc1\x8d" + "\xc7\x7d\x19\xd9\xa1\xc3\x12\xa3\xa9\xd7\x89\x01\x0e\x87\x1d\x03" + "\xd7\x3e\xc0\x78\x1f\x39\x46\xae\x9f\x20\x17\x93\x9b\x97\x64\xae" + "\x10\x85\x79\x0a\x68\x9d\xe0\x9f\x30\xbd\x55\x7c\x45\xd4\x81\x2f" + "\x7e\xda\xd8\x5d\x47\xe9\x6d\xcb\xcf\x2a\xd9\x8d\x72\x4d\x45\x7c" + "\x11\x78\x00\x19\x34\xb6\x8c\x1c\x26\xf6\x46\xe6\xb3\x98\x79\x6c" + "\xc8\x02\xb6\x64\x63\x26\x28\xa3\xfd\x87\x1d\x39\x1d\xa4\xb3\xad" + "\x3f\x60\x87\x86\xa7\xdb\x97\x2e\x56\x8f\xe3\x7b\x0b\x69\xb1\x99" + "\x86\x8d\x63\xb2\x4c\x01\xc8\xd8\x1f\xf6\xd2\xe9\x04\xa2\xfc\x18" + "\x9f\x6e\xbf\xdd\x5d\xef\x2d\xf7\x0e\xa9\x86\x06\xd5\xb1\x50\xe9" + "\x4b\xac\x62\x6f\x4c\x1f\xf1\x53\x9f\xd2\x5d\xf9\x61\x8c\x7f\x16" + "\xd8\xbb\x3e\xf4\x4e\x7e\x81\xed\x86\xdd\x62\x53\x35\x7a\x6e\x26" + "\x91\x3f\xb3\x1d\x73\x00\x8f\xb6\xf6\x7d\x0a\x7d\xb7\x76\x0f\x77" + "\x5f\xec\x7e\x63\x19\x05\x8e\xb7\x16\xe8\x8b\x02\xff\x6d\xe6\xbe" + "\xde\x9a\x7b\x21\x72\xff\x66\xe6\xbe\xc9\xe7\x16\xd0\x36\xe3\x45" + "\xe0\x27\xf6\x3e\x2c\xb6\x7d\x87\x38\x07\x40\x9f\xc4\xac\x6a\x82" + "\xb3\xa4\xe7\x08\xe6\x85\xa6\x45\x4d\x8a\x31\x25\x35\x1c\xdd\x28" + "\x37\xba\x30\x43\x11\xa2\xeb\x81\xd5\xc9\xcf\x13\xe6\xa5\x97\x3d" + "\x5f\x8f\x78\x39\x47\xae\x36\x4f\x57\xe5\x57\x55\xb9\xbb\x8e\x71" + "\x7a\xbc\x54\x57\x4d\x89\x7b\x31\x54\x51\xaa\xbd\x9c\x79\x1b\x1c" + "\xb9\x9c\x39\x78\x9e\x84\xe6\xb9\x80\x3c\x0b\x86\x62\xf3\xb0\x61" + "\xff\x3e\xf7\x43\xdb\xaa\x99\x53\x7c\xf7\xcf\x4d\xf1\xc3\x9f\x9b" + "\xe2\xa7\xa7\xd6\xeb\xfc\x89\xe1\xaf\xc8\x54\xdd\xfb\x93\x7c\xef" + "\xab\xbb\x2d\xc7\xc4\xe8\xfd\x69\xae\xf7\xc0\xac\x69\x16\x28\x70" + "\x71\x00\xd8\xd2\x0d\x36\x1b\xec\x29\x1b\xbb\x4b\x7c\xf2\x1c\x4d" + "\xf5\x70\xf2\x5d\x90\xd4\xc6\xc0\xd2\x46\xc4\x12\x0e\xe1\x2f\x0b" + "\x04\xb2\xbe\x04\x7a\x4d\x0f\xdf\x5a\x1d\xeb\xdb\x03\x31\x6a\x56" + "\x0b\xc8\x77\x2b\x82\x32\x1d\x7b\x89\x72\x95\x7b\x00\x0c\xba\x7b" + "\xc0\x64\x91\x0e\x56\xf4\xd2\xb5\xd8\xb2\x03\x62\x27\x76\x9a\x41" + "\x16\xcc\xe1\xb4\x20\x33\x22\x12\xbd\x38\x02\x05\xbf\xc5\xe6\xb1" + "\xc8\xb7\x58\x42\x14\x68\x89\x6c\x0e\x93\x8d\x43\x06\x00\x0b\x9a" + "\x76\x90\x60\x45\x7b\x72\x64\x9b\x38\x07\xbb\xeb\x21\x30\x87\xad" + "\xa5\x98\x22\x9f\xa6\x16\xd3\x68\xae\x7d\x63\xae\xc7\x3a\x07\x95" + "\xd5\x99\x32\xf4\x16\xf9\x80\x43\xa9\x9c\x9e\xcb\x4a\xe4\x34\x26" + "\x62\x86\x44\xcb\x2c\xf1\xfe\xa9\x12\x17\xc5\x12\xef\x38\xee\x58" + "\x59\x19\x77\x0f\x37\x52\x96\xb8\x7b\xc9\x66\x93\x30\xfe\x32\xe9" + "\x1c\xb6\x70\x07\x4d\x3a\x07\xad\xc6\x61\x56\xf0\x53\x24\x0a\xd2" + "\xc4\xaf\x81\xd3\xbd\x02\x41\x03\xf6\x5d\xe8\x8d\xcb\x99\x99\x10" + "\xa5\x2e\xe9\x28\x50\x4a\x5d\xcd\xfd\x51\xed\x00\xe4\x74\xc5\xe0" + "\x1f\x4a\x61\x2e\xd2\x1f\xe5\x97\xc6\x61\xa9\x4c\x31\x4b\xed\xa0" + "\xad\x04\x2a\x1f\xe6\x1b\xe4\x52\x29\x54\xb5\xfd\x6f\xdd\xb8\xed" + "\xef\xed\x39\x19\x6b\xde\xf5\x7b\x80\x69\x11\xfc\x10\xdf\xbd\xe3" + "\xba\x5a\xc8\xf0\x8c\x46\x86\xfa\x19\xfa\xeb\x75\x86\x1d\x18\x20" + "\x44\x71\xe8\x7b\xeb\x50\x49\x02\x07\x06\x01\xc9\x8f\x1f\x0e\x27" + "\x2c\x9d\xdf\xe7\x11\x4b\xc4\xaf\xb3\xd9\x88\x44\x3f\x14\x89\xf8" + "\xab\x12\x89\xd1\x87\x44\xfa\x85\x44\x39\xa8\x59\xf5\xbf\x14\xa6" + "\xa7\xb9\xe2\x51\x0c\x1f\x70\x42\xd4\x73\x96\xfb\x4a\xce\x49\x7c" + "\xef\x23\x7b\xc2\x9b\xf3\x05\x6a\x9e\xe6\xc8\x8d\xc0\x4c\x00\x7d" + "\xa2\x1f\x17\x16\x93\xa8\x4f\x56\xdf\xa6\xe4\x97\x3a\x59\x76\xea" + "\xdb\x03\xf9\xa1\x54\x60\xb3\x29\x64\xf9\xb6\x58\xf6\xa5\xfa\xb0" + "\xbd\xac\xcc\x52\x13\xc3\x2d\x73\x81\x88\x2d\x85\x1d\x95\x70\x98" + "\x1a\xd8\x6a\xe2\x37\xb0\x71\x37\x11\xbb\x8b\xd8\x49\xc4\x2e\x23" + "\x27\xc7\x19\x9e\x15\x32\xee\x46\xec\x28\x62\xc7\x11\xbb\xc6\x8c" + "\x8a\xf1\xc8\x53\xbc\x8a\x15\x78\x2e\x07\x14\xc5\x77\xee\x28\x80" + "\xda\x8a\xb5\x83\x56\x12\x55\x09\x16\x24\xa2\xd9\x77\x5f\x02\x98" + "\x7d\x73\x49\x97\x29\x2b\x64\x7a\x4f\x99\x00\x6b\x89\xb5\x24\x0d" + "\x41\x5c\x68\xa2\x0b\xd4\x55\xf1\x78\x3d\x90\x10\x17\xee\x5a\xcd" + "\x68\xcb\x63\x72\xfa\x5b\xc0\x74\xca\x3c\x0e\x23\x94\x6b\x0d\x19" + "\x61\x59\x2b\x60\x84\x58\xad\x25\x33\x96\xe3\xb8\xa3\x20\x6e\x42" + "\x57\x0d\x3d\x60\x5f\xe8\xe8\xe4\x92\x99\x21\x5c\x7d\x01\xd7\xac" + "\x04\xd7\x2e\x63\x37\xec\x92\x3d\xb0\x93\x9e\x3b\x63\xaf\x0d\xb8" + "\x76\x4d\xb8\x64\x1e\x05\xd7\x8d\x84\xeb\x52\xc2\xf5\x60\xc2\x75" + "\x92\x87\x0b\xdb\x05\x7c\x7e\x0d\x42\xbd\x6e\x3d\x55\x38\x92\x0a" + "\x18\x5f\x73\x77\x2d\x74\xa9\xad\xf5\x84\x27\x2d\x14\xcd\xf1\xdf" + "\x8f\x09\x89\xf9\x1f\xae\xde\xd9\xd6\x33\xf5\xaf\xcc\x27\x1d\x6e" + "\x73\xc6\x13\xaf\xb9\x8c\x02\x87\xf4\x14\x8e\x4c\x46\x79\x9d\x0d" + "\xe6\xf3\x24\x4e\x22\x6f\xf1\x65\x8d\xe9\x62\x8d\x8b\xa3\x37\xff" + "\x38\x3d\xbf\x19\x3f\xaf\xbd\x94\x05\x89\x7b\x39\xf8\x9d\x0f\x95" + "\x2a\xc6\x0e\x97\x41\xe0\xb4\xbd\xf8\x21\x1c\xd6\x34\x8e\xce\x68" + "\x35\xb9\x96\x5c\x36\x96\x46\xfb\x20\xe9\xf2\x5e\xc7\xd4\xa0\x84" + "\xee\xcb\xd0\xa6\x64\xd8\x0b\xbd\x7b\xcf\x87\x21\x8c\xe4\xa2\xfc" + "\x09\x57\x4c\x5a\xa8\xfb\x47\x53\xea\xd9\x4d\x48\xf7\x21\x20\x84" + "\x74\xd6\xef\xa3\x96\xa3\xdf\x07\x84\x3e\xe1\x8b\xd8\xee\x42\xb5" + "\xc5\x1a\x64\xfd\xa4\xca\x0b\x5d\xec\x00\xce\xec\x24\x98\x0f\xbc" + "\xe0\x66\xea\xc7\x9d\x66\xd5\x98\xf5\x3b\xcd\x6e\xd2\x83\x3f\x00" + "\xa9\xc4\xc7\xc8\xcd\x0a\x55\x97\x81\x12\x90\x9f\xf9\x6a\xd0\xee" + "\xf8\x43\x0c\x6c\x59\xf7\xa0\x07\x8b\x4c\xa6\xad\xbc\x60\xc9\x65" + "\x6a\xfb\x35\xc7\x01\x82\xed\xf1\x8f\xa5\x0f\x35\xfc\x28\xf0\xb6" + "\x03\x8b\xde\x67\xf4\xad\xf8\x09\xc5\x27\x1a\x36\x5b\x0c\x5e\x8c" + "\x6a\x46\xa0\x23\xb6\xd3\x42\x20\xe7\x01\x6f\x06\xf3\x89\x7d\xbb" + "\x88\xe6\x2b\x1f\xe0\xab\x49\x2d\x7c\x0d\x45\x40\x1b\x37\x7e\xa7" + "\xe6\xc7\xb5\x70\x0e\x45\x01\xf6\x78\xec\xf3\x51\xad\xd0\x86\xfd" + "\xeb\xee\x5a\xe8\x4e\xcf\xbd\x45\x37\xf4\x66\x65\x30\x40\x3c\x77" + "\x5a\xdb\x20\x49\x71\xd7\x54\x3b\xdb\xa7\x10\xf8\xb4\xf2\xb4\xd2" + "\x5c\x23\x51\x93\x23\x20\xa6\x54\x4c\x52\x92\xab\x57\x0c\x83\xaa" + "\xbb\x9d\x55\x9b\x60\xb5\xa4\x71\x54\x3d\x27\x2d\x9b\x6d\xe1\xeb" + "\x72\x06\x7d\x87\x87\xb1\x3f\xa9\x89\xba\xdd\xb1\x07\x79\x59\x3c" + "\xaf\x0d\xbd\x30\xa9\x2d\xb1\x9c\x17\x04\x03\x6f\x78\x57\x13\xf3" + "\x57\x13\x9d\x36\xa9\x2f\x34\x93\xdf\xfc\x24\x8a\x03\x73\xc6\xd5" + "\x84\x7a\x71\xec\x4f\x42\x7b\x9d\x32\xfd\x19\x20\x73\x60\xed\x00" + "\x3a\x00\x23\xc2\x05\xa9\x58\x8b\x15\x74\x3c\x0f\x13\xfe\x29\x69" + "\xfd\x08\x3c\x89\xe8\x20\x6a\x85\x05\x39\x00\x56\xef\x2a\x74\x7f" + "\x84\x2e\xc0\x13\xd0\x33\x04\x21\x6e\xfd\x58\x95\xb1\xbd\xf2\xa2" + "\xda\x98\xb3\x33\xf6\x1d\x67\x6f\x13\xb6\x4c\x80\xfd\x78\x17\xba" + "\xdd\x1e\x3b\xe3\xf8\xf7\x4d\xe2\xfe\x08\x48\x3a\x60\x1f\xc4\x43" + "\xc4\xfe\xc0\x87\x91\x3f\x06\xbc\x65\x9f\x45\xe2\x90\xbd\xc2\x87" + "\x65\x38\x9b\x2f\xc3\x24\xd3\x7c\xbc\x95\x7b\x3e\xe6\x99\xd6\xeb" + "\xf4\x63\x9f\x31\x0e\xcd\x00\x4b\xe6\x50\x6b\x04\x41\xe8\x9e\xc1" + "\xb7\x37\x9b\x8d\x4d\xbf\xee\xba\xdf\x6f\x41\xe3\x90\x1d\x7e\x52" + "\x3d\x5b\xfc\x25\x30\x46\xfd\xbe\xe4\x8d\x50\x6f\x0e\x2f\x8b\x65" + "\x3c\xb5\xa1\xc0\x8f\xad\x33\x9e\x3a\x0c\xd3\x60\xa6\x8d\xb1\x37" + "\x16\x3e\x34\x78\xc8\xde\x46\xf6\x19\xe1\x52\x06\x67\x24\x94\x1d" + "\xce\x1a\x81\x89\x5c\x80\x7b\xcc\xf7\xf6\xd8\x0b\xda\x34\xa2\x66" + "\x02\xc3\xbf\x13\x61\x47\x91\xdd\x86\x5f\xb7\x1b\x76\x00\x73\x9c" + "\xd6\x59\x68\x8b\x4d\x1f\xba\xc9\xb4\xd2\x7f\x28\x2a\x0a\x5c\xcc" + "\x7b\xd1\xa1\xbf\xb0\x4c\x5b\xf8\x80\x8b\x78\x09\x1f\x12\x3b\x00" + "\x66\xac\x1d\x00\xfb\xb6\x94\xb5\x5e\xb8\xdd\x25\xa3\x3c\x87\xbd" + "\x1e\x3d\x0c\x9b\x31\x4f\xae\x13\xa4\x98\x6b\xd4\xdf\xca\x54\xf7" + "\x8c\xed\x9c\x35\x97\x8e\x68\xc6\xcf\x4e\x1b\x68\xf7\x14\x9b\xbc" + "\x28\x0e\x83\xe9\x68\x76\x84\xe6\xda\xd5\x1f\x70\xf0\xc6\x7e\x90" + "\xf0\x28\x3b\xb1\xeb\xeb\xa1\xea\x63\xb6\x54\x6a\xc9\x39\xec\x84" + "\x0f\x15\xb9\x76\x30\xd7\x45\xaa\xf7\xb5\x78\xb3\x89\x9b\xb8\x1c" + "\xec\x04\x88\x9b\xd8\xf0\x05\x8e\x2d\x5c\xd8\x72\x65\xd5\xe3\x26" + "\x6c\xd5\xa7\x1e\xf0\x75\x66\x8d\x74\x4a\x00\xb5\x89\x4e\xcd\xdc" + "\xbe\x18\xac\x36\xfe\xd2\xcb\x05\xa3\xbf\x92\xa9\x65\x33\x18\x39" + "\x99\x07\xc6\x0f\x4f\x75\xf0\xe4\x86\xed\xd8\x3b\x0b\xe0\xb0\xa9" + "\x93\x40\xbd\x16\xb1\x8b\xfc\x31\x9e\x3a\x54\x02\x07\xfb\x33\x8c" + "\xa4\x2b\x47\x27\x06\x3c\x8c\xa7\xf3\x65\x30\x3a\x9e\xc3\x6a\x0f" + "\x79\x98\x7c\x58\x8c\x60\xf8\x41\xea\x3a\x6b\x0e\x55\xda\x4f\x7e" + "\x10\x88\xf4\x76\x65\x6a\xd5\x84\x24\x82\xda\x73\xd1\xbd\x31\x70" + "\xf5\xb1\xea\x89\x2f\xb3\x01\x71\x1f\xa7\x1e\x9e\x09\x16\xa1\x4c" + "\xd9\x16\xb8\x5c\x5f\x71\xf2\x84\x40\x20\x72\xc2\x4f\x86\xd8\x1f" + "\xc4\xfa\x13\x4b\x4c\x61\xf5\x37\x4e\x7b\x07\x97\x62\x5c\xaf\x7f" + "\x8e\x6c\x5c\x2f\x6f\x20\x13\x8c\x10\x3e\x02\xa6\x87\x4d\xdf\x4d" + "\xd8\x99\x44\x91\xa9\x58\x60\xa1\xa9\xdb\x7a\x43\x54\x17\x6b\x4d" + "\x68\x58\x88\x14\x75\x39\x8e\x79\x8f\x65\x0d\xfd\x43\x2f\xdc\xb0" + "\x39\x84\x8a\x93\x8e\x68\x82\x36\x4f\xd5\xde\x0e\x2c\x9d\x66\xbc" + "\x1c\xd8\x67\x40\xeb\x12\x31\x65\x62\x73\x73\x5a\x3c\xd7\x99\x37" + "\xb6\x68\x93\xeb\x06\x0e\x0f\x05\x57\x87\xf9\x1c\x3a\xa3\x55\x30" + "\xc1\x86\xde\x4e\x76\x54\x4b\x3b\x09\x24\xcc\xf0\x30\xb9\xdf\x97" + "\x89\x6d\x27\x71\xf1\x55\x92\x1f\xca\x00\xe4\x87\x7e\xdd\xee\x01" + "\x3b\xe8\x39\x6d\xac\xd6\xb5\xde\x5b\x7b\x21\xe0\xd8\x9e\xd5\xc0" + "\x87\xc3\xde\xde\x5e\xaa\xc9\x78\x6e\xac\x23\x3b\x83\x81\xb7\xb9" + "\xfb\x2e\x84\x39\xf3\xc7\xb0\xe1\xb4\xf1\xb8\x18\x73\xbf\xaf\xd7" + "\x39\xad\xc9\x24\x7a\x58\x73\x3d\xc2\x6a\x39\x9c\x03\x2b\x52\x4e" + "\x1d\x25\x46\x2a\xd0\xe4\x54\x1c\xd7\xc0\xbc\x9a\xa9\x0c\xa7\x94" + "\xe3\x6e\x86\x9d\x87\xa5\x40\x64\x3b\x77\x54\x79\x46\x3d\x07\x92" + "\x5e\xaf\xbf\x41\xb6\x27\xa5\x32\xf9\xe3\xcc\x0f\xf0\xf1\x03\xf1" + "\x44\x63\x2e\x89\x73\xe2\xda\x67\x2e\x4d\xae\x83\xed\xb5\x71\xd7" + "\xfa\x0e\x05\xe9\xb3\x0e\x8d\x17\xb5\x7e\xa6\x1e\x12\x22\x2b\xc5" + "\xf5\x0d\xa4\x15\x67\xfb\x42\xcd\x3a\xbd\x08\x62\xfd\xa3\x7b\xc6" + "\xe9\xe1\xc2\x45\xcc\x13\x6b\x02\x48\x4a\x4b\x54\x9e\x1b\x9c\xa4" + "\x34\x30\x1a\x00\x04\x17\x30\x08\x00\x3b\xc3\x7e\x89\x0d\x2a\xd7" + "\xb5\x3f\x00\xf0\x3f\x48\x42\x11\xbd\xa2\x2e\xb5\x13\x81\x16\x6f" + "\x00\xb2\x44\x0f\xbd\xda\x60\x6c\x98\x43\x42\xff\xc4\x01\xbc\x39" + "\xac\xd7\xdf\x26\xd0\xef\x1f\x89\x8d\xe1\x71\x72\x14\xfa\x33\xe2" + "\xdc\x5e\x47\xc0\xdd\x00\xfa\xd8\x6f\x93\x6d\x5f\x81\x31\xfd\x03" + "\x24\xb6\x0f\x91\x23\x80\x7e\xb3\x7d\x9c\x7c\x39\x4a\x6f\x70\x40" + "\xe4\x20\x41\xf3\x67\xdc\x1c\xbd\x1f\x1d\x96\x0d\x97\x1e\xc8\x54" + "\x0e\x01\xcd\xb4\x98\xdf\xa1\x31\x08\x48\x0c\x60\xb5\xcd\x81\x05" + "\x30\x9b\x44\x6c\x0c\x4b\x83\x4d\x29\xae\x4c\x2f\xec\x13\x91\xde" + "\x01\x90\xe0\x6c\x36\xa3\x04\x92\x52\x47\xa2\x66\x54\x6e\x05\x8f" + "\xe2\x05\x17\x60\xfb\x72\xca\x20\x3f\x70\xfb\x1a\x73\x23\x6a\x70" + "\x45\x44\xfc\x33\xcc\xca\xe7\x44\x68\x10\x98\x66\x2c\x72\xb3\xf9" + "\x0a\xb2\xbc\xca\x66\x13\xc8\x8e\x98\xcf\x50\xb0\x05\x6f\xd4\x18" + "\x56\x0e\x73\x24\xfa\x7c\xce\x11\x6a\x01\x33\x00\x98\x00\x35\x95" + "\x1c\xc4\x1b\x35\xb0\x89\x60\x5b\x70\x61\x09\xf0\x60\xc3\xc0\x06" + "\x7f\x01\xf2\xf1\xb0\xe0\x20\x67\x56\xce\xb6\xeb\x5a\xaa\x31\xe3" + "\x24\xe8\x8f\x8c\x6e\x02\xbc\xa6\x99\x0c\x08\x8e\xd1\x8d\x3f\xe3" + "\xf3\x25\x0e\x24\xfb\x05\x9a\x15\x67\xac\xf9\x6a\x01\x0f\x19\x70" + "\x04\x2a\x27\x2e\xe1\xc8\x35\x12\x42\x76\x78\x70\xe0\xb4\xb1\xb8" + "\x9d\xb8\x95\x90\xe5\x29\xf9\x39\x37\x28\xb9\x1e\x43\xd9\xb3\xd0" + "\xec\x05\xb2\xaa\x84\x4d\x0a\xe3\x80\x8f\x66\x67\x6e\x92\xd5\x35" + "\x4a\x8c\xba\xda\x22\x33\xfe\xb5\x0b\xf9\x3e\x47\x26\x33\x2c\x8e" + "\xbb\xc4\x82\xdb\x41\x5d\x90\x78\x04\xfe\xb0\x88\xa7\x2c\xca\x4e" + "\xd1\x20\x27\xef\x46\xc0\x1a\x1a\x8a\x92\x3c\x8f\x2d\xfb\x90\x98" + "\x7d\xe8\x20\x84\xad\x44\x32\xd2\x8a\x31\xfe\x2e\xd9\xca\x19\xbf" + "\x8a\x80\x06\xea\x16\xe6\xea\x48\x0c\xd5\xc5\xa2\xa7\x74\x70\x85" + "\x26\x36\xa4\x7c\x40\x4b\x8b\xc4\x19\x42\x93\x20\x01\x5b\x1d\xcf" + "\x4d\xba\xc3\x5e\x2b\x80\x3f\xf4\x44\x55\x2e\xdd\x35\x82\xd6\xe2" + "\x8c\xb6\xba\x56\xc0\x40\xba\x6b\x41\xa5\x7c\xdc\xf2\x80\xe3\xbd" + "\x6b\x11\x91\x06\x06\x58\xfe\x0e\x5a\x07\xf0\x97\xab\xd7\x51\x4b" + "\x4e\x00\x0c\xaf\x4a\x9b\x8a\x07\xea\x56\xb4\x44\x1b\x89\x2c\xd3" + "\xaa\xd5\x68\xbc\x8a\xe0\x21\x9e\x2f\xa3\x21\x6f\xf9\xf8\xc8\x83" + "\x71\x2b\x26\xcd\x84\x1c\x26\x5e\x98\x6a\xcf\xe5\xd9\x51\x3d\x80" + "\xe9\x38\xba\x83\x9e\x43\x1d\xca\x14\x8d\x36\xbd\x7b\xf0\x47\xef" + "\xf7\xdf\x81\x7c\x1a\xce\x47\x40\xb0\xd4\x93\x0d\xec\xcd\xd2\xd0" + "\x06\x46\xf6\x3a\x02\x8c\x85\x71\x48\x33\x2b\x31\xe0\x2b\xae\x42" + "\x5d\xc9\x1c\x2d\x35\xd0\xd8\x20\x00\xd1\x08\xad\x5e\x5a\x56\xe8" + "\xad\x1a\x20\xa8\xcf\x2c\x46\x56\x50\x11\x0f\x5b\x90\xcb\x83\x4c" + "\xa8\x73\x68\x91\x1a\x72\xca\xb2\x02\xb7\x58\x00\xcd\x3d\x76\xd7" + "\x48\xb8\xc5\xf7\x8e\x55\x83\x19\xf6\x57\xdc\x6a\x59\x35\xfc\xd8" + "\x18\xcc\x47\x0f\x0d\x3e\x5b\x4c\xbd\xd8\x8f\xad\xf4\x36\xab\x9d" + "\x37\x51\x6e\x45\xe3\x89\x0c\xf6\xef\x14\xec\x31\x01\xaf\xa1\xfd" + "\x49\xda\x66\x49\xa8\xd0\x1a\x84\x47\x25\xf8\x07\xc8\x6f\xd0\x4f" + "\x83\x7f\x5a\x78\xe1\xa8\x36\x6a\x8c\x03\xfe\xa9\x86\x7f\x1a\xf7" + "\x91\xb7\xa8\xfd\xbe\x8c\x13\x7f\xfc\xd0\x20\xc6\x2a\x4c\x1a\x43" + "\xb4\x94\x88\x6a\x83\x89\x00\x34\xe6\xf0\x61\xe4\x45\x0f\xf9\x51" + "\x18\xf9\xab\x7c\x63\x58\xdc\xf3\x43\x28\xb9\xf8\xd4\xf8\xc6\xc8" + "\xdc\x35\xc7\xcc\xda\xb7\x58\x09\xc2\xc6\x20\x32\x20\xf3\x02\x10" + "\x4c\x69\xdc\x63\x05\xcb\x6c\xd0\x38\xa8\xc1\xeb\x0b\x58\x33\x8d" + "\xbf\xd6\x90\xff\x6b\x8c\x00\x2e\xa1\xc8\x68\x84\xc0\xa2\xe6\xa1" + "\xf3\x67\x13\x68\x31\x8e\x86\xd0\xe0\x35\x0f\xe3\xd3\xeb\xf7\xfd" + "\x60\x3e\x99\xf7\xe3\x87\xd9\x60\x1e\x34\xe3\x15\x7c\xbf\xf7\x47" + "\xc9\xb4\x65\xfd\xf5\x6f\x16\x9b\x72\x7f\x32\x4d\x5a\xd6\x37\x7f" + "\xb5\x98\x17\xc0\x83\x2c\x54\xc3\x42\x39\x88\x47\x0d\x3f\x84\x59" + "\xe4\x8d\x41\x30\x07\x19\xbc\x0c\xac\x85\xd3\xc7\x00\x06\xe8\x5b" + "\xd5\x74\x34\xe0\x87\x3a\x94\x87\x78\x19\x94\x32\xe3\xc4\x35\x16" + "\xc0\xe6\xc7\x96\x89\x22\xf2\x80\x69\x6e\xff\x12\x31\x89\xd5\x49" + "\x2a\x74\xe1\x53\x61\x79\xd3\x23\x0c\x32\x70\xe8\x02\x04\xba\xac" + "\x06\x13\x8b\x1e\x99\xc7\x46\x3c\xab\x2d\xf2\x33\xc9\x99\x55\xb3" + "\x72\x64\x70\x97\xe7\x0e\x4e\x54\x56\xe3\x60\xda\xcc\x80\x78\x7a" + "\x98\x6f\x0e\xad\x76\x02\xef\xa1\xf1\xf7\x5c\x1f\x13\x3f\x09\x70" + "\x1d\x88\xa5\x3a\xe5\xee\xda\x5b\xf8\xfd\xe9\x3c\x4e\xfa\xcb\x28" + "\x68\x59\x16\x13\x5a\x92\x3e\x76\x1a\xe6\x18\xbe\xee\x8b\x14\x8b" + "\xf9\xe1\x78\x6e\xa6\xe3\xbb\xc5\x50\xdb\xe1\x05\x77\xe6\x07\x99" + "\x64\x31\x1a\x44\xf3\x8b\x58\x6f\x88\x21\x63\xbf\x1f\xc3\xd6\x68" + "\x7e\xc4\xc4\x7d\x4c\x34\xbf\x47\x3c\x06\xe2\x15\x57\xe6\x6b\xc8" + "\x8f\x56\x5a\x54\x41\x1e\xd3\xe0\x20\x6f\xa0\x68\x92\xd8\x19\x84" + "\x89\xe0\x94\x37\x8d\x5e\xee\x49\x5d\x77\xd2\x9c\xdf\x49\x33\x26" + "\xc3\x24\xeb\xcd\xcd\xcd\x7b\xf1\x5c\xdb\x45\x6e\x08\x84\xf8\x65" + "\x9c\x1a\xcf\x37\xb0\x66\xd2\x5b\x4d\xed\x44\x3b\x49\xf3\xf7\x18" + "\x39\x02\xc1\x94\xac\x8b\xb5\x5a\xa2\xc2\x09\x4f\x12\x3f\x9c\x28" + "\xc5\x14\x08\x82\x5e\x0d\x8d\x74\x6b\xc9\x94\xd7\x46\x7c\xe5\x0f" + "\x39\x6a\x9e\x8b\xca\xb2\x6b\xae\x36\x30\xd7\xf2\x16\x8b\xc0\x1f" + "\xd2\x6a\xdd\xc7\x26\x2d\xb3\xd7\xfe\xa3\xbd\x66\xeb\x19\x4f\xa6" + "\xf3\x51\xcb\x7a\xff\xe1\x06\x57\x2a\xd2\xb9\xb8\xb5\xb6\x8e\x25" + "\xbd\xba\x81\x3d\xc5\x6a\x45\xa8\x67\x1e\x3d\xc0\x52\x10\xc3\xe4" + "\xe3\x30\xa9\xfd\xdb\xae\x1a\x25\xdf\x18\x25\x3f\x3f\x4a\x20\xd7" + "\x1f\x66\x8c\x5a\xb1\x16\x51\x41\xec\xad\x8a\x83\x92\xcc\x6b\xc2" + "\x88\xb7\x45\x55\xce\x78\x1c\x7b\x13\xae\xea\xcb\xeb\xe0\xd7\x5a" + "\xb4\x6e\x0d\x38\xcb\x99\x0c\xb6\xc6\x09\x53\xdc\xc2\x2b\x96\xcc" + "\xc9\xba\xef\x28\x8a\xbc\x87\xd6\x34\x61\xca\x58\xba\xf5\x7b\x02" + "\xbb\x78\x08\x83\xd1\xfa\x14\xb3\xe9\xc3\x08\x88\x21\x6f\x5d\xc5" + "\x2c\xaf\xb1\x7b\xa7\x12\xae\x80\xfa\x9e\xc1\x4b\x00\x8d\xaa\x86" + "\xce\xe3\x4a\x5e\x44\x4f\xe1\xef\x92\x77\x52\x72\x66\x28\x58\x0e" + "\xde\x0d\x91\xc5\x08\x7b\x5a\x53\x96\xad\xf7\x7e\x52\x51\x84\xa3" + "\x44\x8a\x5c\x94\xa5\x18\x03\xd8\xf5\x77\x6c\x59\x5d\xa6\x32\x52" + "\x85\x22\xf1\x01\xb5\x61\x85\x42\xc8\x86\x21\xdf\x06\x3f\x59\x31" + "\x7d\xcc\xa1\xa1\xf8\x81\x98\x43\x52\x82\x08\xad\x8c\x01\xe1\x0f" + "\xaa\x53\x39\xfb\x65\xa1\x8f\xc9\x4a\xa0\xc5\x31\xf3\xdc\xd8\x15" + "\xc6\xc7\xaa\x0d\xaf\x5e\x8f\xc9\x42\x19\x75\x26\x9d\x58\x9c\x2c" + "\xa0\x89\xf0\x32\x82\xc9\x48\x48\x10\x02\x39\xa3\xb3\x93\xd8\x59" + "\x5d\xcc\x07\x71\x6c\xc7\x6b\xf5\x0b\x89\x05\xe3\x61\xc5\x4a\x62" + "\x96\x6a\xf5\x4b\xc8\xc6\x38\xbc\xbe\x93\xa9\x61\x24\xfd\x24\x3b" + "\x6f\xeb\x9c\xcf\x80\xc4\xee\x01\xeb\x6c\x24\x23\xc3\x8b\x6c\x85" + "\xb3\x67\x39\x40\xeb\xb0\xf5\x64\x8e\x8c\x58\xd3\x8f\xaf\x70\xc6" + "\x75\x2b\xa8\x1d\x41\x01\x6b\x4c\x0f\xa9\xfd\x43\x92\x65\x26\x1b" + "\xcd\x01\x77\xa0\xd0\xfb\x25\x1e\x3e\x15\x0b\x9a\x99\xb7\x80\x9f" + "\x97\x0c\x95\xe6\x2f\x37\x28\x28\xb8\xaa\x14\x5c\x92\x24\x93\x11" + "\x27\xfb\x7d\xe2\xbe\x42\x1d\x43\xfb\x55\x49\xd3\xc0\xc9\x34\x1e" + "\x95\x1d\xd4\x38\x74\x00\x9f\x61\xd6\x48\x8a\xd0\xd3\xe9\x52\x1a" + "\xa3\xbf\x72\xa2\xbe\x07\xd1\xe5\x7b\x92\x6c\x44\x1b\x11\xb5\xc1" + "\xa9\x8d\x3c\xbc\xc2\x36\x8d\x14\x2b\x68\xcd\x9a\x21\x38\x30\xe7" + "\x6e\xd2\x8e\x5d\x54\xb7\x91\xe6\xc5\xf6\xe9\x19\xb5\x80\x3e\xfd" + "\xaa\x79\xa5\x3a\x95\x36\x4a\xbc\xa1\x90\xc7\x49\x40\xbf\xa3\xe7" + "\x3b\xb4\x6c\x87\x32\x42\x16\xfd\x3e\xd2\x2d\x0b\xf8\x7e\xc6\x31" + "\x28\xe9\xbd\xcf\x43\xa5\x4f\x56\xcb\x51\x49\x4f\x42\xff\x33\x94" + "\x02\x2a\xcf\xa9\x62\xab\x84\x54\x29\x62\x92\x2c\x95\xe3\xd0\x29" + "\xc9\x46\xc6\x46\x57\x22\x47\xd0\xe6\x2e\x50\x09\x3c\x46\x70\x50" + "\x5f\x33\xdc\x51\x1d\x54\x19\xdf\x03\x27\x1c\xe6\xde\xa5\x82\x69" + "\x28\x6b\xe0\xd4\x7b\xfa\x2b\xe0\xbd\x23\x16\xa7\x2c\xfc\x63\x47" + "\x23\xea\x28\xea\x1d\x8c\x15\xfd\xba\x62\x00\x54\x93\x2b\xa1\x85" + "\x7a\x7e\x23\xaf\xb3\x46\x58\x61\x10\xb1\x2b\x89\xac\x17\x9b\x68" + "\xfa\x21\xd0\xfb\xe4\x15\x87\xc1\xe4\x22\x95\x8a\x8c\xb2\x61\xe2" + "\xb8\x34\xb2\xf2\x61\x1e\xf0\xdf\xb9\x2d\xa9\x54\xbf\xbf\x74\x41" + "\xfc\xc7\x47\x41\x44\x98\x4c\x1e\x08\xdd\x4a\x76\x04\x15\x66\x62" + "\x2f\xd6\x4b\x12\xb4\xc2\x30\xa1\x5c\xf2\xe4\x4f\xee\x60\xff\x44" + "\x37\xb5\x34\xea\x9f\x8b\xda\x5f\x55\xea\x3c\x2a\xf4\x56\x57\xf2" + "\x07\x84\xec\x44\x8c\xcb\x14\xc6\x64\xe7\x80\x06\x45\x90\x09\x9a" + "\xd3\x9f\xe1\xeb\xcf\x42\x63\x60\xff\xce\x2b\xa8\x48\x59\x51\x94" + "\x69\x46\x87\xc0\x31\x20\x74\x6d\x3c\x0a\x51\xe8\x84\xcf\xdd\x9e" + "\x03\xf4\x29\x51\x2a\xe2\xb6\x38\x8e\x80\x11\x89\x48\x57\x02\x0b" + "\x71\x07\x0d\x96\x0c\x4d\x47\xbc\xd9\xd8\x31\x4e\x01\x2e\xae\x2b" + "\xd1\x71\xbf\xe3\xdb\x43\xa7\x05\xe8\x0c\xab\x4a\xa4\x7b\x54\xd5" + "\xd0\x2c\x89\x3c\x44\xa3\x81\x15\x0b\x85\x7a\x24\xc8\x11\x8e\xab" + "\x80\x15\x4f\x55\x74\x52\x9b\x20\x40\xb4\xea\x1e\xf4\x5c\x40\xa1" + "\x25\x5b\xaa\x49\xd7\x4f\x97\x4e\x4a\xca\x78\xda\xe6\x22\xe3\xac" + "\x05\x2a\xa0\xc3\x1a\x39\xd7\xb0\x01\xbb\xd4\xcd\xf9\x02\x95\xb9" + "\x74\x7e\x31\xe4\x82\x86\xc2\x1a\x4c\x59\xe0\x26\x7a\xe4\xa9\xe5" + "\xe5\xde\xde\x66\x13\xa0\x3a\xbe\xaa\x52\x13\x36\x42\x6a\x32\xc7" + "\xf7\x98\x07\xb3\x63\x4e\x4e\xe1\x6c\xa1\x88\x11\x12\x7d\x70\x1a" + "\x0a\xe5\x04\x1b\x52\x98\xcf\xec\x10\x62\x60\xbe\x10\x20\x6a\xb6" + "\xb7\xb9\x4c\xa0\x50\xe2\x48\x2c\x30\x80\x17\x98\x98\x4f\x73\x81" + "\x28\xa8\x76\x90\x52\xe2\x38\x53\x8f\xdf\x3b\x69\x7e\x09\x09\x6c" + "\x91\x0b\x04\xf6\x51\xe0\x9f\x24\x69\x18\xcb\x13\x55\xcd\x1d\xfb" + "\x5a\x6f\x28\xd0\xb9\x6b\x64\xa7\x0a\x3a\xf8\xd8\xca\xe4\x1d\x20" + "\xdb\x3d\x41\xa2\x3f\x26\x85\x6d\x83\x3a\xbf\x47\xba\x7c\xa4\x84" + "\x74\x7e\xc4\x9b\xf3\xe6\x88\x07\x3c\x21\x15\x5b\xb6\x45\xad\xb8" + "\x17\x5c\x46\x30\x96\xb9\x8d\x4b\xa7\x42\x59\x64\x87\x12\x0b\xb8" + "\x09\xac\x22\xf6\x3f\x73\xa1\x2a\x41\x55\xda\xb2\x1d\xb6\xc5\xb6" + "\xd4\xd6\x1e\x3e\xdf\xb4\x9d\x50\xe0\x91\xf4\xfe\x01\x28\xbe\x45" + "\x18\x9c\x01\x8c\xf8\x5d\x9b\x23\x35\x00\xa0\x5e\xf4\xd2\xb4\x6d" + "\x9f\x54\xaf\x54\xaf\x82\x2a\xd0\x69\x51\x88\x6b\x2f\x11\x6b\x0f" + "\x26\x0b\x20\xc2\x03\x6f\x9e\xd9\x2c\xe2\x41\xc6\x1e\x33\xb5\xb2" + "\x82\xcd\x32\x71\xaa\xdc\xcd\x0e\x2c\x0e\x5a\xe2\xbe\xc3\x3e\x26" + "\x78\xc6\x00\x1b\xa0\xd3\xf2\x6d\x5c\xaf\x9d\xd0\x8e\x81\xe1\xa2" + "\x75\x70\xf2\x28\x12\x56\x93\x3b\x74\xb9\xf3\x16\x52\x27\x3f\x05" + "\x68\xb3\x39\x6c\xf3\xfc\x14\xf0\xc2\xd8\xa3\x85\xe3\xc0\x42\x0a" + "\x88\xe9\x11\x9a\xca\x6b\x8e\x35\xd4\xaa\xc4\x76\xd8\x68\xb4\x1d" + "\xd1\x1c\x2e\x47\x1b\x19\x65\x26\x41\xe9\x1e\x32\x49\xe5\x97\x99" + "\xfa\xca\x10\x9b\xf3\x5d\xd2\xeb\xf1\xc4\x1f\x49\x16\x6a\xeb\xf7" + "\xf3\xe2\x62\x15\x67\x57\x44\x47\x25\x30\xa5\x2d\x9f\xb0\xf3\x23" + "\x72\x94\x21\xb2\x1b\x8a\xc9\x88\x94\xae\xf9\x9a\x94\x25\xdf\x5a" + "\x4b\xe8\xb4\x78\xc6\x3a\xcc\x67\xdb\x22\x99\xa1\xc9\xc5\xca\xb5" + "\x80\x7b\xfb\xfb\xc1\xe1\xc1\x37\xec\x63\xe4\xee\xff\x66\x77\x5a" + "\xde\x10\xb5\x22\x1b\x52\x93\xcc\xe8\x29\xf2\x06\xfe\x70\x33\xf0" + "\x62\x8e\x6a\x94\xcd\xd0\x5b\x6c\x86\x81\xbf\xb0\x3b\x3b\xef\x41" + "\xde\xfb\xe0\x6c\x86\xf3\x60\x1e\x6d\x46\xf3\x99\x1f\x7a\x50\x60" + "\x0c\xb4\x68\x33\x0e\xe6\xf3\xd1\x66\x0c\x32\xcd\x66\x12\x3c\x2c" + "\xa6\x90\xfb\xca\xd9\x4c\xe7\x91\xff\x79\xe3\xcf\x40\xc8\xb2\x77" + "\xae\x9d\x0d\x2c\xa8\x84\x47\x9b\x00\x75\x39\x20\x9b\x6d\x66\x5e" + "\x74\xc7\x23\xc8\xfb\x66\xf3\xd3\x06\x6a\x9e\xc3\xac\x51\xa3\x0b" + "\xcf\x87\x9a\x16\x73\x74\x43\x8c\x36\xf1\xd4\x5b\xf0\x4d\x9c\xcc" + "\x17\xf0\x27\xf2\xef\x38\xca\xc1\xcb\xc9\x14\xdf\xe6\x77\x7c\x83" + "\x72\x14\x54\xf2\xce\xd9\x24\x91\x17\xc6\xd0\xed\xd9\x66\x89\xc8" + "\x46\x75\x2d\x43\x7f\x38\x1f\xd1\x6f\x12\x6f\x56\x9b\x15\x79\x8d" + "\xc1\x4f\x94\x6c\xee\xe7\xd1\x68\x73\x1f\xf9\x04\xcd\x27\xa8\xe3" + "\xd8\x71\xba\x47\x8d\x8f\xbd\x7d\xc6\x7d\x18\x20\x98\x83\xa3\xd0" + "\xdf\xdc\x44\xde\xe6\x66\xbe\xdc\x08\x46\xe2\x2c\x5c\x6c\x88\x73" + "\x76\xf6\x59\x02\xb9\xba\xc2\x85\xa8\xb7\x3f\x61\xa1\xaf\xa6\x46" + "\x51\x4e\x9c\x1c\x16\xf9\x15\x3e\x82\x76\xc5\x24\xe6\x92\xd0\xd1" + "\xc3\x12\xfa\x30\xab\xb3\x0f\xc3\xbc\x19\x4e\xf9\x26\xf2\x46\xfb" + "\x2d\xe3\x6d\xdf\x69\x26\x3c\x16\x2c\xf2\x80\x3f\x26\x3c\x00\x0f" + "\xd8\xb5\x72\x5b\x08\xe1\xa4\xc5\xf2\x89\x57\x7c\xc8\xfd\x15\x27" + "\x3d\x6f\xf1\x9b\x40\x72\xab\x57\x46\x55\xe8\x96\x34\x5c\x19\xf1" + "\x31\x0c\x3b\x16\x87\x11\x7e\xb0\x4d\x98\x80\x50\xac\x85\x3c\xbe" + "\x8c\xa4\xb7\x18\x43\x8b\x33\x63\x55\x18\x32\x56\xd7\xfa\x70\x71" + "\x7d\xf4\xfa\xb4\x6f\xed\x71\xd8\xd1\x62\x33\x63\xb2\xad\x39\xa2" + "\x7b\x15\xcd\xe0\x24\xab\x67\x3a\x4e\x46\x45\x44\x8a\x5a\x38\x5a" + "\x53\x3c\x04\xc6\x9d\x7c\xd0\x32\xb6\xdd\x07\x82\xb6\xce\x18\xb4" + "\xd8\xcf\x83\xd7\x14\x27\x32\xaf\x96\x03\xa8\x36\xcb\x36\x2f\x66" + "\x2b\xba\xb8\xa5\xb2\xa1\x0a\x94\x00\x30\xc8\x04\x88\x63\x1a\xed" + "\x3b\x68\x17\x15\x27\xae\xef\x33\x9c\x50\xec\xa5\x37\x21\x2d\xcd" + "\x35\xac\x86\x05\x1f\xb9\xb1\xf8\x72\x52\x68\xc4\x9d\x63\x7a\xe8" + "\xa1\x5e\x9b\xfc\xed\x40\xc0\xa6\x8e\x7a\xbe\xbb\xe6\x21\xda\x31" + "\x89\xd1\x38\x64\xcf\x9f\x90\x26\xa9\x05\x81\xae\x27\x38\x5a\xa4" + "\xc7\x6f\xcb\xdf\x3c\x59\x97\x87\x08\xd2\x21\xda\xc2\x45\x1b\x4e" + "\xd0\x34\xde\x98\x3e\x45\x94\x85\x58\x89\xbb\x13\x61\x88\xaf\x4e" + "\x4f\x68\x23\x42\x35\x83\x34\xc3\x41\x4b\xe7\x98\x4c\x9c\x77\x6c" + "\x34\xe2\xb0\x68\x16\xa1\x52\x65\x1f\xf8\x23\xbd\x63\x81\x7a\xdd" + "\x13\x6c\xe9\x66\x13\x02\xa7\x10\x6b\x9f\x6c\xa0\xe0\x96\x30\xb7" + "\xb6\xc2\xb9\x74\xe5\xdc\x6c\xc4\x77\xec\x5a\xee\x05\x45\x73\x4b" + "\xda\xd4\x0c\x41\x62\xcc\xb9\x60\xb5\x29\x5f\xae\x65\x80\x64\x65" + "\x80\x10\x0a\xab\x05\x01\x48\x27\x56\xf0\xb6\x44\xc1\xf9\x7d\x28" + "\x1d\xbb\x3d\xe2\x12\x3b\x1e\x3a\x27\xa1\x8d\xb6\x35\x0f\x47\xf3" + "\x25\xcc\x05\x10\xdd\xe1\x9d\x85\x25\x21\x65\x10\x88\xd7\xd6\x70" + "\x87\xb2\x0c\xa7\x5e\x38\xe1\xe8\x53\x80\xef\x7e\xb8\x58\x26\xd8" + "\x33\xe2\x3e\x80\x1a\x7a\x40\xf5\xf1\xa3\x6f\x87\x34\xac\x4e\x47" + "\x56\x3d\x06\xb2\x14\xcb\x4a\xe9\xd9\x0f\x75\xb3\x83\x60\x19\x99" + "\x9f\xe6\x50\x67\x8b\xfb\x82\xbc\xc4\x0e\x7c\x19\x02\xc3\xea\x03" + "\x61\xfd\x74\x39\xb6\xad\x86\x85\x8e\x68\x8d\xc3\x7a\xfd\x63\x64" + "\xe4\x89\xb5\x55\x7e\xe2\x33\xab\xb1\x5b\xb7\x9c\xfc\xd0\xb5\xb0" + "\xc7\x52\x68\xf0\x94\xdd\x3b\xc0\x40\x0d\x8b\x9e\x30\x09\x91\xea" + "\x97\xdf\x85\xb6\x7b\xe4\x20\xa1\x52\x8f\xbd\x05\xe0\x25\x4c\x10" + "\x83\x8f\x3d\xd7\x4b\xd3\x08\x31\x8d\x7c\x82\xb1\x44\x73\x06\x13" + "\xe3\x2f\x02\x10\x03\x49\x33\x07\x6b\x84\x7e\x81\x6d\x14\xd6\x24" + "\xc4\x41\x8a\x29\x02\x2e\x23\xcc\xb8\x8c\x32\x6d\x0b\x9c\x75\x20" + "\xb9\x20\xd1\x00\xac\x2f\x59\x56\x0f\x47\x90\x33\x55\xd9\x81\x71" + "\x41\x19\xb8\x00\x93\x89\x2f\x5a\x0e\xff\x73\x50\xa8\x6e\x76\xf2" + "\xb5\x3f\x02\x57\x2b\x9f\xd3\x75\x73\x59\x10\xea\x50\x2c\xf4\x7a" + "\x7d\x47\x3e\xe1\x52\xe8\x00\xa0\xf4\xe2\xca\x44\x56\x4d\x80\x61" + "\xd2\xb3\xe5\xc3\x3c\x1f\x2d\x37\x8c\x6a\xb2\x4a\x61\x71\xaa\x76" + "\x8c\xef\x62\x5e\x44\x43\x7e\x96\xec\x9a\x59\x94\x5d\x90\xeb\xa7" + "\x36\x99\xc8\xec\xee\x0a\x92\xe3\xfe\x1c\x01\x6d\x82\x6d\x34\xd4" + "\x1a\xa3\x30\x24\x8d\x51\x44\x1a\xa3\x3c\xf7\x19\xe2\x2a\x0d\x6d" + "\x69\x64\x33\x14\xf9\x23\xcc\x2f\xac\x45\xda\xaf\xaa\xcc\x46\x22" + "\xf4\xe9\x08\x4d\xb3\x11\x41\xc1\xc4\x61\x39\x6f\x87\x6a\x62\xb9" + "\x8e\x07\xa1\x57\xa4\x49\x22\x48\x60\x5f\x09\x4c\x70\x25\xb1\x20" + "\x23\x05\x81\x0d\x49\x8e\x7c\x00\x6d\x90\x09\xca\xde\x40\xf1\x19" + "\x99\xed\x30\x72\x10\x9d\xec\xb5\x25\x33\x08\xe7\x6b\xfa\x28\x1e" + "\x5b\xb9\x92\x46\x29\xf5\x01\x8f\x83\x29\x99\xce\x85\x91\x1c\x6b" + "\xab\xe9\xdc\x5e\x25\xf4\x0b\x3c\x3e\x27\xfb\xd6\x7a\x5d\xe2\x43" + "\xc6\x81\x4c\xbd\xf8\xf2\x3e\x54\x98\x21\xac\xd8\x38\xcb\xec\xb9" + "\x3b\xfa\x50\xb9\xc5\x49\xfa\x7b\x1b\xc2\xe6\xf4\x89\xc2\x7b\x40" + "\xbb\x29\xfb\x81\xe7\xdf\xbf\xcf\xbf\xb7\xf7\xbf\xde\xf9\x3f\x6a" + "\xb5\xaf\x6b\xaf\x94\x25\x3a\xa9\xf9\x9b\xbf\xc7\xb5\xd5\xdf\x9a" + "\xdf\x34\x5f\xd4\xec\x69\x92\x2c\xe2\xd6\xfe\x3e\x6c\x6a\xda\x5c" + "\x1d\xd9\xf2\x7d\x87\x0a\x1e\xcf\x17\x0f\x11\x72\xa3\xb5\x17\x07" + "\x87\x87\x8d\x17\x07\x2f\xbe\xa9\xdd\x4c\xb9\x51\xe1\xd1\x32\x01" + "\x2e\x36\x36\x6a\xf2\x93\xe9\x72\x40\x75\x24\xf7\x83\x78\x5f\x57" + "\xbb\x3f\x81\x3f\xd3\x18\x8f\xb9\x60\xbf\x1b\x2c\x81\xc9\x8c\x45" + "\x2b\xef\x7c\xe0\xb1\x63\x3e\xaa\x11\x53\x5a\x3b\x3f\xbb\x79\x4e" + "\x75\x03\x98\x94\xfd\x19\x30\xc2\xfb\xef\xce\x8e\x4f\x2f\xae\x4f" + "\xa9\xb2\x7d\xda\x17\xc3\x6c\x4e\x86\x06\xbf\x11\x87\xa8\x4e\x09" + "\xdd\x43\x96\x17\xf5\x0b\x56\x13\xbc\x29\x07\xd1\x8d\x50\x65\x68" + "\xff\xc2\x4a\x21\x5a\x42\x2d\x88\x89\xaa\xd7\x28\x28\x09\x9f\xc0" + "\x75\x88\x13\x6b\xa3\xca\x3c\x6c\x8a\x64\x99\xd7\xd1\x41\x24\x42" + "\x12\x34\x7d\x71\xd2\x33\xa4\xfc\x31\xac\xec\x21\x49\xc4\x80\xef" + "\x32\xb0\x45\x66\x5d\x7d\x6b\x4c\xe1\x9c\xc7\xe1\x57\x49\x0d\xb0" + "\x65\x7e\x5f\x9b\x01\xc3\x0d\xcc\x87\x07\x8c\x55\xc8\x81\x1d\x88" + "\x13\xe4\xba\x6a\x80\x51\x35\x29\xd3\x34\x61\xb6\x60\x60\xf5\x37" + "\x3c\xdb\x11\x24\x1f\xcf\xc0\xec\xa1\x30\x97\x77\xd0\x30\x3e\x6d" + "\xea\x03\xb6\x94\x6c\x69\xed\x98\x94\x2c\x13\xd1\xb9\xec\x24\x49" + "\xf6\x10\x29\x93\xe8\x08\xfd\xc4\xd8\x65\x32\xa4\x8a\xf8\x0c\x64" + "\x15\x51\x06\xbb\xa8\x0a\xe4\x43\x4e\x78\xd9\x38\x78\x4a\x9d\x10" + "\x3b\xcc\xa3\x51\x00\xc2\x70\x80\xf5\xcb\x74\x1f\x98\x51\xe0\x46" + "\xed\xef\x91\xf1\xfb\x5e\xcf\x10\x2d\x8b\x9f\x0b\xcb\xe0\xf2\xc9" + "\x65\x40\xd4\xff\x3f\x7f\x1d\xcc\x8d\x75\x10\xf1\x6c\x1d\xcc\x71" + "\x1d\xcc\x9f\x5c\x07\xe8\xe4\x94\x47\xff\x30\x0b\xb8\x62\x91\x2c" + "\xe9\x63\x32\x0f\x47\xb0\x93\xb9\x53\xf7\xa5\x3d\xad\xd7\x65\x34" + "\x8b\xe3\xeb\x6b\xf3\xb9\xc9\x63\x90\x94\x91\x82\x4f\xdd\xa9\x66" + "\x81\xf6\xff\x62\x77\x7f\xfb\x35\xb6\xfe\xf2\x55\x6f\xcf\x01\xf9" + "\xd0\x5e\xb1\x89\xe3\xbe\xbc\xfd\xcb\xee\x3a\x2b\x63\x4f\x1c\x3a" + "\x82\x9c\xa2\xc7\x28\x34\x32\x95\x44\xff\x76\x77\x3d\x4d\x6f\x5b" + "\x25\xb2\x9a\xcc\xaf\x89\xa1\x16\x04\x75\xea\x48\x9f\xfd\xfd\x5f" + "\x63\x1b\x03\x5a\x60\x4b\xbe\xd3\x3d\xec\xe5\xd9\x2e\x16\x60\xdd" + "\xeb\xd1\xbc\x36\xdd\x73\xcf\x41\x92\x6f\xa2\xcc\x1e\xd9\xf4\x88" + "\xe6\x1d\xb0\x56\x9c\xaf\x0f\xf9\xdf\x9d\xf6\x3d\x30\x21\x59\x88" + "\x21\x23\xe2\xcc\xab\x87\xb3\x11\x34\xa8\x15\x23\xd3\x94\x2d\xa9" + "\x56\x5c\x03\xd3\xcc\x79\x11\x30\x7a\x9d\x0d\xdf\xc9\x52\x98\x81" + "\xb4\x56\xcc\x48\xe4\x81\xf7\xd0\x9a\xa4\xae\x1c\x42\x68\x04\x25" + "\xd5\x25\x70\x35\xd7\x18\x7c\x05\x9a\x91\xab\xe8\xde\xbd\x58\xce" + "\x06\x3c\x6a\x2e\xbc\x28\xe6\xaf\x81\x6d\x4e\xec\x95\xc3\x8e\x2b" + "\x92\x27\x0a\xb2\x9d\x7b\xe0\x33\x8e\x3b\x07\x2d\x7b\xe5\xae\x94" + "\xf7\x15\xb3\xc8\x65\x66\xe2\x4e\x0a\x29\x76\x55\x03\x7b\x55\xd5" + "\xe3\x00\x7d\x03\x04\x63\x4c\xbd\x9e\x16\x42\x9a\x64\x51\x52\x62" + "\x07\x32\x2d\x30\xd3\x0e\x9a\xae\x89\x7d\x75\xba\x03\xdc\x2b\x4d" + "\xa6\xd5\xd9\x39\x6c\x29\xf9\x7f\xda\xfc\x9d\xe2\xd9\x08\x0d\x00" + "\xa2\x0f\xaa\xff\x98\xfe\x8a\xe2\x15\x1e\xa1\xe3\x77\x87\xf5\xb1" + "\xd2\x05\x8c\x4e\x47\x95\xeb\x60\xfe\xd6\x54\xed\xde\x53\x53\xe0" + "\x9a\xea\x48\x42\x9d\x2d\xc1\x73\x3c\x9c\x4f\x61\x2f\x36\xd3\x53" + "\x89\xf5\x6f\x36\x53\x9a\x94\xc0\x87\x42\x57\x90\x19\x68\xa8\xac" + "\x0d\x49\x57\xd1\x67\x70\xe5\x56\xcc\x20\x56\xa0\xb6\x7f\x62\x36" + "\x31\x7c\x4c\xec\x0f\x7c\x18\xfd\x07\x12\x1f\xc4\x7b\x00\x9c\xe2" + "\x04\x96\xcd\x30\x98\xc7\x28\x48\x00\x8b\x90\x78\x7e\x10\xb7\xc2" + "\x79\x62\x77\xa1\x7c\xd8\x73\x44\x84\x9e\x9d\x89\xc2\xb2\x15\xb9" + "\x5b\xc1\x5e\x32\x55\x6b\xf6\xde\xac\x21\x5e\xce\x66\x68\x13\x45" + "\xa5\x00\x1b\xee\x71\x22\xa1\x27\x18\x7a\x0b\x0a\x4d\x36\x9b\x7b" + "\x29\x86\x14\x9d\xf0\x6a\xab\x94\xed\xaa\xa9\xcb\x86\x1f\x0a\x61" + "\xd9\xe6\xe9\xbb\xd3\xf3\xd3\x8b\x9b\xfe\xc5\xe5\xc9\x29\x7e\x27" + "\xb6\x14\x43\xf2\x34\xa5\x61\x4e\x8c\xea\xf1\x18\xa5\xe9\x11\xb0" + "\x38\x3b\x07\x7a\x62\x9a\x2a\x99\x98\xab\xec\xb5\x35\xc5\xdd\xe3" + "\x28\x11\xd4\x92\x9b\xc5\x71\x06\x61\x0c\x2b\xbf\xa1\xac\x47\xce" + "\x47\x16\xbb\xd1\x33\xa7\x67\x59\x3d\xc8\x95\xdb\xf4\x92\x04\xa4" + "\x89\xeb\xa9\x07\x8b\x4d\x9b\x5d\x48\xa7\x35\x0d\x20\x34\x75\x05" + "\x74\x17\xfb\x69\x1e\x2f\xaa\x01\x5e\xb9\xb9\x2c\x99\xdb\xd4\x4a" + "\x6f\xbe\xa8\xbc\xa2\x36\x30\x53\x67\x45\x88\xa5\xc6\x75\xba\x25" + "\xd7\x14\x06\x20\x9b\x9c\xce\x8d\x6d\xbe\x0a\xdc\x84\x3d\xcf\x45" + "\x17\xbd\x75\xca\x1e\xe4\xd2\x9b\x8f\xc7\xb0\x81\xbf\x21\xbb\xb0" + "\x94\x9d\xd0\x67\x49\x4b\x7e\xff\x01\x51\x1c\x28\x80\x1e\x0d\xb4" + "\x3c\x29\x0e\x32\x70\x8a\x8d\x41\xdc\x08\xe7\x0d\xb1\x8e\x60\xb2" + "\x72\xe5\xc5\xa2\x78\x8d\x16\xc9\x9f\x25\xe9\x94\xb5\x01\x2b\x3f" + "\x7a\xa0\x53\x1c\xc4\x60\x94\xe3\x71\xb5\x75\xec\xd7\xda\x58\x55" + "\x67\x2d\xc7\x6c\x3a\xb9\x3c\x97\x86\x31\xef\xa0\x20\x4c\x24\x85" + "\x6f\x32\x22\xca\xad\xd0\x5b\xf5\xb5\xb3\xa2\xd3\xdc\xd7\x42\xd1" + "\x8e\x6b\x74\x0a\x09\xec\x23\xf5\x73\xeb\x2c\x8f\x7c\x52\x6e\x44" + "\x49\x60\xb1\x01\x01\xfd\x99\x5c\x1b\xf5\x04\x9e\x88\x63\x86\x95" + "\x9a\x52\x5c\x75\x17\x47\xe7\xa7\xec\x1e\xe8\xe4\x38\xec\x4e\x7a" + "\x6d\xf9\x0b\x1f\xc4\x38\x9c\xa1\x0e\x76\x0c\xbb\x19\x93\x5f\x9a" + "\xc7\x99\x61\xa9\x3b\xd5\xa9\xe1\x1c\xd2\xc7\x81\x3f\x4c\x08\x46" + "\x5b\xd5\x73\xcf\x4a\x35\x91\xe2\x8d\x9d\xba\x36\x94\xc6\xf1\x05" + "\x28\x30\xf6\x54\x46\xc0\x32\x13\xdd\x29\x46\xb4\x59\x39\xad\x09" + "\x3b\xa2\xec\x90\x77\xe7\xc0\x91\xd8\x3e\x71\xd6\xa7\xb8\x51\x28" + "\x96\x4e\x92\x81\xbf\xc1\xe6\xb0\x44\x12\x7e\x8f\x3b\x51\xed\xda" + "\xd5\x54\xea\xca\xb5\xd7\x20\x8a\xa1\x8a\xeb\x3c\xc5\x5a\xce\xd1" + "\x70\x15\xa8\xee\x35\x9e\x41\xae\x9a\x82\xaf\xcb\xcf\x58\xcc\xae" + "\x1c\x86\xcd\xa0\xe8\x55\x9e\x50\xfa\x6c\xd8\x5c\xd3\x70\x5f\x6f" + "\x36\x38\xc8\x29\x3b\x86\x7f\x77\x12\x70\x76\x9f\xcd\xc4\xb1\xab" + "\x48\xb3\x04\x71\xaa\x25\xf6\x95\x5e\x56\xd7\xa4\x5f\xe9\xec\x4c" + "\x80\x7c\x01\x95\x3f\x6e\x1c\x02\x9d\x47\x62\x6f\x5f\xef\xb9\x93" + "\xce\x61\xab\x71\xc8\xee\x09\x78\x48\x38\x76\xfe\xcf\x63\xe0\x21" + "\xba\xb4\x9f\xcf\xbc\x4f\xf6\x01\x13\x8f\x7e\x68\x5f\x33\x28\xeb" + "\x38\x3d\x3a\x4f\x15\xf2\xfa\xf7\x34\x23\xef\x83\x25\xc6\x2f\x1b" + "\x80\xc8\xcf\x3f\xf1\x21\x2c\x0c\xf7\x34\x7b\x3e\x1a\xc3\x7c\xdd" + "\xe8\x2d\xdb\x3d\x82\x4f\x50\x76\x94\xad\x5d\xf7\x86\x85\x06\x7f" + "\xe0\xf6\xc5\xeb\x05\x08\xbc\x47\x64\x53\xab\x3e\xdc\x89\x0f\x37" + "\x25\xa6\xe0\x35\xf0\xe8\x2a\xd3\x52\x64\xfa\x70\x76\xe2\x06\xe2" + "\x51\xe0\x8d\x7b\x82\xbe\x0d\xf1\x89\x24\x7d\xee\x2e\xbd\xaa\x52" + "\x0b\x7a\xbb\xba\x79\xe7\x7e\xa4\xa7\x1f\xc5\x8e\xe2\xce\xe0\x2d" + "\x9c\xcf\x17\xee\x25\x3c\x40\x83\x85\x75\xe7\x7e\x86\x64\xda\xdc" + "\xd5\x5e\xe8\x7a\x90\x12\x71\x60\x8b\xee\xdd\x07\x78\x4c\xe6\x48" + "\xf7\xdd\x21\x3e\x02\x73\x3c\x31\xc7\xe2\x34\x1c\xb9\xe3\x2d\x1a" + "\x90\x90\xc9\xf3\x17\xc5\xa8\xdd\x78\x13\xb6\x16\x4a\x67\x4b\x08" + "\xcb\x64\x83\x9a\xda\x97\x1c\x78\x79\xc5\xea\x03\x07\x98\xbd\xa4" + "\x65\x9e\x9e\x34\xbb\x0d\x90\x84\x46\x01\xb0\x25\xff\xf1\xbc\xbd" + "\x67\xf0\xf6\x81\xc1\xdb\x7b\xc8\xdb\x7b\x5f\x24\xe3\xa2\x68\xb0" + "\x8d\xd1\x8f\xdc\xfd\xee\x6f\xcd\xde\xd7\x76\xc7\xfd\xb5\xd9\xfc" + "\xda\xf9\xb5\xb9\x69\x7e\xbd\xcf\x7c\x77\x1f\x5f\xf7\x59\xec\xee" + "\xb7\x5a\xbf\x8e\xf6\x76\xf7\x41\x02\x58\xa7\xb4\x5a\x87\xae\xa2" + "\x27\x81\xbb\xc6\xc0\x94\x9c\x0c\x8b\x5b\x16\x3d\xe3\x21\x96\xc5" + "\xe8\x31\xe0\xde\x8a\xab\xe4\x65\x62\x21\xbb\x8c\x4c\xe2\x35\x08" + "\x85\x5d\x4b\x68\x74\x99\xa5\x95\xbb\x4c\xe4\x5c\x2e\xd4\x13\xaa" + "\x89\xe9\x08\x86\x4c\x05\x01\xdb\x97\xea\xcb\xfd\x94\x73\xa0\xf1" + "\xb8\x9b\x9c\xe3\xfb\xf5\x30\x9a\x07\x81\xfa\x2a\x40\xc8\xda\x95" + "\x8f\x48\xdb\xe0\x59\x68\x0f\x61\x27\x8e\x12\xfd\x46\x22\x8e\x05" + "\x92\xb2\x6c\x12\x9e\x16\x11\x8f\x63\xf1\x48\x10\xcd\x23\xe4\x04" + "\x69\xd1\x4a\xed\x33\xb3\x92\xf9\x72\x38\x55\x35\xd1\x8b\x6c\x83" + "\x9e\x45\xa5\xf4\x28\xce\x4a\xe0\x4d\x9e\xe9\xc9\x66\xe4\x9b\x2c" + "\x24\xdf\xa8\x35\xf9\x4c\x23\x98\xbd\xea\x6a\x26\xc0\xe4\x2d\x01" + "\x40\xd9\xb4\x7c\xd5\x70\xc9\x77\x01\x80\xd0\x79\x33\x8b\xf4\xdb" + "\x30\x9a\x2a\x13\x14\xe7\xd9\x08\xe0\xc3\x72\x80\x01\x45\x65\x09" + "\x0c\x1f\x6a\x69\x45\x38\x93\x91\x18\xad\x65\x28\x1f\x06\x74\x18" + "\xa8\x5f\xa1\x36\x90\xea\x69\xa8\x09\xe2\xf2\x3e\x6f\x11\xdf\x40" + "\x26\x29\x1a\x06\x19\xc1\xd1\xf2\x06\x73\x31\x1b\x62\x1e\x7b\x86" + "\x8d\xe7\xd8\x1e\xb0\x53\x8d\xfe\xa7\xf5\x3a\xc8\x85\xa7\x69\xab" + "\xb5\xbb\x1e\xee\xed\xa5\xb7\x9b\xcd\xa0\xb9\xf4\xc5\xa6\xb4\xd9" + "\x60\x92\x2e\xb9\xb0\x07\x0a\xcd\x4f\x5d\xa8\x46\x6f\x2c\x59\x09" + "\x20\xf7\x5e\xf7\x14\xdd\x35\x4e\x7b\x9b\x0d\xb0\x57\xf8\x60\x18" + "\x8b\xe6\xda\xce\x6c\xc6\xed\x3b\x9d\xf8\xd1\xbe\x63\x6b\x54\x62" + "\x4c\xa0\x5f\x37\x62\x6f\x1d\x00\xe7\x72\x04\x34\x97\x5f\x8e\xc7" + "\xf5\xfa\x67\xe4\xd5\xa0\xa2\x3b\x71\xc2\x73\x0a\xbb\x29\x86\xc5" + "\x0c\x1e\x20\xad\x7b\x07\x9b\x52\xd6\xde\x0c\xdb\x63\x47\xe5\x16" + "\xef\xec\x69\xc6\x85\x0e\xca\xb1\x7c\x4f\x1d\x15\x31\x47\xed\xef" + "\x20\x5a\x4e\xdb\xb0\x73\xa2\x88\x40\x87\xec\x28\xf7\x19\x7c\x65" + "\xc6\x70\xdd\x23\xc3\xb5\x42\xcb\x40\x14\x09\xb4\x80\xf1\x11\x76" + "\xed\x62\xc7\x26\xd0\xb1\xbb\x52\xc7\xa6\xb2\x63\x00\x38\x74\x5b" + "\x74\x6d\xc2\xba\xd3\x5c\xd7\x76\x45\xd7\x84\xc8\xa1\xfa\x97\x0f" + "\xde\x30\x70\x68\x7b\xb5\xef\xdc\x97\x77\x24\xdc\xe3\x76\x07\x20" + "\xc1\x9c\xdf\x35\x25\x24\x78\xf4\xa7\xf6\x2b\xd7\x3d\x32\x83\xba" + "\xa9\xb1\x13\xbd\xba\x53\x1a\xe2\xd3\x4c\x20\x64\x53\xf7\xae\x73" + "\xd4\x02\xb9\xe5\x88\x08\xd9\xca\x7d\x6d\x60\xc5\x92\x94\x58\x2b" + "\x90\xfc\x40\x6a\x1e\x38\x30\x37\x0c\xf8\x16\x03\x1b\x2e\x45\x0b" + "\x0c\xd2\x85\xc5\x90\x6c\x60\x47\x37\xb0\xd9\xec\x0c\x94\x0e\x0c" + "\x1a\xe8\x12\xd7\xd3\x73\x6f\x6c\x2a\xe6\xb4\x4f\xf1\x40\x0f\x0f" + "\x3d\x26\xae\xed\x73\xf7\xa5\xa6\xc7\x23\xa1\x47\x1b\x61\x00\x56" + "\x18\xee\x91\x18\x6f\x60\xa4\xf3\x09\x30\x97\xa3\x66\x7e\x4e\x90" + "\xcd\x2f\x24\x65\x92\x58\xa1\xb8\xd2\xcf\xd5\x7c\x6e\xf8\x54\x8f" + "\x70\x6f\x00\xd9\xbe\xad\x58\x33\x5c\x37\xec\xda\x3d\xee\xde\xc3" + "\x9a\xb0\xf1\x07\x28\xbf\xc3\xae\xdc\x5d\xe0\xa4\x26\x6c\x05\x43" + "\x28\x02\x96\x00\xc8\x57\xce\xfa\x4a\x22\x84\x7b\xa5\x31\x63\x9a" + "\x67\x49\xcf\x61\xf5\x4d\x00\xeb\x95\x5a\x28\xc2\x50\x55\x0e\x7b" + "\xeb\xae\x3a\x88\xf1\x47\x6c\xe2\xb4\x70\xa9\x4d\x9c\xf6\xdb\xaa" + "\x89\x56\x2d\xb2\xb7\x19\x5a\x4c\xe0\x45\xb6\x3b\x85\x47\xbd\xa0" + "\xcf\xd9\x75\xf7\xbc\xe7\xbe\x65\x83\x32\xaf\x7a\xcf\xde\xb2\x95" + "\x81\x32\x0f\xe6\x84\xaa\xd5\xb5\x6b\x9f\x76\x8f\x7a\x94\xd6\x46" + "\xd6\x78\x50\xc9\x15\x1f\x01\x47\xbb\xb3\x33\x75\x98\xd0\x5f\xd6" + "\xb0\x4c\x77\xa5\xc1\xe8\x99\x96\x8d\xaa\x15\xd5\xc6\xd4\xc5\xdc" + "\x48\x6e\xb2\x20\x3d\x88\x2a\x3d\x40\x26\xb9\x22\x38\xf2\x17\xb0" + "\x24\x80\xeb\x5e\x35\x65\x68\xe8\x18\xa8\x4e\xbd\xae\x60\x9e\xe8" + "\xa1\x80\xc7\xf2\x98\x99\x11\x2e\x91\x0c\x2a\xca\xe7\x0e\xf4\x2c" + "\xf8\x38\x0b\x2c\xe8\x0e\x00\x94\x81\x9c\xa9\xcf\xee\x1a\xb0\x51" + "\xc3\x9b\x61\xfc\xce\x21\x70\xf2\x30\xde\x95\xdf\x0e\xf0\x1b\x91" + "\x02\xf9\xed\xc9\xc5\x21\xfa\x4c\x62\x41\xb6\x3c\x40\x08\x43\x6a" + "\x75\xca\x0c\x14\x9c\x08\xb2\x7c\xe5\x9e\x36\x69\xb3\x53\x91\x99" + "\x85\x62\x43\x36\xb2\x22\xdd\x10\xad\x20\x33\x44\xcc\xb5\x52\xd8" + "\xa8\x56\x71\xec\x8e\x11\x83\xd9\x54\xe3\xb0\x44\x54\x42\xe5\x8c" + "\x26\x9e\xd7\xb2\xb9\xa0\xba\x8e\x1d\xe7\x84\x4a\x9f\x03\x1e\xc7" + "\xc0\xae\x70\x1b\x24\x0a\x63\xfe\xce\xd9\xdb\x8a\xf9\xbb\x76\xd4" + "\xa4\xbf\x73\xcf\xf5\xc8\xc7\x38\xf2\x6d\x7b\xe7\x7e\xb3\x39\xcd" + "\x66\xf7\x9d\x23\xa7\x17\x41\xcc\x30\x9d\xbd\xad\x9c\xde\x94\x49" + "\xa6\x5c\x91\xbd\xa7\xc6\x5c\xa8\x3b\x14\x71\x34\xc4\x0b\x1b\xc4" + "\x26\x20\x84\xb0\x2f\xad\xdc\x53\x54\x28\x11\x6d\x9c\x08\xb3\xb4" + "\x7b\x14\x0c\x8f\xf1\x0f\x89\x91\xb0\x20\xee\x88\x7c\xdd\x35\x85" + "\xa6\x8f\x88\xfe\x1d\x92\x6e\x05\xce\x04\xe7\x71\x67\x52\x69\xae" + "\x61\xa3\xde\x92\xbe\x9d\xcd\x66\x7c\xe4\x03\x69\xaa\xcc\x74\xed" + "\x4e\x2a\x8c\x3a\x6c\x4d\xa3\xae\xdc\x8f\x86\xb6\xf1\x94\xad\x07" + "\x64\x85\x12\xb7\xee\x59\x21\x16\x33\x80\xa7\xc5\xc9\x7a\xfd\xaa" + "\xb9\x10\x95\xc9\xaa\x11\x9e\x7a\x7d\x50\xd0\x63\x82\x40\x7b\x55" + "\x32\x5b\x81\x9d\x14\xfe\x2f\x97\xbf\x4a\x8d\x03\xc2\x8f\x38\x19" + "\x48\x2c\x33\x7d\x46\x17\x30\xbb\x02\x31\x4e\x1d\x0a\x7a\x30\x00" + "\x42\xe0\xde\x49\xf7\xa6\x2d\x06\x44\xb0\x36\xaa\xac\x86\x32\x91" + "\xe0\x0e\xd5\x09\x6a\x81\xab\x87\xcf\x28\x60\xfd\x8c\xa7\x29\x3f" + "\xe7\x4f\x53\x3e\x16\x4e\x53\x78\xf2\xd4\x69\xca\xcc\x0b\xfd\xc5" + "\x32\xc0\x28\x60\xff\xf9\x72\xd7\xd0\x90\xbb\xde\x18\x06\x40\x43" + "\x94\xbb\x86\x7f\xee\x6c\xd1\xf0\xe8\x11\x07\x67\x64\x0c\x93\x44" + "\x4b\x6e\x65\xce\x42\x2a\x59\xe8\x36\x33\x3d\xb3\x4c\x17\x6a\x79" + "\x28\xaf\xc5\x6b\x5b\x6f\xeb\xfa\x9b\xae\x44\x59\xf4\xe0\x5a\xb6" + "\xb6\xe8\x3d\xe3\x8c\x5c\xa8\x1c\x71\x1b\x91\x53\xbe\x7c\x7f\x7d" + "\x79\x21\x34\x05\x36\xfa\xb4\x8e\xf8\x87\xab\x33\x6d\x55\x47\xaa" + "\x7e\x81\xbe\xaa\x6c\x6a\xba\x0d\x65\x87\x8a\x99\x61\xcc\xbe\x30" + "\x31\x9c\x80\x44\xf9\xf2\x16\xa3\x9f\xe6\x4f\x6a\xd2\x5b\x85\xcd" + "\x78\xea\x7a\xe2\x25\x5e\xa6\xb6\x14\x61\x49\xd7\x68\x02\x62\x68" + "\x85\x6f\x95\x32\x73\x77\x4d\xf7\x44\xdc\x42\x1e\x75\x48\x59\x2a" + "\x8f\xa5\xc5\xa7\x47\x2a\x10\x87\xa2\xb9\xb2\xb1\x9c\x33\x1d\xcc" + "\x0f\xb6\x6f\x75\xce\x09\x3b\xd4\x30\x17\x9d\x2c\x6e\x62\x8d\x00" + "\xa4\xa3\x62\x45\x04\xee\xcb\x20\xb7\x85\x0d\x62\xd4\x6f\xef\x14" + "\x13\x8f\x85\x97\xa8\xb9\xb7\xd4\x02\xdc\x8d\x86\x22\x8c\xd7\xd2" + "\x0d\xb2\x81\xfc\x0d\xb0\x9a\xf6\x92\xa5\xbb\x6c\x82\x50\x15\x1d" + "\x25\xf6\x41\xc1\xde\x68\x6f\xa9\xf6\x2b\xb6\x54\xfb\x21\x88\x39" + "\xcb\x9e\x1b\x66\x60\x76\x83\x9e\x26\x21\x5e\xb9\xef\x62\xdc\xb4" + "\x9f\x61\x9c\x57\xca\x97\x47\x4f\x1e\xe6\x22\xc7\x09\xf4\xe5\x11" + "\xa5\x8e\xa0\x6b\xff\xf9\x54\x25\x30\xa8\xca\xb5\x41\xba\x03\xa4" + "\x2a\xc1\x17\x51\x15\x24\x4a\xac\x4a\xa5\x43\xb1\xc9\xf1\x34\xa6" + "\xe6\xaf\x51\xca\xf6\x87\xe8\x19\x5b\xd3\x5b\xd5\x5a\xa1\x6d\x5a" + "\xfe\x8a\x9a\xbe\x2d\x39\x50\x3d\x4e\xbe\x15\x79\xdf\xdb\xaf\x7e" + "\x99\x2f\x6b\x53\x6f\x45\xd7\x2c\xf8\xb3\x85\xd0\x46\x92\xcb\xad" + "\x2c\x2c\xdc\x62\x6b\x16\x56\x60\x31\xba\x7e\x81\x7b\xc3\x69\x4d" + "\x5b\xd4\xee\x7c\xe5\xa4\x7d\x3a\x36\x43\x24\xb0\x33\x0c\xf3\xa4" + "\x63\xc5\x8c\x83\xd4\x22\xbe\xc2\xe2\xa2\xdb\x3b\xe4\x17\x81\x37" + "\xa4\xa0\x3d\xc7\x4c\xf8\x4d\x7c\x41\xa2\x76\x3c\xe5\xc3\x3b\x5d" + "\x2b\xf3\xd2\xaa\xfc\xba\xb1\xb4\xd4\x0e\x92\x18\xa5\xe0\x8a\x32" + "\x55\xab\x3d\x74\x3a\xc4\x37\xe5\xd7\xc6\x90\x34\x54\xb4\x68\x5b" + "\xfa\x76\x99\x75\xb3\xd9\x14\x36\xa3\xd9\x61\x41\x53\x0e\x36\xc3" + "\x6f\x82\xf6\x06\x6e\x76\x26\x1a\x40\x69\xfc\xf4\x64\x8b\x31\xba" + "\x07\x89\xbc\xb2\x1a\xcf\xa8\xc6\xc3\x5d\x3c\x2d\x8f\x03\x50\xa8" + "\x6d\x00\xe1\xec\x9b\x2c\x4b\xc0\x96\x15\x2c\xcb\x50\xf3\xb2\x63" + "\xd7\x03\x82\xc1\x16\xb9\xc1\x19\x3b\x1d\x4b\x99\xd9\xb7\x22\xa9" + "\x3d\x86\x54\x3a\xb6\x34\xe2\xfc\x2f\xa5\xc1\xf6\xc2\x31\xbc\xc4" + "\x31\xaf\xf4\x5e\xde\x5d\x97\xc0\x44\x0c\x82\x0a\x3f\x00\x77\xa8" + "\xf6\x88\x56\xed\x92\x3c\x90\x6b\x16\x46\x9c\xb7\x6a\x32\x32\xe3" + "\x88\x02\x9d\x60\xe2\x02\x12\x61\xb0\x6a\xb0\x70\xc8\x56\x50\x7f" + "\x58\xa6\x56\xf3\x16\x09\x94\x92\x85\x91\x52\x7d\x44\x46\xe9\xe3" + "\x63\xea\x67\x74\x08\x68\x68\xd4\xfd\xcf\xa7\x58\x4b\x83\x62\xdd" + "\x18\x14\x6b\x89\x14\x6b\xf9\x45\x14\x0b\x4d\xb4\x18\xea\xb0\x19" + "\x92\xbe\x2d\xb4\x4b\x04\x91\x51\x1b\xaa\x45\x63\x6b\xb5\x05\x3d" + "\x1b\xc2\x2c\xa2\x8a\x16\x29\x9b\x81\x17\x36\x46\xc6\x5d\xc7\x4b" + "\xc0\x0a\x1b\x63\x93\xc7\xc6\x51\x0c\x05\x58\x41\x37\x56\x22\x0a" + "\x5c\x9f\xb0\x98\xe4\x43\xd2\x92\x8c\x02\x8d\xd1\xf6\x93\x5c\x62" + "\xcc\x52\xac\xbc\x6c\x8e\x6e\x8e\xfa\x6f\x4f\x7f\xa1\x2f\xd0\x17" + "\x14\x1f\xe6\x88\x96\xeb\x50\xb2\x16\xcf\xad\x01\xfd\x05\x51\x72" + "\x7e\x22\xfb\xe9\x8f\x78\xe4\x8e\xf9\x0d\xae\x60\x69\xc8\xa8\xd0" + "\x07\xc3\xd4\x10\xad\x44\x63\x5b\x00\x47\x9e\x04\xb8\xd9\xe3\x31" + "\x72\xff\x8f\x25\x5f\xf2\x63\xe9\x4e\x66\xd3\x0d\x13\x78\x9e\x08" + "\x2c\x51\xf5\x99\x97\xc8\x92\x23\xd3\xcb\x0c\x15\xaa\xc9\xb4\x1a" + "\x64\xd9\x1b\x9c\x99\x2d\x44\x7b\xb9\x8d\x68\x53\x74\x9c\x6c\x0f" + "\x3a\x93\xe7\xe6\x46\xdb\xc2\xb2\xac\x38\xe3\x54\x9b\x1e\x5b\xa3" + "\x86\xcb\xe8\x98\x3c\xf8\xb2\x9a\xd8\x98\xe4\x34\xd3\xbc\x3f\xdf" + "\xd2\x66\x83\x84\x09\x3f\x60\x8f\x04\x9d\x1d\x1b\x74\x76\x2c\x14" + "\x08\xe6\x56\xf9\xe3\xe9\xd5\xf5\xd9\xe5\x85\x71\x58\x93\xdb\x6a" + "\x25\x5c\xfa\xf3\xed\x20\x6e\x4a\x6a\x87\x14\x2e\xbd\x35\x73\xeb" + "\x29\xcf\xb2\xab\xcc\xaa\xa2\xac\x00\xc9\xa4\x74\x13\x96\x1e\xa1" + "\x5b\xa4\x74\xb2\x80\xae\x0b\x4a\x28\xb2\x37\x44\xb2\xf7\x03\x92" + "\xbd\x1f\xf2\xf2\x61\xf2\xa4\x3c\x18\x4b\x25\x44\x03\x98\x49\x90" + "\x54\xff\xf3\x69\xe1\xc8\xa0\x85\x13\xe3\x2c\x6e\x84\xb4\x70\xf4" + "\x2f\x3c\x8b\xc3\x3b\xa7\x90\xc9\xf7\xdc\xb8\x68\xf7\x22\x59\x6c" + "\xa1\xdd\x97\xc6\x40\xde\x66\x83\xce\x04\xd6\x5f\x2c\x21\x1b\x0c" + "\x4b\xc5\x30\xa6\x91\xcc\x3c\xdc\x6c\x76\x86\x99\xb6\x09\x0b\x81" + "\xf8\x31\x2c\xaa\xd5\xf2\xda\xa2\x27\xf2\x53\x9a\x3d\x74\xd1\xa0" + "\x6f\xa8\xac\xca\x20\xb1\x7b\xd8\x03\x29\x00\xb8\xb5\x61\xbd\x4e" + "\x1e\x1b\x7f\xb1\x3a\x85\xd3\x66\x7b\xa8\x82\xb5\xe7\x8c\x64\x40" + "\xf8\xf0\xdd\x35\x1d\x03\x80\xcc\xe1\x6e\xb3\xf4\x50\x53\xd0\xed" + "\x21\x9d\x04\xf9\x13\xcd\x24\x94\x15\x48\x66\x2a\x58\x3c\x27\x11" + "\x5a\x6f\x8f\x91\x7d\x1a\x36\x72\x19\xf2\x67\xb5\x53\x7b\xa2\xee" + "\xac\xe2\x54\x87\x09\x32\x85\xa6\x1c\x9c\xb1\xe9\xe6\x20\xa4\xc3" + "\xa1\xfb\x72\x28\xec\x18\x61\xa8\x3d\xb2\x9e\xa3\xa3\x9a\x58\x54" + "\xa2\xec\x8a\xbb\x3d\xd2\xcd\x05\x30\xcf\xd9\x51\x8e\x36\xfa\xf2" + "\xc4\xee\xd0\x0e\xda\xce\x50\xd8\xcd\x04\x68\xf6\x18\x6c\xc9\xab" + "\x09\x01\x06\x6b\x5f\x89\x86\x14\x16\x61\x8a\x3f\x5f\x2a\xe6\xee" + "\xda\x1f\x04\x7e\x38\x11\xd5\x0f\xdb\x24\x07\xe7\xe0\x95\xbd\x1c" + "\xf6\xda\x43\x77\xb8\xa5\x74\xaa\x86\x22\x65\x21\x7a\x2c\xe6\x1a" + "\xc4\x94\x7f\xae\xb1\x72\x49\xa3\x21\x3a\xbf\x44\xa5\xd9\xb1\x9e" + "\x94\x8c\xc9\xe8\x62\xd8\x2f\x0b\x16\x4a\x32\xc7\xb3\x4e\xe9\x7b" + "\x93\xb9\x2b\x18\x47\xa3\xd2\x20\x0f\x9e\xba\x89\x37\x20\x53\x95" + "\x9e\xc5\xbe\xea\xca\x98\x64\x7c\x24\xbc\xeb\xa4\x32\xa7\xf7\x55" + "\x8f\xa2\x37\xc0\xac\xde\xe2\xdd\x20\xc2\x8e\x4f\x15\xfc\xcd\xb5" + "\x1a\x56\xcf\xb9\x55\xf7\x08\x30\x4b\xcf\x05\x51\x6b\x42\x7e\x44" + "\x25\x03\x39\x76\x4c\x03\x10\x7b\x48\x96\xd9\xda\xd4\x03\x39\x73" + "\x92\xd9\x15\x36\x1a\x46\x25\x66\x7f\x49\x33\xa4\xd6\x19\xfa\xe3" + "\xa8\x15\xe0\x39\x20\x35\x08\x3b\xb3\x6c\x3f\xc5\x4a\xf4\x62\xdd" + "\x56\x4b\xc7\xac\x24\xab\xe2\x5c\x7a\xe5\xa8\x9b\x1a\xbf\xa4\x2e" + "\xac\xa8\x8b\xee\xde\x26\x7f\x9e\xa0\x26\x21\x79\x5c\x93\x10\x04" + "\xde\x22\xfe\x0f\xdf\x8d\xec\x67\x6f\x34\xc8\xb3\x0b\xa6\x1b\x77" + "\xac\xe7\x31\xdd\x6a\x0c\x2d\xa0\x1a\x56\x73\x80\x3c\xa8\x4a\x58" + "\x42\x02\xed\x41\xde\xc2\xb7\x80\x77\xba\x8d\xa7\xf3\x7b\x71\xf1" + "\xd7\x42\xbc\x84\xe2\xad\xef\xde\x4e\x41\x10\x13\x2f\x33\x7a\x19" + "\x71\xf9\x6d\xd7\xbd\x25\x4b\x0f\x7c\x43\xf6\xe4\x96\xdd\xb8\x16" + "\x96\xb5\xd8\xa5\xd9\xfa\x83\x7e\xa1\x53\xdb\x93\xec\xdb\xc8\x62" + "\xaf\xdd\xdb\x56\x3c\x04\x46\xb7\x06\xfc\xd0\x65\x2a\xfe\xde\xb2" + "\xcf\x59\xa6\x06\xf9\x5d\xe3\x19\x68\x60\xb1\x8f\xae\x45\x71\xf4" + "\xd0\x20\xd0\x12\x61\xf4\x2c\x76\x0a\xbd\xd1\x08\x83\x00\xb0\x5a" + "\xf6\x6e\x36\x7d\xe4\x7e\xd5\xd5\x5b\xef\x7c\x32\xc1\x25\xae\xe1" + "\xec\x7d\xc5\xee\xdc\xb5\x20\xae\xe2\x7c\x52\x64\xa1\x4b\x25\xa6" + "\xfa\x8b\x45\x41\x98\x36\x8a\x1d\xb6\x54\x2e\x0b\x66\x3b\xe0\x5e" + "\x68\xa5\x52\xcc\x59\x69\x31\x27\xcc\x89\x39\xf7\xec\x58\x89\x39" + "\xf8\x28\x79\x66\x3f\xce\xd8\x74\x80\x15\x43\x8b\x48\x66\x5a\x1c" + "\xc4\x90\x0f\x08\xee\x18\x62\x7a\xaf\x5d\xb9\xbc\x8e\x4c\x19\xe2" + "\x0a\x65\x88\x6b\x85\x02\xe7\x90\x67\x0b\x19\xb9\xc2\xe3\x5a\x59" + "\xc3\xb9\xa6\x4c\xef\xdc\x97\xef\x5c\xd7\xcd\xf3\xfb\xed\x73\x1d" + "\x69\xfa\xad\x0e\x1d\x5c\x06\x4d\xec\x50\x57\x2a\x0a\x86\x1f\xfa" + "\x78\x81\xad\xff\x39\x23\xd5\x4e\x4e\x5a\x93\xbb\xd8\x66\x23\x12" + "\xbd\xd1\xe8\x28\xf2\xbd\xa3\x70\x74\xac\x70\xe3\x18\x47\xd1\x2e" + "\xb7\xa4\x07\xec\x1a\xd1\x14\x03\xb5\xe6\xea\x15\xd3\x21\x41\x14" + "\x2f\xb6\x93\x3e\xa2\x41\xab\xdd\x3d\xa5\x41\xab\x4d\x2b\x34\x68" + "\x9a\xc3\x51\x6d\xac\x0b\x70\x75\xe8\x1d\x57\x8f\xed\xb4\x54\x94" + "\xad\x7b\x84\x85\x7e\xb2\x20\x25\x85\xa9\x57\x43\x92\x75\x30\x33" + "\x41\xa8\xdd\x23\x0a\xe8\x92\xb9\xa1\x04\xd6\xed\x3e\x93\x81\x5f" + "\xfb\x51\x9c\xbc\x03\x49\x22\xd0\x13\x70\x9a\x9b\xe8\x9d\xe2\x44" + "\xd3\x1e\x07\x5f\x56\xcd\x2a\x09\xeb\x1d\x5b\xab\xe5\x80\xbe\xa0" + "\x0e\xbb\xd7\xc8\x70\x4f\xb1\x52\x4a\xbd\x88\xf4\x19\x62\x5e\x1c" + "\x1e\x3b\xe5\x7b\x52\x4b\x97\x5d\xbf\x43\x4c\xbe\x77\xde\xc9\xf1" + "\xd3\x58\xaf\xfb\x77\xe2\x43\x65\x74\x11\x87\xd3\xce\xd5\x6f\x98" + "\xb0\x4b\xe1\xfd\xd2\x61\xdb\x72\x00\xda\xd9\x0f\xc5\xcf\x74\x5d" + "\x6e\xf7\xba\xa7\x22\x24\x7d\x11\x72\x82\xf8\xbd\x6d\x45\x1f\x64" + "\x66\xbb\x68\x3a\xfb\xc4\xba\xdf\xda\x9d\x87\xc7\xbb\x73\xc9\x6e" + "\xb6\x76\xc8\xc2\x80\x6c\xd5\xb3\xb2\x00\x9e\xe3\x2d\x90\x7e\xb2" + "\xd8\xda\x5d\x5f\xe3\x9c\xe6\x74\x74\x7b\xd7\xfa\xa0\x3c\xbd\x95" + "\x43\x9e\xd7\x3f\x5c\xe5\x9b\x35\x86\xa2\x04\x88\x52\x0b\xaa\x2f" + "\xdd\xb7\xbd\x74\xf1\xe9\x36\x15\xb3\xfd\xc8\xd2\xd8\x29\xac\x8d" + "\xed\x68\xd6\xdf\x8e\x66\xca\x32\xe6\x19\xc8\x24\x20\x3e\x2e\x43" + "\x8c\x8b\x84\x3c\xf5\x00\xac\xcc\xab\xc4\x76\x20\x2f\xf6\x84\xc5" + "\xd2\xf6\xd6\x2e\x68\x4f\xbe\x08\x13\xcb\xa8\x0c\x93\x5b\xa4\xf7" + "\x65\x24\x2c\x6c\x00\x55\x1c\xe0\x15\xd0\x75\xbc\x3a\x20\x37\x9a" + "\xe7\x8e\xa2\xec\x5b\x31\xbe\x7b\xd5\x23\xe3\x91\x27\x50\xfc\xfa" + "\xdf\x8b\xe2\xce\x56\x34\x9e\x39\xe9\xb6\x19\x04\xe4\xaf\xc2\xda" + "\xeb\x32\xd6\xa6\x7a\x44\xee\x0b\x34\x52\x51\xfd\xfb\x2a\x47\x99" + "\x1b\xa7\xe2\x64\xe2\xde\x28\x23\x59\x8e\x9d\x1d\xf5\xc8\x94\x1f" + "\x4f\x5e\xd9\xa9\x52\x81\xc8\xa6\x05\xf4\xcc\x69\xb8\x2a\x86\x47" + "\x03\xf3\xd9\xe9\x7c\x6c\x0d\xd2\xca\x8d\x98\xce\x3d\x2b\x76\x90" + "\xfc\xfa\x78\x7c\x33\xc9\xf1\x1d\xc7\x82\x5a\xaf\x33\xde\x64\x0b" + "\xda\x1d\x3b\xed\xeb\xa7\x71\xec\xb8\x57\xd8\xe3\xaf\xf1\x08\x72" + "\x0b\x20\xba\xd9\x63\xc5\xd0\xbc\xae\x62\x34\xb2\x60\x5b\x22\xd3" + "\x7d\x65\x26\xb5\x41\x5e\x83\x8c\x76\x9c\x69\x4b\xb0\xfd\xed\xf0" + "\x12\x43\x87\xf6\x96\xea\x3c\x36\x1b\x98\x6b\x31\x30\xd7\xc6\x0c" + "\x49\x76\xe1\x84\xed\x00\xef\x77\x9d\x3f\xf9\xb6\x3c\x68\x40\x46" + "\xce\x46\xe6\xf8\x58\x33\x2e\x05\x97\x13\xb3\xd7\xfa\x90\x4a\x45" + "\x85\xbf\x37\x7d\xe6\xf6\x91\xdb\xd8\x20\x5d\xdd\x17\x07\x35\xf7" + "\xa8\xe3\x39\xd6\xb8\x78\x28\x97\x1a\xcf\x45\x67\xc8\xa6\xb2\x9a" + "\x1b\x20\x4b\xc3\x63\xd3\x68\xcb\x68\xd4\x34\x5e\xba\xee\xde\xf7" + "\x5e\xa2\x39\x57\xe5\xe1\xd0\xc5\x5c\x1d\x2b\x62\xc4\xd0\x11\x9e" + "\xe7\xdc\xa7\xd6\x2d\x20\x09\x14\xb3\xc9\xaf\x26\x0b\x3d\x8a\x76" + "\x95\x52\x9d\xc3\x76\xd9\x51\x26\xf9\x4c\x40\x72\x02\xbe\x4f\x18" + "\x4b\x26\xde\x84\x22\x2c\x00\x38\x47\xd6\x66\x33\x29\xd9\x57\x16" + "\x53\xf2\x25\x9c\x2a\xab\xa0\x76\xc1\xba\x96\xd0\xfb\x51\xa1\x58" + "\x28\xeb\xab\xc7\xee\x3e\xc7\x49\x65\x2c\xaa\xc3\xe2\x0a\x6f\x16" + "\x74\x0e\x5d\xa1\x7f\x85\xfd\x56\x86\x20\x0c\x7c\xf7\x6d\xa8\x44" + "\x43\xb9\x56\x97\xbe\xfb\x63\x68\x07\xbe\x61\x68\x7d\x97\xd8\x6b" + "\x7f\xd4\xe2\x59\x9c\xeb\x84\x29\xcc\xc2\xab\x4c\x15\x25\xf9\x60" + "\xba\x54\x45\xee\x36\x3f\x59\xee\x74\x3a\x40\x41\x7d\xb2\xf8\x5f" + "\xfa\x76\x94\xeb\x45\x3b\x04\x71\x5f\xf0\xb5\x2d\x5f\xf2\x6c\x22" + "\x2c\x79\x45\xc0\x6f\x25\x17\x16\xa0\x33\xe3\x7c\xdf\x70\x7b\x4d" + "\x41\xb9\x0b\x39\x1e\x8d\x24\xee\x45\xa3\x42\x1c\xf8\xca\x3c\x0d" + "\x15\xbb\xde\x0c\x51\xce\xb6\xe6\x46\x67\x3b\x2b\x07\x44\x2e\x22" + "\xf9\x87\x30\x83\x54\xe8\x9e\x30\xa8\x33\x8c\xb5\x78\xf9\x11\x57" + "\x34\xca\x93\xae\xb5\x88\x7c\xf2\xe1\x64\x7e\xfc\x8a\xbe\x9d\x86" + "\xc2\x61\x32\x62\xf3\xf0\x18\x05\xe9\x96\x9f\xb5\x13\x9b\x9d\xbd" + "\xe1\xac\x3c\x1c\xdd\x18\x81\x56\xfa\x2e\x71\xef\x82\x7e\x35\x6e" + "\x09\x18\x24\x61\x0d\xfe\x35\xe8\x42\xef\x59\xd2\xf8\xe6\x96\x69" + "\x5f\xcd\x9d\xca\xb6\x8b\x7d\xfc\x23\x94\xa8\x24\x60\x48\xb2\x9c" + "\x61\x86\x52\x11\xba\x8d\x9d\xaa\x37\xff\x5f\x3a\x57\xa5\x4b\x03" + "\x06\x3c\xb9\xe7\x3c\xcc\xc5\xc3\x97\xde\x13\x8f\xde\x1a\x20\x62" + "\xfe\x3f\xd5\xf2\x8c\x37\xbc\x65\x32\x7f\xea\x06\x02\x84\x8f\x46" + "\x24\x8f\x1e\xdb\xf1\xbe\x5c\xeb\xc8\x67\xeb\xed\x23\x28\x43\xeb" + "\x43\x75\x77\x09\x13\x33\x60\x64\x7e\x1a\xb8\x02\xea\x86\xaa\xc6" + "\xec\x52\x13\xdf\xce\x9a\xe7\xb9\xe6\x93\x34\x0b\x9e\xf1\xc6\x36" + "\xaf\xad\x90\x6d\x99\xd7\x1f\x08\x55\xab\xd9\x3e\x46\xad\x6b\x0c" + "\xf1\x0c\xb0\x21\xbf\x0a\xfc\xa4\xa4\xc1\x1c\xa6\x40\x7a\x90\x11" + "\x19\x08\x19\xa5\x13\x10\x0a\x1f\x05\x03\x89\xf7\xb9\xa6\xf9\xdb" + "\x05\x7e\xc8\x47\xf8\x2f\x80\x83\x13\x1a\x78\x03\x1e\x54\xc0\x23" + "\xd3\xa7\xc9\x2c\x78\x3d\x8f\x5a\xbc\xe9\x8f\xcc\x5b\x00\xe8\x33" + "\x45\x2c\xf5\xe2\x5c\xa0\x9b\x0e\xd4\x99\xa9\x91\xcb\xdd\x44\x25" + "\xe1\x1c\x2a\x6e\x36\x9b\x40\x4a\x1e\x1d\x91\x7c\xd6\xdc\x64\x8c" + "\xc3\xca\x8e\x55\x8d\x69\x01\x81\x9f\x35\xfe\xa2\x45\xf6\xc8\xf0" + "\x88\xec\xcf\x1b\xa4\x1c\xe4\x8b\xe4\xd9\x90\xd7\xe8\x51\x5c\x7c" + "\x8c\xd7\x52\x7c\xf3\xcf\x74\x05\x46\x10\xd2\x45\x25\xff\x8e\x8e" + "\xe1\x2e\xfb\xb9\x10\xbc\x27\x7c\xf2\x1c\x15\xa5\x89\x51\x34\x5f" + "\xfc\xe7\x1f\xa0\x4e\x8d\x03\xd4\xb1\x11\xb0\x67\x8a\x07\xa8\xd3" + "\x2f\x3a\x40\x7d\xda\x8e\xc4\x88\x61\xa2\x46\x18\xc3\x97\x58\x63" + "\xd8\x18\x30\xb4\x9a\xd4\x38\x07\xee\xad\x76\x32\x6c\xd2\x49\x7c" + "\x9c\xde\xb2\xa5\x9b\xa3\xeb\xf3\x91\x17\x34\xb2\x5a\x48\x7b\xad" + "\x04\x41\xa1\xf2\xf5\x63\x71\xa1\x14\xee\x8d\x87\x4c\x9f\xc9\xa0" + "\x91\x76\x04\x43\xa3\x6e\x32\xb0\x88\xb4\x62\xe4\x0c\xb3\x7e\xe5" + "\x97\x94\xaf\xd7\xd2\xdd\xa7\x70\x3b\x8e\x65\x36\xa2\xb5\xc6\x46" + "\x5b\x59\x5a\xae\x49\x5b\x4a\x7b\x1b\xd1\x8c\xa3\x15\xcd\x0b\xad" + "\x68\x8e\x72\x8a\xe6\x59\x66\x4d\xf3\xa8\x9d\xcc\x2c\xd3\x58\x1d" + "\x2d\x16\x18\xd7\x76\x54\x92\xd1\x85\xc1\xc9\x63\x5a\xd4\xe5\x93" + "\x5a\xd4\xf1\x76\x2d\x6a\x2c\x94\xa2\xb3\x0a\xd1\x54\x8f\x0b\xde" + "\xb1\x26\xcd\x5a\x20\xa3\xf2\xf4\x90\xb2\x24\xc1\xad\xf5\x84\xbb" + "\x59\x1f\x95\x4c\xad\x14\x3b\xba\x56\x35\x05\x78\x72\x26\x55\x35" + "\xbb\x0e\xdb\x2d\xa8\x1a\x86\x5a\x13\x31\x43\x93\x79\xae\xaf\x1b" + "\x13\x5c\xb3\x09\x11\x10\x0e\x62\x7c\xff\xe9\x4e\x98\xd0\x96\x75" + "\x22\x4f\x40\x22\x82\x73\x2a\xcb\x25\x56\x00\x2c\x33\x69\x2a\xce" + "\x34\x05\x69\x2b\xdb\x2c\x05\x45\x0d\x8c\x84\xa2\x12\x55\x84\x41" + "\x91\x86\xdd\xe8\xbe\xd6\x9b\xa8\xcb\xca\x1f\x0d\xc1\xdd\x9e\x19" + "\x21\xf2\x72\xe3\xa7\x93\xd9\xd6\x59\x9c\x15\x66\xce\x2b\xf4\xc0" + "\x9d\xa5\x55\xba\x93\x0a\x95\xcd\x4c\xa3\xe5\xac\x69\xac\xc0\x9c" + "\x56\xc3\xce\x7d\x72\xd8\x2c\xd5\x38\x68\x6a\x2f\xd5\x20\xe5\x35" + "\x2b\xb3\x27\xd1\xd3\xa8\xbb\x29\xeb\x9d\x39\xe4\xf8\x6f\xcf\x58" + "\xc0\x0a\xb8\x57\x18\x2a\x83\xf8\xd0\x2d\x84\xa5\x09\x3b\x48\xcb" + "\x48\x34\x33\x30\xb3\x68\x35\x36\x63\x65\x78\xb7\x4d\x44\x26\xb1" + "\x2f\xf0\xa4\x37\xc4\x93\xde\x30\xc9\x99\x24\xbd\x7f\x32\xe0\x97" + "\x36\xcc\x6c\x28\xd2\x19\xff\xe7\xef\xaa\x7d\x63\x57\x9d\x1a\xbb" + "\x6a\x1f\x77\xd5\xfe\x73\xc2\x7f\x7d\xe1\x01\x31\x5e\xcc\xeb\x5a" + "\x48\xb3\xac\x4c\x03\xb0\x94\x87\xba\x48\x4b\x66\x7e\x1c\xa3\x25" + "\x90\x61\x70\x06\x3b\xde\x90\xcc\xdb\xda\x79\x85\xcc\x92\xdd\xea" + "\x93\x55\x59\xd2\xb5\x76\xd7\xe3\xd4\xea\xdd\x66\x20\x2c\x68\x71" + "\x74\xad\x23\x8b\x59\x47\x57\xa7\x47\x56\x2f\xd3\xb1\x89\xf3\x3a" + "\xa1\x8b\x71\xea\xf5\x45\xd9\x37\x2b\x36\x8d\x26\x84\x86\x25\xb7" + "\xac\xfa\xdb\xf5\x8e\x94\x5b\x1e\xac\x29\x9b\x19\x34\xc0\x1b\xe3" + "\x1d\x55\xc3\x4a\x35\x4d\xdf\xe9\x06\xa8\x83\xa2\x28\x23\x9c\x44" + "\xf5\x13\xd1\xb1\x1b\xa1\x79\x76\xbd\x3f\x1d\x31\xe3\x3d\x67\xef" + "\xcd\x88\x19\xef\xf3\xb6\x7b\xd1\x93\x3c\x27\x19\xc4\x10\xfa\xff" + "\xc7\x2f\x8f\x85\xb1\x3c\xfa\xc6\xf2\x58\xe0\xf2\x58\x7c\x39\xd3" + "\x39\x51\x9c\xe7\x13\x4c\xa7\x1e\x62\x62\x36\x91\xb5\x34\x52\x80" + "\xeb\x94\xd1\x15\xd0\x30\x08\xf9\xcd\x5b\x19\x75\x02\x50\x79\x20" + "\xd2\xc6\xae\x75\xe3\x0d\x2c\xb6\xc0\xba\xa2\x7b\xd2\x7c\xf4\x05" + "\x33\x2b\x5e\x66\xee\x1a\x15\x03\x54\x11\x32\x9a\x58\xb5\xe2\xfa" + "\x84\x0d\xce\xae\x99\x23\x63\x0f\xcd\x8c\xda\x58\x5f\x71\x85\x37" + "\x5b\xac\xac\x1f\x9e\xc9\x15\x3e\x18\x3b\x07\x05\xbf\xc9\x78\x42" + "\xa8\x3f\x81\x2e\x5d\x78\xab\x13\x3f\xe2\x34\x6c\x4f\xf3\x87\xb3" + "\x27\xf9\xc3\xdd\xc7\xf8\x43\xba\xd4\x92\x6e\x24\x59\xe7\xc1\xc2" + "\x7b\xad\xcd\xad\x48\x0f\x94\x3a\x67\x50\x76\x01\xd9\x60\x89\x19" + "\xb4\x69\x43\x05\xce\x47\x13\xb1\xa1\xdc\x62\x75\x42\xc0\x1e\xdc" + "\x97\xa2\x16\x11\xa9\xe6\xb5\x98\x6c\x18\x9c\x62\xd6\x65\x31\xeb" + "\x5b\x81\x07\x94\xb5\x38\x90\x07\xc0\x91\xf1\xad\x3d\xd2\x76\xee" + "\xe6\xc8\x97\x40\x05\xa6\xab\x08\x93\x98\xe7\xb5\x89\x16\x27\x69" + "\x8e\x91\x42\x85\xfd\x83\x54\x95\xbb\xae\xe6\xc6\x36\x1b\x23\xf1" + "\x64\xb3\x39\xc9\xce\x91\xd4\x87\x02\xad\x7d\xed\x46\xcd\xb2\x35" + "\xde\x89\xd3\x7e\x6d\x44\xd5\xeb\x9c\xa8\x91\x6e\x6d\x47\x1c\xd7" + "\xed\x77\x5e\x77\x55\xb1\xc6\x61\x4f\x97\x79\x8d\x67\xd0\xf2\x25" + "\x2d\x8d\xea\xfa\x01\x7d\xf3\xa0\xf8\x58\x8f\x57\x55\xf5\x0f\xe2" + "\x9a\x72\x28\xd7\xe9\xb7\x16\x19\x77\x72\x83\xf4\x37\x42\xee\x24" + "\xca\x73\x27\xfe\xd3\x06\xd3\x74\x46\x3e\xf0\xfe\x17\x70\x9f\x9d" + "\x19\x44\x77\x61\x10\xdd\x19\x12\xdd\xd9\x97\x3b\xba\x3d\xca\x9b" + "\x18\x44\xb7\x39\xf6\x3f\xf1\x51\x23\x99\x2f\x58\x4d\x3e\x0f\xe6" + "\x49\x32\x9f\xc1\xab\x1f\x37\x28\x05\x1e\x63\xa0\x16\x77\x0f\x98" + "\x8d\x54\x02\xb9\x77\x20\xd6\x0b\x90\x03\x60\xfb\x6d\x44\xc2\x4c" + "\x0c\x98\x9d\x19\xe0\xb2\x1f\xca\x04\x49\x28\x97\x39\xf2\xe8\xe4" + "\x8f\xf9\xdd\x5c\xd0\xbd\x14\x66\xf7\x27\x34\x3f\xd3\x07\x64\x8b" + "\xad\xb6\xc6\xc8\x88\xd3\x3d\x13\x90\x5d\x69\x4f\x29\x84\x99\x37" + "\x88\x6d\x19\x9a\xcf\x0f\x43\x1e\x51\x8e\xc6\xc2\x51\xc6\x0f\xaa" + "\x62\xe5\xc4\x20\x1b\x94\x02\x82\x54\xdd\x5f\xae\x78\xf4\x1a\x65" + "\x56\x45\x5c\x62\xcd\xf8\x18\x8e\x65\x79\x99\x6e\x08\xdb\xce\xcb" + "\xfe\xde\xe2\xd1\x22\xf1\xf3\xb2\x79\x40\x1b\x31\x1b\xc2\x4d\x91" + "\x87\xf4\xc0\xd1\xdb\x53\xa0\x58\x18\xd3\x09\x65\x6e\x4b\xb5\xf2" + "\xac\x62\xc3\x27\x72\xc7\x4f\xe6\x00\xb8\x9d\xd4\x8f\x2f\x65\xf3" + "\xe4\x6f\x5d\xf4\x1a\x91\x03\xfe\x12\xc4\xa4\xd2\x68\xcb\x4e\xc6" + "\xde\x0a\x38\x45\x3a\x59\xcf\x4e\x6f\x9f\xea\x62\xce\x22\xa1\xa9" + "\x3e\x13\x07\x3e\xe2\xa1\x95\x56\x8f\xf4\x82\xf5\xd9\x4c\x61\xc5" + "\x6e\x11\x2b\xd8\x8d\x7b\x29\xc2\x07\x5e\x16\x0d\xba\x74\x3c\xdf" + "\x0c\xcb\x5e\x5e\x9a\x58\xb9\xb7\xab\x68\xfa\x23\x9d\xba\x64\x7d" + "\xa5\x55\x79\xd8\x1a\xdd\xf6\xb2\x22\x36\x2a\x14\xbb\x94\x5d\x8d" + "\xb3\x6f\x76\x9f\xdd\xee\xae\x67\x15\x31\x6a\x61\x9f\x44\xc3\x19" + "\x6d\xbf\x41\x81\x87\xce\x55\xac\x02\x20\x12\xda\x62\x63\xc1\xd0" + "\xd2\xa2\x12\x5a\x18\xac\x4c\xd7\xb0\x90\xcd\x57\x81\x36\x43\x93" + "\xeb\x92\x3f\xba\x18\xeb\x74\x1b\xf2\xe4\x6a\xdf\xd5\x22\xd3\x8d" + "\x5b\xe1\x46\xba\x8b\xe3\x06\xd3\x72\xa3\xe2\xb2\xae\x77\x25\x38" + "\x42\x93\x92\x0d\x88\xd6\x02\x29\x6f\xb3\x72\x45\x6c\xb7\x72\x24" + "\x6f\x9e\x35\x58\xd8\xa1\xc7\xbe\xf7\x49\x28\xf3\x0d\xdf\xcf\x85" + "\xe3\xac\xfb\xf0\x57\x01\x96\x1d\x7f\xcf\x6a\x74\x61\x23\x59\x50" + "\x2c\x0a\x8e\x61\x4e\x1f\x75\x4d\xa9\x56\x07\xc2\xfe\xea\xe3\xfe" + "\xea\x3f\x66\xe7\x4d\x2a\xd9\xff\x6d\xe4\x5d\x69\xe4\x8d\xaa\x75" + "\x86\x9a\x00\x86\xf2\x0e\x6d\x9b\x0c\x37\xe1\x6a\xb9\x1e\x43\x29" + "\x00\x51\x5e\x66\x5e\xbd\x42\xdf\x4d\xc2\x06\x8a\x2d\xf2\x6d\x96" + "\x33\xfd\xde\x75\xad\x53\x0a\xdb\x8d\x61\x77\xa5\xa9\x77\x1f\x84" + "\x96\x4b\xf1\xa2\x4d\xe7\x44\xea\x43\x66\x00\x8e\xaf\x27\xca\x6e" + "\x1c\x5f\x5e\x6b\xbb\xf1\x3e\xd9\x6f\xdf\x8a\x10\x72\xe2\xf5\x63" + "\x49\xab\x80\xa9\x03\x53\x67\x9f\xfb\x72\x9a\xc9\x51\xb9\xf4\x23" + "\x6d\x72\xde\x4f\x81\x8c\x40\xca\x9d\xec\x66\x03\xe3\x2a\x63\x48" + "\x30\x79\x30\xb0\x52\x07\x03\x13\x95\x41\x08\x17\x16\x03\x8a\x2b" + "\xc6\xa2\x29\x32\x1c\xab\xf7\xc6\x08\x68\xc9\x7c\x62\xb1\x6b\x9d" + "\x22\x4e\x50\xaf\x2a\xcc\xc6\xc5\x68\xf6\xbe\x62\xe7\xee\x5a\x9d" + "\x28\xa0\xf0\xa6\xa5\x38\x80\x7f\x30\x07\xf9\x8e\xcc\xc7\xdf\x1a" + "\x99\x2c\x5b\x0a\x70\x5a\x91\xcf\x8a\x82\x9d\x2e\x5b\x32\x2a\x7f" + "\xb7\xc5\xa8\x7c\xc4\x2e\x94\x5c\x87\x8f\x4c\x31\x0b\xd8\x21\x37" + "\xf3\xea\x38\x66\x95\xe6\x88\x0a\x36\xb7\x68\xbc\xfd\x0a\x3e\x9c" + "\x44\x78\xa1\x9f\xcc\xa9\x65\xdf\x52\x56\x12\x43\x6e\xe0\x8b\xa1" + "\x23\x26\xeb\xad\x4c\x6e\xdc\x6a\x08\x28\x38\xea\x57\x5e\x24\xac" + "\x4b\x32\xb3\xdb\x5c\x94\xae\xf8\x09\x3b\xee\xf3\x27\x25\xcc\xb7" + "\xdb\x25\xcc\xb1\xb2\xe3\x1e\x15\x6c\xec\x64\x2f\xb6\x58\x73\x8f" + "\xa4\x39\xf7\xa8\x60\xfe\x9d\x19\x71\x3f\xd3\x2a\xfa\x84\xad\x73" + "\xc1\xdd\x5a\xa3\xb4\x6c\xc0\xaa\x65\x5d\x3d\xb4\x07\x5b\x8d\x8d" + "\x8b\x43\x2b\x61\x67\xf9\x28\xd2\x79\x9d\xf9\x9d\xa3\x87\x1e\x2d" + "\x2e\x4e\x08\x7d\xec\x22\x96\x88\x9e\xa3\x0e\x5a\x36\x01\xaf\x6a" + "\xeb\x18\x39\x8e\x66\x64\x77\xfe\xdc\x88\xdc\x3c\xa7\xff\x87\x4f" + "\xf5\x3f\xd3\x90\x99\x12\xf7\x53\x06\xa8\x2b\xa7\xd2\x56\x34\xeb" + "\x33\x76\xf1\x1c\x49\x40\xb1\xae\x4c\xd6\x97\x0a\x71\xdb\xc9\xb9" + "\x94\x0b\x07\x71\xc1\x48\xe1\xce\x6e\x3a\x8c\x8b\xe5\x8a\xa9\x85" + "\x01\xcf\xce\x75\x1e\xed\x14\xad\xff\x2c\x73\x2a\x44\x66\x75\x93" + "\xeb\xba\x6a\x6a\xd3\xca\xc5\xae\xdd\xb2\x61\x35\xc6\xf6\xda\x38" + "\x06\xcd\x1f\x6b\x29\x00\xcd\x13\xcd\x72\xff\xd3\x5c\x2b\x06\x9d" + "\x30\x9b\x19\xda\x39\xbd\x45\xfe\x8c\x06\xd9\xbd\x1c\x92\xad\x0b" + "\x58\xac\xb4\x15\x79\xea\x66\x44\x2e\xa7\x6c\xf2\x24\xe5\x51\x8b" + "\x6c\xc1\x67\xc9\xfb\xcc\x5d\x0b\xf6\x74\x34\xb7\xa8\x3a\x0b\x2b" + "\x9a\x6d\x4a\x36\xbe\x54\x61\xd9\xc0\x53\xee\xc4\x15\xf6\xf1\xb9" + "\xbc\x68\xe6\x80\xce\x8a\x62\x57\x2a\xe5\xa5\x85\x7d\x03\x44\x5b" + "\x19\x5d\x5f\x18\x84\xfe\x3a\xb7\x03\x38\xed\x8b\x7a\xdd\xbe\x30" + "\xcb\x00\xa3\xf1\x4f\x58\xa8\xaf\x94\x2c\xf0\xde\x34\xf0\x96\xd8" + "\x90\xd3\xba\x65\x28\x5a\x5a\x75\x15\xdb\xc0\x36\x1a\xf0\xba\x82" + "\x2a\xa6\x95\xce\x07\xef\x73\x1d\xae\x5a\x85\x69\xd5\x86\xb2\xa6" + "\x63\x8c\x7c\xa3\xa7\x6c\x24\x44\xaa\x91\xd4\x30\xed\x1a\x67\x7a" + "\xb2\xaf\x6a\x87\x96\xab\x4a\x7a\xa9\xe4\x8e\x73\x65\x8f\x5e\xc9" + "\x35\x62\x9c\xa7\xa1\x45\x13\xa3\x86\x25\x1d\xf8\xcc\x72\xe6\xf2" + "\x44\xdb\x0c\xeb\xfc\xdc\x70\x65\xe6\xd3\xb9\x75\x2c\x2b\xcc\xf7" + "\x64\x40\x3d\xc1\x0f\x45\xe9\xf4\x23\xbb\x90\x51\xe7\xf3\x1f\x28" + "\x24\x69\x22\xc3\x95\x16\xbf\x5c\x68\x5d\x60\x69\x3c\x34\x07\x41" + "\x66\xc0\xc4\x68\x29\x82\xf3\xc8\x38\xe4\x07\xac\x50\x95\xec\xa8" + "\x34\x26\xa5\x03\x13\x93\xec\xae\x1f\x5d\xb7\x21\x74\xd9\x7a\x7a" + "\x25\xca\x35\x5b\xb1\x14\xab\xd7\xb8\x58\xb9\x4f\xe6\xa5\x95\xfb" + "\xa4\x67\x9f\x26\xef\xd4\x45\xc2\x80\x6d\x9b\xb3\xdc\x96\xee\x72" + "\xda\x8d\x23\xc2\x00\x32\x3e\xce\xd4\x40\x7a\xbb\x97\x5a\x99\xad" + "\x4b\xeb\x41\xd0\x65\x63\x85\x3c\xdb\xb7\x60\x0a\x05\x1f\x99\x55" + "\x71\x7f\x79\x75\xab\x97\x4f\x79\xe5\x5c\xb8\x55\x64\x4e\x5c\x8c" + "\xf1\xf2\x09\x5d\x9b\xc8\xc5\xde\xbb\x8f\xe9\x5b\x7e\x69\xbf\x47" + "\x24\x95\x33\x5f\x40\xf2\xaa\xde\x4e\x30\x84\xf0\x85\x66\x3d\xb6" + "\xd4\xaa\x6b\x7c\x9c\x80\x4e\xb6\x33\x16\xeb\x27\x78\x92\xe7\x17" + "\x2d\x82\xf6\x3e\xcd\xef\x06\x85\xd7\x02\xc0\x52\xe3\x4e\xf4\xd2" + "\x24\x31\x52\xae\x1c\xfd\xf9\x09\x52\x73\x9c\x21\xab\xa1\xd0\x7a" + "\xef\x5e\xbc\xa4\xb0\x89\xef\x31\x16\xb2\x6a\xf5\x3b\x37\x10\xd7" + "\x22\xd8\x4e\x47\xe9\x75\xdf\xf1\x71\x62\xb5\xd4\xdb\x95\xd0\xe9" + "\x56\x39\xff\x7c\x47\xee\x5b\x17\xe4\x61\x86\x24\x0f\x6a\x7e\xb4" + "\x62\x51\x55\x2b\xd7\xce\x93\x15\xa7\x15\x8b\xb2\x72\x5e\x8c\x5a" + "\x33\x9f\xa4\xca\x2c\x04\x07\xe4\xd9\xe6\x04\x42\x42\x9f\xb9\x68" + "\xab\x9d\x38\xde\xbb\xef\xb6\x3b\x71\x8c\x4c\x27\x8e\x51\xb5\x13" + "\xc7\xfb\xee\xe8\xcb\x9c\x38\x46\xe4\xc4\x81\xc5\xec\x8b\x47\xbc" + "\x38\x8e\xd8\x95\x71\x5b\x3b\xcf\x30\xec\xf1\x73\xfc\xf6\xb3\x0c" + "\x08\x7c\x5e\xb6\x20\x10\x3b\xe1\x08\x84\xad\xef\x60\xd1\x7c\x57" + "\x21\x5f\xa8\x1c\x0f\x62\x47\x0e\x8c\xb0\x0c\xd4\xb6\xdc\x94\xd4" + "\xa9\x14\x5e\xb8\x5c\x66\xbe\xee\x89\xdf\x7a\x97\x8b\x40\x74\xe1" + "\x28\x01\xac\x7a\x32\x46\xda\x13\x84\xda\x49\xf1\x62\xbd\x2a\xab" + "\x03\xfb\x1d\x72\x6e\x15\x7e\x22\x90\xfe\x8e\xfc\x44\x3e\x4b\x3f" + "\x91\x99\xef\x7e\x2e\xfa\x89\x4c\xc8\x4f\x64\x66\xfa\x89\x2c\xf9" + "\x76\xe3\x7e\x64\xba\xc9\x3d\xe1\x0d\x80\x6e\xda\xf4\x4b\xa7\x91" + "\xa8\x5e\x9f\xf8\x95\xdd\xc1\x10\x32\x3c\xbd\x75\x94\xcf\x33\xda" + "\xe7\xfe\x94\xb7\x1a\x17\x56\xc2\xc2\x09\xa4\x60\xa3\x59\x13\x3a" + "\x1c\x61\xe7\xab\xb4\x32\x89\x37\x38\xc3\x80\x1b\x78\x4f\xcc\xa3" + "\xb6\xef\x79\x65\xce\x33\xb2\x4a\xaf\x82\x27\xdd\x02\x28\x73\xc9" + "\x7b\x04\xf3\x4e\xff\x56\x95\xb5\xc2\x39\xe0\x59\x2e\x1b\x16\xba" + "\x6b\x90\x99\x0a\xb2\xff\x79\xab\x1a\xab\xa5\xd4\x7a\xda\x71\x83" + "\x8c\x96\xd9\x76\x88\xcb\x6e\x00\x8f\x64\x1e\xcf\xe7\x49\xae\x7b" + "\xcf\x05\x98\x7c\x4c\xb4\x8f\xcb\x33\xc0\xce\x9a\xb0\x8e\xa9\xaf" + "\xda\xe1\x21\x6f\xef\xbf\xf2\x25\x82\xc6\xc3\x29\x9f\x79\x80\xa1" + "\xc2\x94\x26\xc4\xaa\xe8\xe6\x89\x56\x94\x8a\xd0\x33\xbe\xba\x77" + "\x3b\x66\x5e\x5b\xd8\x87\xdb\x78\xac\xe8\x41\xed\x92\xae\xb5\x7c" + "\x61\xd8\x6f\xb5\x07\x80\xb1\x77\x6d\xfa\x16\xd2\x69\x04\x7d\x93" + "\x8f\xe6\x57\xbc\xab\x63\x92\xff\xcc\x62\xf7\xd0\xcc\xa2\xd4\x74" + "\x98\x45\xbb\x38\x98\x19\x3c\xf4\xcb\xb5\x5a\x9e\xe1\x55\x60\x7e" + "\x96\x51\xc8\xaa\xbe\xab\x3b\x65\xf3\x70\xa7\x8f\xf8\x63\xfc\x20" + "\x27\xca\x67\x5e\xdc\xf2\x84\x9b\x15\x59\xb7\xb7\x60\x74\x10\x25" + "\xf5\x00\xe2\x15\x1e\x97\x61\xf0\xd0\x12\xb7\x80\xe1\x63\xa7\x03" + "\xfc\x29\x88\x47\x8b\x56\xcc\xd4\xd5\x28\x38\xbe\xe6\x8c\x0c\x60" + "\x46\x04\xb3\x6e\xce\x0a\xd0\x60\xba\x83\x1c\xef\x46\x0c\xd1\x97" + "\x44\x18\x92\xd0\xe4\x08\xea\xe3\x93\xc9\x19\x11\x0e\x1b\x23\x6a" + "\x72\xd6\x1d\xf6\x5a\x01\xde\x9e\x15\xbb\x49\x87\xae\x1e\xe6\x51" + "\xe2\xf3\xb8\xd3\xc1\xcb\x3b\xf2\x31\x78\x0d\x1f\x14\x93\x92\x74" + "\xc3\x1d\x11\x19\x99\xec\xb7\x3d\x15\xa9\x67\x6e\xaf\x7c\xa2\x2e" + "\x43\x05\x61\x0c\x8d\xc9\x9e\xcb\x48\xcb\x1c\x52\xd0\xab\xcd\xc9" + "\x30\x29\x40\xa9\x08\xa1\x6c\x0e\x97\x11\xba\x84\x4a\x27\x41\x79" + "\x5b\x71\x8a\x86\x17\x39\xdf\x87\x07\x18\x8b\x85\x97\x4c\xd1\x89" + "\x4c\x74\xb3\x9b\xb0\xb0\xe7\x7e\xb2\xf1\x92\x85\x6e\xc4\x7c\xfd" + "\x0c\x48\x89\xcf\xd8\x5e\x17\x5a\xc0\x67\x74\xbf\xec\x2e\xd9\x58" + "\xa7\x2f\x58\x5f\xa5\xcf\xd0\xef\x86\xed\xba\x5e\xfc\x10\x0e\x6b" + "\x0f\xfa\xb8\xe9\xc4\xf5\xee\x3d\x3f\xa9\x1d\xa3\x9f\x74\xfb\x44" + "\x47\xe7\xb0\x43\x9b\xec\x36\x60\xcc\x1d\xe6\xc3\xb3\xe8\x37\x6c" + "\x24\xf0\x6c\x4c\x0e\xde\xfc\x25\xe9\xb7\x39\xbe\x89\xd3\x31\x4c" + "\x37\xea\xf5\x5d\xbc\x74\x9a\x75\x79\xcf\x69\x0b\x08\x8c\xab\x39" + "\xc8\xfa\xa2\xb4\xbb\x06\x36\x8a\x51\x02\xb8\x6b\x6e\x73\x46\xa1" + "\xa6\xc5\xba\xf3\xc7\x0f\xd0\x02\x3b\x91\xbd\xc0\xab\x72\x91\xa9" + "\xb4\x88\x87\xa8\xc5\xde\x0a\xf2\xc8\xf0\xc1\x74\xeb\xb1\xc5\x4e" + "\x1c\xd6\xa7\x0a\xc7\x00\xfe\x8c\xc7\xb1\x37\xe1\xb8\x8f\xf4\x69" + "\x70\x02\xfc\x2b\x6f\x39\xb8\x74\xb9\x0e\x4d\x90\x05\x53\xfe\x75" + "\x7f\x7f\xc2\xac\xda\xff\xfb\x7f\xff\x3f\xb5\x2c\x22\x53\x24\x06" + "\x6b\xb3\x31\x7b\x1e\xe5\x7a\xde\xc1\x0c\xad\xed\x23\xd3\xd9\xee" + "\x57\x96\x73\x47\x1b\xd2\x2d\x4a\x25\xcf\x35\x99\x3c\xc3\xfb\x78" + "\x1e\xdd\x9a\xe2\x05\x9d\xdb\x02\xf5\x8e\x68\xbf\x91\x4e\x2f\xc0" + "\x09\xe2\xf5\x3f\x66\xd1\x78\x81\x67\x06\x66\xd9\x95\x1f\x2f\x41" + "\x3e\x78\xd0\xf2\x6d\x46\x6a\xdf\x89\xfb\xfd\x60\xf5\x09\x1b\x44" + "\x74\x57\xfa\x29\xef\x3f\xb5\xe4\xb4\x70\xf0\x9c\x36\x15\x12\xef" + "\xad\x64\x0e\xc4\x74\x59\x82\x2f\x58\xd2\xba\x53\xcc\x81\xb8\xf6" + "\x0f\x91\x38\xcd\x6f\x8d\x0b\x93\x38\x59\x37\x53\x1e\xf1\xda\xbd" + "\x17\xd7\xbc\xb0\xc6\xcd\xc9\xc7\x50\xc3\x3a\x2e\x3e\x11\x11\x4b" + "\x6c\x54\xb9\x0a\x96\x6a\xb3\xcb\x5c\x22\x2f\x73\x83\x81\x0e\x3f" + "\x45\x7f\x30\x31\xb6\xf3\xf0\x0c\xdd\x87\x04\xa4\x84\x5a\x69\x8e" + "\xf1\x18\x34\x5e\xe4\xc6\x75\xe0\xab\x40\xfd\x40\xdc\x24\x0d\x89" + "\x72\x54\x2e\x36\xa8\x5c\xb8\xd5\xf1\x4f\xe2\x46\xd9\x85\x71\x92" + "\xc3\x81\x2a\x96\xe3\x36\x8f\x04\xc0\x67\x37\x5e\x90\x51\x21\x8e" + "\x3c\x5e\xa3\x6e\xd5\x4a\x53\xfd\xef\xc1\x93\x1c\xdf\xf2\xd8\xc6" + "\x2f\x58\x04\x75\xf7\x94\xda\xec\x91\x7a\x21\xd9\x48\x33\xd7\x53" + "\x0c\x60\xb8\x30\x1a\xbc\xc6\xab\xb1\x68\x76\x7b\x8a\x11\x90\x97" + "\x3d\xf9\x82\x04\x0a\x41\x37\x7a\x90\x64\x90\x4b\x32\x38\xe6\xb8" + "\xcb\x4f\xb9\x24\x7d\x7d\x24\xc6\x22\x44\x22\x88\xc0\x77\x4e\x31" + "\xd0\xf5\xed\x9b\x9b\x9b\xf7\xe2\xb9\x06\x2c\x6a\x53\x0c\x54\x6a" + "\x3c\xa3\xff\x6e\xaa\x6f\xd6\xb6\x45\x2b\x18\x88\x0c\x45\x2a\x87" + "\x48\x82\x08\x91\x6f\x73\xa7\x8a\x98\xc1\x76\x91\x14\xa8\x59\x0d" + "\xef\xee\xae\xc5\x3c\xa2\x9b\xcc\xb8\x93\x85\xb4\xcb\xf8\xf0\x7b" + "\x5f\x09\x6c\x5d\xe0\xc5\x71\x13\xe8\x96\x49\x6f\x26\xd4\x45\xb2" + "\xfb\xa7\x3e\x9a\x06\x01\x0d\x4b\xf3\xac\xb9\xcd\x5d\x45\xeb\xb8" + "\x79\xd1\x6d\xbd\x8e\xfa\x47\xa2\xeb\xac\x3a\xcb\xbf\x90\xc0\x91" + "\x34\xdb\x5a\x8b\x38\x5d\x2d\xeb\xf0\xe0\x60\x35\xb5\xd2\xff\x31" + "\x74\xaf\xdc\xf8\x0a\xda\x19\xde\xd5\x26\xde\xa2\xf1\x57\xd3\x41" + "\x9c\xb8\x8a\x08\xb9\x8a\x07\xa0\x0a\xb4\xdf\x47\x29\x8b\x9c\x1c" + "\x5b\x74\x61\x18\xc8\xcd\xed\x0b\x9e\xa7\x42\x47\x9a\x60\x59\xc7" + "\x26\x99\x13\x54\x6e\x97\xe7\x58\xb8\x7b\x68\xa5\xe4\xad\xbb\x5b" + "\xc2\x10\x62\x2b\x80\x8d\xd3\xac\x84\xcf\x62\xc5\x4a\x78\xe4\xb6" + "\xab\x0b\x0f\x31\x96\x6c\x6c\x2f\xb3\xad\x54\x22\x4a\x88\x57\x6e" + "\x72\xdb\xda\xbf\x7e\x00\xb6\x6f\xb6\x7f\x0d\x33\x0c\x12\xd8\x5b" + "\xbc\xd6\x0f\xf1\x18\x06\xbd\xb0\x8f\x73\x07\xcd\xac\x22\x6c\x91" + "\x30\x09\xd8\x9d\x12\xa2\x92\x82\x56\xaf\xd5\x65\xc6\xb2\x3c\xd2" + "\x0e\xe2\xf1\x52\x71\x30\x72\x89\x15\x81\x2e\x60\xb9\xb9\x4d\x73" + "\x27\xc7\xbf\x04\x1a\xcd\x1f\xd9\xe0\xbc\xc7\x36\x38\xbf\xbc\xc1" + "\xc5\x85\x0d\xae\xb8\x3d\xf9\x5b\x77\x81\x2d\x98\x85\x88\x91\xed" + "\x33\xdc\xd8\x50\x12\x7c\xbe\xe2\x7f\x2c\x79\x9c\x20\x6d\x44\x3e" + "\x1a\x6a\x3e\x7e\x7e\xee\x5e\x01\x7f\x8e\x72\x6c\xfb\xf6\xa2\xa1" + "\xe6\x64\x25\xf7\x8a\xa8\x15\xe7\xd1\xc9\xb3\x87\x0e\x32\xca\x2a" + "\xec\x86\xf4\xdf\x76\x58\x22\x39\xfb\xd9\x28\x8c\x5b\xc5\xcf\xd9" + "\xc5\x36\x45\x6d\xc0\x4d\x6e\x75\x84\x5c\xde\xad\xa0\x51\xf0\x51" + "\x92\x61\x8c\x6d\x7e\x0b\x7f\x84\x1b\xc8\xef\xfc\xdf\xd4\xaa\x5d" + "\x94\x0b\xfb\xb3\x72\x30\x56\x3e\xc4\xb7\xe8\x65\xda\xc0\xae\xde" + "\xb2\x2d\xce\xe6\x56\xde\x70\xc4\x32\x03\x60\x88\x6f\x32\x06\x70" + "\x0b\x55\x26\x50\x9b\xfa\x7c\x6b\x10\xaf\xa3\x65\x32\x9f\x91\x0a" + "\x50\xec\x21\x35\xd8\x45\x87\xa8\xdf\x7d\x90\x3c\x92\x72\x9b\x2e" + "\x3a\xd9\x3f\xe2\x46\x5d\x53\x3d\x14\x2b\x21\xeb\x87\xf2\xc4\x6f" + "\xe2\x3b\xac\xa5\x9d\x83\x4c\x3c\xf2\x14\xfb\x25\x03\x12\xdc\x16" + "\x40\xd6\xc1\x04\x76\x22\xf6\xf4\xa0\x3f\x6b\x74\xa7\xf3\x38\x41" + "\xc5\xe2\xd6\x11\xce\x86\xe9\x8d\xcc\x5a\x39\x28\x24\x3c\xb3\xad" + "\x0e\xf9\xba\x33\x59\x7b\x79\x59\xb1\x19\xdf\xe1\x01\x22\x5e\x23" + "\xea\x3c\xa2\x71\x79\x6e\xb7\x50\x2b\xf7\x8c\x2e\xbd\xc7\x8b\x34" + "\xab\xba\xa3\x15\x11\x28\xaa\x1f\x6e\xef\x97\xe8\x84\xbc\x4a\x88" + "\x3a\x81\x2d\x3b\x59\x7f\x09\x90\xc7\x3b\x54\x7b\x32\xf2\xc0\x17" + "\xe0\x9d\x31\xd4\x49\x10\x9b\xb1\x48\x0e\xfe\x09\x2f\x7e\xa3\xa2" + "\x6c\xd0\x3e\xc4\xbc\x76\xf3\xee\x5a\x73\x93\x15\x4a\x37\xc5\xa0" + "\x3e\xc6\xca\x2a\xe6\x75\x88\x42\x6b\x59\xdc\x0d\xa5\x08\x51\xc1" + "\xc1\x16\x55\x58\xc7\x5f\x40\x79\x8d\xdb\x96\x60\x0b\x95\xd4\x34" + "\x99\xdf\x61\x0b\x88\x09\xa2\xd9\x8a\xd0\x30\x48\x25\xa6\x00\xa1" + "\x3f\xf4\x84\x98\x8e\x65\xac\xc7\x84\x31\xea\x1e\x09\x5e\x62\x74" + "\xf0\xee\x97\x61\xc0\x31\x6a\x3c\xa4\xe9\x0d\xda\xcb\xd7\x4b\xb0" + "\x34\x6b\x37\x53\x3f\xae\x0d\xbd\x65\xcc\x63\xca\x3e\xe2\x2b\x10" + "\xc1\xb1\x8a\x48\xf4\xa8\xe6\x11\xdb\x4d\xd9\x05\x03\x9c\xab\x55" + "\x50\xb2\xa6\xf5\x05\xb2\x85\x9a\x90\x28\xa7\x3a\x44\x78\x45\x5f" + "\x0b\xfb\xdd\xf5\x73\xf9\x31\x0d\xd3\xd3\x8c\xd9\xae\xc1\x98\x49" + "\xeb\x5f\xdf\xfd\x01\x56\x16\xf2\x86\xe5\xd5\x73\x16\x8e\xe7\x67" + "\xc0\xed\xe4\x77\xa5\xc0\xcf\xe7\x0a\xfc\x38\x69\x4c\xa2\xf9\x72" + "\x41\xac\x75\x6d\xab\xc4\xf8\x74\xd0\x9b\x4a\x5a\x3b\xbe\x07\x6e" + "\x3a\x18\xe5\x18\x5a\x24\x71\x14\xeb\x84\x08\x04\xe1\xac\x19\x3c" + "\xca\xcf\x45\xf4\xd8\xb6\x57\x8b\x6a\x72\x7d\x5b\x06\xdb\xfa\x96" + "\x6b\x9e\xa0\x27\xae\x3a\xc1\x91\xbb\x81\x61\xc5\xaa\x5a\x89\xa8" + "\x51\x50\x2d\xa9\x76\x63\x54\x1c\xde\xe8\x97\x91\x5c\x00\x6f\xf4" + "\x9b\x32\x15\x98\x11\x95\x87\xb1\xe8\x56\x0b\x92\xc4\xd3\xad\xa3" + "\xd6\x62\x81\x3f\x3d\xd1\xbc\x74\x59\x90\xf4\x61\xd2\xfe\x75\x62" + "\xa4\x12\xd7\x4a\x82\x24\x76\x3e\x76\x5f\xda\xa2\xe3\xb1\xd9\xf1" + "\x38\xd7\xf1\x38\xd7\xf1\x58\x76\x1c\x6a\x88\x81\x74\xdb\x14\x78" + "\xdd\x7d\x29\x93\xbf\xf5\xc4\x6f\xa7\x71\xd8\x02\xae\x4d\x84\xeb" + "\x3a\xf7\x16\x46\x08\xb3\x98\x6c\xb8\x1d\x9f\xee\xc7\x95\x75\x3b" + "\x9b\x8d\x4f\x57\xa5\xa8\xb6\x40\xf6\x64\xbe\xba\x94\x83\x72\x74" + "\x44\x84\xdf\x4c\x0d\xeb\x1b\x57\xe9\x96\x24\x13\xd9\x6c\x26\x9e" + "\xa0\x48\xe2\x13\x0f\x59\x98\x89\x58\x18\x0c\x84\x74\xbf\x9d\x93" + "\xc9\x0c\x9e\x9c\x96\x13\x21\xe0\x7a\x4a\x22\xc0\x20\xfc\xb6\xb7" + "\x55\x22\x10\xda\xe0\x7a\xbd\x2c\x98\xb7\x6a\x16\x0b\x51\x26\x00" + "\x71\x85\xc9\xdc\x22\x74\x31\x12\x27\xd8\x1b\x49\x8a\x70\xf2\x52" + "\x84\x00\xab\x5e\x8f\x75\x6c\x09\xcf\x8d\xf1\x58\x0f\x64\x5c\x98" + "\x23\x5b\x4a\x05\x50\xed\xdf\xf8\x37\x5a\x67\x40\xee\xd4\x48\x98" + "\x74\x3e\x0f\x75\xc7\x42\x54\x62\x02\xc4\x7f\xb9\x98\x2d\xc3\x61" + "\xb7\x6a\x42\xcc\x7e\x9c\x65\xf6\x02\x1e\x41\x5f\xf0\x6f\x63\x84" + "\xac\x9d\x96\xb4\x29\xad\x78\xbc\xf5\xd7\x8a\xd2\x74\x12\x26\xe2" + "\x9d\x68\x6a\x2c\xc4\xa7\x0a\xbd\x5d\x28\xf7\x45\x58\xfa\x68\x15" + "\xfe\x6f\xd1\x33\x7c\xd1\x00\xfc\x4f\x50\xaf\xfa\x8f\x49\x9f\x61" + "\x59\xfa\x8c\x9e\x90\x3e\x8b\x3a\xc8\x67\xca\x4c\xa6\x3c\x5a\xb9" + "\x20\x90\x52\x79\x48\xa6\xef\x14\x99\xf6\x18\xcd\x4d\x8b\x9c\x6b" + "\x10\xb9\x99\x27\x28\x6d\x6e\x03\x7e\xff\xdc\x0d\xf8\x44\xf0\x0e" + "\xd7\x62\xf4\xab\xf6\xdd\x4b\x63\xdf\xc5\xc3\xed\x57\xa1\x2b\x9d" + "\xec\x91\xb0\x59\xfe\x6c\x06\x73\x19\xce\x61\x27\x40\xdb\x05\x36" + "\x4b\x2a\x3e\x8f\x22\x6f\x4c\xf7\x3a\x40\x86\xef\x2b\xbe\xd3\x5d" + "\xf6\x96\xb1\x0b\x72\x3c\xc4\xc0\x6b\xd9\xca\xf7\xe5\xdd\x76\xf1" + "\xca\xdb\xa8\x87\xf8\xe7\x8f\x7d\x3e\x92\xca\xec\x10\xc8\x0c\x9e" + "\x7c\x37\x6b\xaf\x97\x41\x20\x13\x3d\xc0\x49\xe5\x3e\x32\xf0\x93" + "\x66\xf0\xb0\xff\xcd\xf0\xe7\xd3\xb7\x3f\x8d\x6f\x45\x6f\xfa\xdc" + "\xcd\x6e\x7e\x7a\xaf\xee\x24\xb9\x1c\x1b\xce\x97\x3c\xdb\x90\x77" + "\x76\x78\xbd\x0e\x7f\xba\xdf\x1b\xb7\x99\x7b\x46\x86\x1a\xef\xfc" + "\x82\xc1\xc4\x36\x1b\x31\x9d\x7e\x4c\xbf\x94\x82\xe5\x66\x49\x8f" + "\x1e\xcc\x4b\xa9\x3a\x4d\x91\xfc\x81\x53\xb6\x3f\xf0\x07\x43\x3b" + "\x22\x78\x9f\x7c\x05\x5e\x76\x5f\x8a\x79\x9f\x55\x76\x75\x69\x06" + "\x30\x01\x40\x06\x86\x7c\xb3\x91\x76\x24\x7c\x47\xdf\xb7\x94\x5d" + "\x84\x2a\xa8\x6a\xe2\xf6\xb1\x45\xb2\x45\x51\x1e\x53\xfa\x0e\x55" + "\x15\x87\x4e\x02\x01\xfb\x96\x71\x3b\x96\xbc\xfa\x9c\x6e\xed\x53" + "\x10\x61\x18\xcf\xc4\x04\x51\xed\x59\x48\xce\x45\x2d\x9d\x9d\x83" + "\x96\x04\x2b\xc4\xeb\x59\x25\xdc\x40\xea\x5f\xcb\x47\xdd\x2d\xd1" + "\x42\xe8\x40\xd9\x4f\xc6\xa6\xf7\xc0\x85\x43\xcf\x1b\x04\x9c\x08" + "\x5a\xe1\x86\x3d\xee\x20\x76\x9d\xa2\x4d\x8e\x4d\xdb\xa0\x88\x68" + "\x87\xfe\x3a\x5c\x90\x42\xfd\x19\x5d\x81\xdc\x97\x89\x1d\xb1\x10" + "\xbe\x19\x4b\x88\x2a\x5f\xab\x31\xc2\x29\xd7\xc1\x5e\x3b\xe2\xac" + "\xbb\xdf\x2a\x4e\x72\xe7\xb0\x45\xb3\xd8\x79\xd1\xa2\x69\xec\x7c" + "\xd3\x3a\xc8\x6a\x9c\x24\x02\x6c\x59\x8d\x82\xfe\x45\x87\x13\x43" + "\x90\x38\xad\xd2\x5c\x57\x0d\x38\xd6\x91\x55\xfa\x1d\x39\x37\x31" + "\xe3\xee\x23\xaa\xb7\x1d\xc9\x9a\xe9\x16\x36\xf8\xdc\xc2\x84\x6f" + "\x20\x01\x6d\xe1\xe0\x95\x77\x81\x5b\x08\xb3\x7a\xae\xfc\x1c\x70" + "\xb8\x4f\x24\x1d\x40\x1b\xf7\x60\xb3\x39\xdc\xc7\xd7\xc3\xfd\xa4" + "\x85\x09\x18\xe1\x1f\x3d\x1e\x8d\x48\x9c\xb9\x15\x50\xf3\xa5\x29" + "\x0a\x4c\x30\x30\x22\x46\x30\xcb\xad\xd9\xae\xb9\x51\x5b\x9c\xcb" + "\x06\xb8\xb4\x78\xe8\xa3\x9e\x1c\x2f\x0e\xec\x1b\xc6\x09\x72\x34" + "\x01\x6f\xa9\x7d\xc7\x30\x69\x87\x66\x25\x4a\xff\x51\xfc\x04\x4d" + "\xc9\x4f\xc5\xc9\x53\xb9\xe4\xa5\x0a\x7a\x0e\xe8\x80\x53\x0e\xbd" + "\xe0\x4b\x93\x7a\x9d\x16\x99\x2a\x41\x0b\xa8\x43\xf2\x62\xaa\xe6" + "\x10\xc8\x3d\x6c\xa4\xb6\x7c\x13\x31\x97\xe8\xfe\x0a\xe0\xfc\x9d" + "\xe2\xba\xca\xdf\x3a\x77\x22\x0f\xba\xe6\x11\x62\x72\x1b\x83\xe6" + "\x26\xbc\x16\x22\x06\xa2\xa9\x45\xe4\x5e\xf1\x31\x5a\x65\x35\xe7" + "\xf7\xe1\x5b\xdc\x28\x42\x11\x27\x57\xd8\x61\x1c\xb4\xfd\x6f\x23" + "\xc9\x49\xb5\xfd\xbd\xbd\xcc\xb7\x3b\xea\xfa\x3d\xe6\xb9\x61\x37" + "\xee\xb5\xbd\xe6\x7d\x24\xaf\xda\x71\xdd\x9d\xc3\x7a\xdd\x36\x52" + "\x76\x0e\x98\xd7\x34\x6f\xca\xc6\xb8\x09\x0c\x72\x90\x6d\xb2\x87" + "\x38\x85\xa1\x8c\xb1\x22\xb7\x74\xa3\xb6\xaa\x05\x9f\x79\xb8\x04" + "\x52\x4d\x6f\x68\x53\xa5\x5e\x24\xaf\xcd\xa1\x7c\xa6\x97\xcc\x8f" + "\x14\x0d\x29\x32\x8d\x99\xdc\x40\xf3\x8d\x31\xaf\x14\x6e\x7c\x16" + "\x04\x73\x21\x7e\x76\x3c\xf1\x6b\x13\xfe\xbf\xc4\x2e\x11\xf6\xbb" + "\x84\xf2\x2e\xde\xd8\x04\x6c\x21\xfc\x8a\xf1\x74\xdf\xf9\x8e\x8a" + "\x22\x33\x8e\x38\xa7\xca\x18\xcc\x2c\x11\x17\x49\x16\x4e\x90\x2e" + "\x40\xdf\xf1\xf6\xdd\x0c\x92\x77\xb8\xb9\xc2\x0e\xf5\xc2\x80\xee" + "\xb3\x89\xb4\xb2\x5a\x1f\x23\x13\x7f\xe6\x88\x29\x44\xcc\xcf\x7c" + "\x8c\x18\x9d\x9d\x0b\xe4\x08\xcc\x99\xdf\xe5\x19\x85\x01\x7c\xe7" + "\x36\x8c\x1f\x40\x44\x45\x4f\x79\x56\xee\x77\x23\x18\xf9\xa9\x01" + "\xd6\x79\x6e\x05\xaf\x69\xcf\x8d\xfb\xad\x6e\x4f\x5e\x81\xd5\x6f" + "\x71\x46\xdb\x6d\x1f\x4d\xcd\xbc\x10\x55\x9b\xaf\xa9\xe7\x7d\x9c" + "\xab\x25\x4c\x63\x48\x7e\x22\xa3\x13\x59\xf4\xc0\xb8\x81\x7a\x22" + "\x9d\x28\xf1\xb2\x0b\x80\xdc\x7a\x2f\xae\x91\xb2\x50\x90\x5d\x88" + "\xe7\xbe\x0b\x6d\xa1\x10\xb7\xe2\x51\xcc\xdf\xe7\x12\x29\x8b\xb2" + "\xfe\xef\xbb\x26\x05\x1b\x50\x0c\xcb\x07\xfc\x0b\x19\x25\xd8\x9a" + "\x40\xbf\xf6\x8d\x54\x11\xeb\x24\xdb\x07\xa8\x24\x62\xf0\x29\x86" + "\xee\x38\xe5\x2e\x97\xe1\xc4\xfb\xa6\x15\x93\x19\xdd\x13\xf2\xc0" + "\x38\x9d\x72\xdc\x07\x74\x8e\xd7\x7e\x89\xd4\x4b\x0a\xef\x12\xfd" + "\xcb\x5e\x0e\x3b\x68\xaf\xb3\x9a\xdf\xf1\x3e\x3a\xa3\xc9\xe7\x51" + "\x1f\x23\x7b\x65\x1d\x52\x43\xd5\x2c\x8f\xa9\x9b\xe8\x1e\xca\x25" + "\xaa\x48\x81\xfe\xd0\x3d\xd0\x78\x80\xe4\x76\x35\xf7\x47\x35\x90" + "\x87\xf0\x39\xec\xd8\x48\x06\xd0\x45\x92\x58\x9f\x3e\xf4\x1a\x86" + "\x2f\x81\x21\xe2\xf6\x5f\x01\x4b\x69\x0d\x20\xe6\xbb\x3f\x71\x20" + "\xfb\x88\x3f\x6a\x44\x36\x9b\x1f\x45\x92\x48\x13\x93\x03\xd2\x9a" + "\x39\x97\xb0\xc0\x61\x7a\x60\xfd\x5d\x09\x5b\x0e\xb4\x02\x55\xf3" + "\x28\x5a\x26\x22\xcc\xb8\x51\x05\x3c\x16\x66\xdc\x81\xdd\x45\xb4" + "\x1f\x92\x34\x2b\x20\x34\x1b\x4d\x0a\xf8\x60\x3f\x5a\x1d\xc3\xae" + "\xbf\x0a\x3b\xbc\x25\xc6\x22\x1b\xe9\x9f\xb8\xda\xfc\x80\x2c\xc3" + "\x12\xd4\xb1\x52\x6a\x89\x96\xfe\x13\x9c\x4e\xa4\xda\x91\xfa\xf6" + "\x80\xa0\xd9\x18\x90\xcb\x7d\xf9\x80\x73\x15\x41\x1d\xe8\xc7\x1b" + "\xe2\xd8\xb4\xc9\x86\x9e\x2e\x46\xea\xe3\x6e\x97\xd5\x48\x95\x64" + "\x63\xaf\x3e\xfc\x88\x40\x44\x72\x64\x90\x50\xca\x67\x99\x5f\x63" + "\x40\x1f\x5d\x5e\xb2\x37\xa4\xb2\xaa\x9d\x0a\x44\x69\x34\xda\xca" + "\x74\x2b\x12\x7b\x20\x11\xff\xd8\xf5\x81\x84\x03\xf3\x16\x69\x9c" + "\xfc\x06\xe6\x3b\x76\xd5\xde\xe6\xa3\xf6\x80\x48\x9d\x8d\x27\x91" + "\x08\xcf\x03\x5e\xcd\x27\xed\xbf\x64\x7f\x7d\xf2\x58\x0e\x51\x76" + "\x60\x04\xbf\x8f\x77\x4b\xb0\x10\xd0\xec\x49\xdc\xd0\x08\x41\x2c" + "\x53\x36\x71\xa5\x95\xef\x64\xb6\xc7\xd4\x01\x63\xe1\x4a\xa6\x45" + "\xf9\x4f\xd3\xfc\x01\x1d\xf7\x9d\xec\x8a\x3e\xf4\x67\x42\x4c\xa1" + "\x6e\xee\x50\x37\x77\x80\x83\x52\x3b\x2b\x8c\x20\x90\xe8\x4e\xac" + "\xae\x03\x8c\x1c\x89\x1d\x2c\x70\x7f\x12\x3d\x1a\xd2\x6e\xfd\x9d" + "\xf0\xd3\x86\x7d\x17\x1a\x08\x1c\x07\xb7\x72\x93\xf6\xe1\x60\xf2" + "\x20\xe6\x35\xe9\x11\x43\xcf\x1e\x06\x29\x40\x4e\xc9\xa7\x3a\x3c" + "\x04\x0d\xda\xff\x2c\x40\x14\xba\x29\x41\x4b\x29\xea\x91\xac\x0a" + "\x47\xaf\x3c\x93\xdf\x1e\x2a\x3f\x0b\x01\x17\xec\xa4\x3b\x09\xde" + "\xa7\xa2\x26\x5f\x91\xac\x7a\x5d\x4c\x85\x63\x90\xdd\x1f\x25\x86" + "\xd3\xbe\xb7\xa3\xc9\x1b\xb6\x54\xdd\x7e\xbe\x73\xf5\xfa\x89\x60" + "\xff\x8c\x35\x23\xb7\x09\x45\x77\x8a\x6c\x10\x8b\xdc\xb5\xe0\x6e" + "\x43\x60\x67\x0f\x98\x00\xb2\x85\x4c\xaf\x7c\xc4\x0d\x88\xe9\x65" + "\x80\xd1\x5a\x33\xac\xc6\x37\x3d\x41\x78\xb7\xb6\xda\x7b\x12\x46" + "\x8b\x02\xf6\x20\x22\x73\x7d\x11\xf4\x95\xf0\x42\x3c\x4a\xb2\xaa" + "\x82\xc1\x9e\x7b\x21\x48\xfa\x58\x5f\xda\x16\x8c\x4d\xc4\x62\xf7" + "\x32\x69\xe3\xa9\xb9\xef\x76\xa3\x1e\xbc\xde\x2b\x56\x6a\x2d\x4a" + "\x83\x74\x0c\x7c\xdb\xa7\x87\xd6\x30\x75\xdf\xe3\x03\x11\xe8\x21" + "\xf2\x1c\xb4\xde\xb5\x31\x9a\xa0\xb5\x7d\x77\xc8\x22\x45\xcf\x5d" + "\x8f\x0d\x69\xaf\xbd\x4c\xdc\x35\xca\xd6\x8a\xbb\x44\xa9\xe8\x7b" + "\xb5\xd8\xb9\xa6\xd7\xb1\x92\x9a\x10\x2b\x43\x96\x91\x9e\x1f\x71" + "\x80\x31\x41\x93\xa0\x10\x78\x6d\x4d\xd2\x0d\x12\x20\x98\x16\xc0" + "\xe2\x88\xb8\xf3\x18\xda\x94\x64\x24\x71\x3a\xf6\x5c\xee\x88\x34" + "\x46\xc8\xad\xdf\x23\x37\x02\xf4\x1b\x0d\x20\x50\x60\x30\xf9\x75" + "\x18\x20\xc9\x39\xa7\x4c\xb1\x85\xd9\xae\x57\x64\x18\x29\x23\xda" + "\x7e\x8a\x6e\x9a\xd2\xc3\x0f\xa1\xf8\x8a\xf0\x23\x25\xec\x10\xb7" + "\xa7\xc7\x2d\xc6\x23\x65\x62\x85\xe5\x10\x42\x59\x20\x7a\x52\x5d" + "\x9b\xd1\x46\x6d\x77\x0a\x9d\x52\xf5\xc1\x84\xf9\x20\xec\x0a\x72" + "\x0c\xcb\x3b\x16\x9d\x45\xa1\xd3\xc9\xb3\xfb\x24\x9b\x50\x34\x70" + "\x89\x49\x98\x00\x98\x25\x1a\x02\x51\x25\x64\x3e\x71\xa0\x7a\x7f" + "\xdc\x6c\x26\xe6\xe8\x39\x99\x08\x2b\x86\xf1\x14\xff\xa6\xe5\x56" + "\xa0\xed\x42\x3d\x34\x92\x32\x07\xb0\x93\x32\x5c\x8a\x1f\x5f\x78" + "\x17\xc0\x68\xd7\xeb\xb9\x84\xac\x26\xe4\x3c\x1f\x85\xfe\x00\xc7" + "\x29\x65\x82\xfb\xd4\xa1\x44\xcc\x39\xcc\xcd\x7f\x19\x22\xfa\xd2" + "\xb1\xcb\xa3\x62\xf4\xd0\x69\x49\x69\x21\x9f\x4b\x61\x51\xbd\xae" + "\x3f\x2b\x48\x09\xa8\x6d\xf2\x47\x9e\x52\x88\x79\xcc\xc4\x8f\xad" + "\xa5\x08\xf9\x15\xca\xd4\xeb\x6b\x53\x24\xc8\x89\x0b\x5c\x53\xf7" + "\x43\xe8\x26\xaa\xdd\x04\x53\x64\x99\x92\x43\x54\x96\x1c\x70\x41" + "\xa5\x38\x96\xb9\xe8\x8f\xc4\x94\x1f\x1e\x8a\x2b\x3c\x0d\x5d\x8e" + "\xb1\x10\x50\xac\x10\x03\x29\xb0\xdf\xcc\x25\x8a\xbf\x40\x75\xf1" + "\x3d\x47\x4e\x1d\xf6\xcd\x4b\x60\x14\x70\x0c\xdc\x97\xeb\x7b\x0e" + "\x0c\xba\x6b\xb8\xf8\xa8\x6b\xe8\xa2\x09\xf9\xd4\xc4\xc0\xb7\xb9" + "\xe6\x0b\xfc\xcf\x28\x86\x6c\xf0\x20\x1c\x7e\xf4\x47\x74\xcc\x69" + "\xdf\x2b\x49\x44\xc1\xef\xe6\xa3\x95\xa8\xbb\x8b\x78\xb6\xe6\xa8" + "\x16\x5c\xaf\x02\x33\x9c\xb4\x2d\xbe\xe6\x4a\xe2\x62\x56\x72\x48" + "\x52\x2c\x4b\x30\xe1\xb6\x0d\x0f\x8e\x21\x8b\xc4\x49\x7e\xaa\x0d" + "\x75\x87\x1d\x76\x60\xe2\x51\x63\xe0\xe0\xa8\x67\x3b\x93\x5f\x41" + "\x3a\xf0\x5d\xcf\x7c\xc7\xa2\xd9\xb2\x7c\x7c\x8e\xc4\xc1\x4a\x8b" + "\x3c\xce\x3a\x79\x1a\xe2\x94\x18\xbb\x1f\x42\x4d\x7e\x77\x6c\x81" + "\xff\xb9\xcb\xf8\x42\xa9\xb4\xa2\xab\x6d\xc3\x76\x06\xc3\x13\x02" + "\xb5\x40\x4d\xa4\x6b\x9a\xa4\xb5\xa9\xae\xd0\xdc\x74\x4f\x85\x5c" + "\x91\x91\x33\x5a\xdb\xfa\x0d\x39\x37\x63\x27\xc6\xdc\x7a\x0f\x37" + "\x36\xda\xb9\xac\x45\x2a\x30\x14\x75\x70\x57\xd9\x32\xe7\x8a\x05" + "\x90\x7b\xf9\x32\xe6\xa8\xf8\x1a\x26\xd7\x53\x18\x9f\xf9\xfd\x31" + "\x11\x21\x21\x3d\xbe\xf5\x5d\x52\x22\xe7\x82\x8f\x70\xe9\xe8\xe6" + "\x99\xfc\x8c\x0c\xc0\x50\x59\x99\xf6\x81\x85\x7d\x72\xb4\x1c\x72" + "\x97\xb8\xf4\xc8\x11\x2e\xc9\x52\x2d\x97\xe4\xd5\x72\x4a\x59\xb7" + "\x63\xa4\x66\x5a\x85\x10\x06\x30\xd1\x27\x34\x58\xb7\x42\x00\x8d" + "\x95\x81\x1b\xa3\x32\x37\xbb\x74\xde\x53\xcd\xdb\x01\x1b\xbb\x2f" + "\x43\x03\x45\xc7\x22\x27\x4c\x47\x55\xb3\xc0\xe1\x70\xfb\xef\x40" + "\x84\x0c\xc1\x48\xe6\x8b\x4a\xf9\xfe\x2f\x47\x70\x0e\x92\x83\x4b" + "\x9c\x0c\xe8\x95\xf0\xd7\x46\x0e\xf9\x1e\x19\x24\xb9\xa0\xda\xe2" + "\x16\x65\xd8\x35\xf0\x34\xcc\x77\x43\x8c\x65\x0d\xef\x87\x29\x6d" + "\xda\xc1\xc3\x7a\xd8\x19\xe0\x55\xc0\xad\x07\xfc\xab\xf6\x93\x09" + "\x5e\x51\x1d\x81\xa0\x13\x12\x97\x21\x58\x48\x52\x14\x69\x05\x6c" + "\x62\x28\x60\x29\xe8\x13\xd4\x8d\xb6\x20\x6e\xd6\x0f\x48\x93\x29" + "\xaf\x04\x8f\x23\x81\x62\xc5\x19\x26\xa6\xce\x17\xa2\x46\xd6\xa5" + "\x2e\xea\x76\xf0\x96\xd2\x67\x0b\x74\x89\x64\xbe\x59\x44\x27\x99" + "\xa9\x3e\x5d\x24\xf8\x91\x18\xa2\xa6\x31\x87\x2e\x78\x5b\xb9\x2c" + "\x4f\x98\xf3\x08\xde\x38\xca\x8a\x17\x27\x74\xa8\xc2\x77\x94\xeb" + "\xc1\xc0\x70\xa8\x80\x0d\x44\x3e\x31\x07\x20\x17\x48\x2c\xea\x9a" + "\xc5\x08\x59\xa1\xc0\x90\xce\x64\x80\x63\x83\x35\x81\xfe\xf7\xcc" + "\xef\xa5\x4c\xa9\xba\x3b\xc6\x58\x01\x40\xca\x41\x48\xfa\x0f\xa2" + "\xa3\xa8\xfe\x8c\x9b\xa9\x7e\x71\x8c\x1a\xaa\xd6\x4e\x65\x5d\x1f" + "\x2a\x32\x42\xad\x55\xe5\x9d\x54\xe8\xb6\x48\x2c\xc0\x95\x2b\x15" + "\x56\x30\xd0\xff\x45\xc2\x89\x94\xdc\xdf\xa0\x36\xc2\xd1\xda\x79" + "\x8d\xaa\x21\xa2\x2a\xd7\xa8\xaa\x74\x9a\x28\x95\x6b\x76\x19\x17" + "\xff\x03\x89\xdb\x21\xa2\xac\x1f\x4f\x65\x6b\x39\xe2\x0e\xab\x03" + "\xe9\xbb\xbd\x13\x02\x07\x1a\x66\xa5\x1d\x5a\x36\xff\x50\x3c\xb5" + "\x64\xf7\xa3\x14\xd6\x78\x86\xe9\x11\x72\x72\x80\xe9\x52\xda\x8a" + "\x9c\xb4\x30\xa4\x15\x24\x89\xa7\x5b\x87\x4a\xe6\xae\x26\x56\x3c" + "\xa5\xed\x53\x61\x0a\xf5\x82\xc8\x3f\x11\x7e\xd4\x99\xa8\xd8\xa5" + "\xed\xf0\xa5\x7b\xd0\x0e\x1b\x8d\x8c\xf3\x4c\xba\x21\x71\x9a\x3e" + "\x8a\xa8\xd3\xdc\xd9\xb2\xdf\x14\xf1\x12\xa4\xcb\x8a\x85\x4a\x24" + "\x5f\x6c\x50\xd2\xc9\x2b\x0d\x5f\x36\x50\x85\x98\x40\x1b\xc2\xc3" + "\x25\xdc\x3b\x74\x32\x96\x3e\xbf\xca\x4c\x28\xfb\x6a\xac\x68\x46" + "\x3b\x82\x87\x6a\xe5\xb0\x18\x64\x3c\xf7\x65\x04\x4b\x38\x41\x3a" + "\x67\x18\xa2\x17\x26\x4a\x9c\x25\x60\x53\xe7\xde\x02\x84\x7b\x68" + "\x89\xc4\x1b\x78\xeb\x8b\x6a\xff\xd8\x92\x03\x1e\x65\x0e\x29\xee" + "\xa9\xcd\xbc\x20\xc6\x39\x5a\x1b\x45\x26\x06\x21\xe1\x8d\x3e\x01" + "\x31\x4d\x51\x16\x1a\x59\x0f\x49\x2f\xf9\x3d\xa9\x35\x75\xde\xef" + "\xf5\xa1\x93\xc4\xea\xcf\xa6\xe2\x9d\xb7\x73\xca\x35\x31\x85\x48" + "\x37\xe4\x8d\x05\x65\xa5\x4a\x22\x75\x28\x49\x41\x63\x12\xba\x42" + "\xef\xff\xac\x8d\x53\x10\x32\x59\x64\x27\x5b\x33\xc0\xd8\x01\x19" + "\xc1\xb8\xa7\xe8\x8b\x2c\xf4\x03\xd0\x01\xdf\xa1\xa0\xfd\x38\xeb" + "\xb9\x56\x51\x31\x42\x5b\xf0\xcf\xa4\x65\x79\x0b\xf3\xc6\xdd\x9f" + "\xd5\x6c\xb6\x7f\xae\x20\x6a\x4d\xbc\xa1\xde\xfe\xd9\x81\x8f\xb9" + "\xd5\x91\x4f\xaf\x5a\x11\x46\x0e\x13\xab\x8c\x64\x83\x8a\x18\xa9" + "\xc6\x6a\xd7\xa9\xd9\x01\xcd\xb3\xed\xb1\xc8\x42\x3c\xb3\xfe\xad" + "\x3a\x10\xfe\xa3\xca\x42\xfe\x0f\xa3\x05\x74\x9e\xfb\x32\x43\xec" + "\x57\x54\x25\x14\xfa\x45\x3d\x7c\xa7\x1e\x7e\xa7\x87\x5c\x5b\x9f" + "\xd1\xa6\xcf\xb8\x41\xee\x0b\xae\x3b\xe3\x66\x3d\x3f\x1b\x17\xc8" + "\x61\x7c\x7b\xe0\x14\x5b\x09\x13\xa1\x9b\xd0\x28\x10\xa3\x41\xe2" + "\x3d\x6b\x78\x92\x7c\x2e\x8c\x5e\xe4\x4d\x61\x66\x4a\xe1\xe6\x38" + "\x61\x8b\x03\x5b\x94\x32\xdf\x0e\xaa\x4c\x6f\x96\xf6\xd8\x59\x8f" + "\xcb\x96\x8d\x43\xc3\x91\x2f\x14\xef\x87\x5b\x2c\xb7\x73\xf6\x0c" + "\xc1\x63\xf6\x0c\x51\xd9\x9e\xc1\xff\xb7\xbb\x8b\x45\xca\xfe\xf3" + "\xb3\xff\x94\x15\xf8\x9f\xbf\x1a\xf0\x99\x17\xf2\x15\xed\x1a\xe9" + "\x4e\x3e\xcb\xb0\x83\x4d\xb4\xa1\xe3\x32\xab\xdc\xeb\x94\x06\xbe" + "\xc2\x32\xa5\xe0\x2f\x96\x7f\x6d\xc4\xb3\xa2\x9d\x4b\x2e\x0a\x4e" + "\xcb\x02\x86\x9e\x8c\xa7\xd1\x94\x55\x5a\xb1\xc0\xf0\x15\x7c\xb3" + "\x72\xab\xe0\xd5\xa3\x3e\x29\xf4\x5c\xf4\x49\xc1\xc8\xcc\xfb\xb1" + "\x70\x02\x51\xc6\xd6\x18\x9c\x99\x8e\x16\xd8\xd2\x70\xf6\x52\xa1" + "\x56\xb5\xf3\xc8\x10\x2d\xc1\x66\xda\xc9\x35\xca\x9e\xd3\x22\x6e" + "\xa3\x24\xad\x5d\x51\x87\x45\x17\x96\x10\x1d\x6b\x9f\xed\x8a\xba" + "\xeb\xb0\xd8\xde\x35\x9c\x50\x81\xf3\x42\x59\x4d\x45\x6a\x96\xd6" + "\x0f\x61\x47\x6c\xde\xe4\x52\x6c\x5c\x56\x40\x17\xca\xd8\x78\xf0" + "\x4a\x8d\xee\x8a\x5c\xee\x2c\x75\x8a\x4e\x5b\x4b\xf2\x59\x21\x97" + "\x95\x9f\x43\x45\x0e\x2b\xc2\x0b\x54\x5e\x3d\xa8\xac\x68\x2e\xa4" + "\x05\xbc\x22\x26\x41\x91\x98\x8c\xf3\xc4\xc4\x2f\x11\x93\xb8\x62" + "\x49\x16\x1b\x17\xd6\xf4\x3a\x1b\xae\x54\x65\x02\x8c\x13\x5a\xf3" + "\xe3\x1a\x46\xf6\x44\x7b\x60\x58\xef\x21\x9a\x6e\x51\x8c\x12\x95" + "\x09\x0d\x89\xa1\x48\xc8\x93\xfb\x79\x74\xd7\xac\x9d\x25\xba\xc8" + "\x60\x9e\x4c\x6b\xb8\xe4\x6b\x0a\x3d\x6a\xc0\xcc\x4e\x9a\x35\x0b" + "\xd7\xd7\x70\x8e\xa1\x21\x0c\x1a\x31\x7b\x68\x88\x3a\x61\x1a\x41" + "\x82\x23\xfc\x75\x80\x5e\x8c\x6a\x82\x6c\xa8\xe6\x71\x5a\x05\x68" + "\x61\xde\x12\x59\xc1\x60\x09\x52\xf1\x03\x5b\x0b\x6f\xf9\xcc\x9f" + "\x80\x69\x6f\x21\xe1\x19\x60\x7a\x14\x08\x85\xc2\x82\x29\xf7\xd2" + "\x99\xfb\xb2\x8f\x78\x59\xe5\x3e\x9e\x5f\x3b\xbf\xfc\xc9\xb5\x83" + "\x16\x45\xd2\xa5\x30\x5b\x3d\x21\x09\x1e\xd3\x3e\x1a\x61\xfb\x11" + "\x1f\x09\x07\x8e\xb1\x81\xa3\x30\xc6\x11\x76\x43\x78\xbe\x9b\xd8" + "\xbb\x80\x39\x86\x91\x18\x89\x2f\xfd\xd2\x4a\x7c\x28\xac\xc4\x07" + "\x63\x25\x3e\x64\x2b\x51\x22\x73\x5f\x22\x73\x71\x65\xce\x9e\x5a" + "\x99\x5f\xe6\x24\x1e\xe7\xdc\xc3\xe5\xca\xcc\x7c\xe6\xd0\x57\x5d" + "\x2e\x3e\xac\xf7\xa4\x30\x3a\x0f\xa9\xa9\x2c\xb9\x29\xe5\x56\x83" + "\x55\xc8\x78\x59\xca\xa8\xc6\x4e\x64\xd4\x7b\xe5\x3f\xb1\x8c\xf3" + "\x66\xfc\x8f\xae\xe4\xd9\xbf\x7e\x25\x17\xbd\x08\x8c\x75\x1c\xf1" + "\x98\xf8\xc4\x9a\x37\x1c\x42\xfd\x98\x54\xda\x85\x6b\xbe\x8a\x4e" + "\xd4\xac\xfd\x32\x5f\xd6\x60\xeb\x5f\x06\xa3\x9a\xdc\xdc\x8a\xae" + "\x04\xf3\x30\x78\xa8\xf9\xe3\xda\x03\xe4\xf4\x60\xa3\xc7\x7b\x2c" + "\x26\x45\x32\xe1\xd5\x60\x5b\x02\x8c\x1f\xd5\x60\xc3\xc4\x40\x82" + "\xd9\x82\xdd\x62\xed\xb8\x48\xf4\x12\x16\x77\xec\x16\xda\x35\xd6" + "\xb3\x08\xb1\x83\x7d\xbe\x2d\xdd\x50\xaa\x3c\xa1\x96\x7a\x6d\xa3" + "\x1b\xf3\x2e\xa2\x7a\x6e\x71\x2b\xdf\xb7\x74\xab\xf3\x5f\x84\x71" + "\x86\x9f\x60\x3f\xe6\x01\xec\xcf\x8d\xbf\xe7\x6c\x4f\x33\x52\xf4" + "\x41\xe2\xa1\x01\xba\x42\xcd\x3c\x39\x22\x51\x72\x3a\x0f\xd0\x54" + "\xdc\x28\x25\xa8\xd4\xd8\xe0\x32\xf2\xbd\xba\x29\xf5\x4a\x45\xbc" + "\x78\xec\x3e\xdb\x47\x00\x7e\x2f\xd7\x83\x01\xb0\x5a\x22\x0a\xe0" + "\x85\xce\x92\x03\x3a\x2b\xa9\x48\xeb\x36\xa0\x2f\x1f\x03\xba\xc8" + "\xa9\x7c\x57\xa2\xb6\x48\xe4\xc2\x2a\xbe\x38\xb2\x0b\x8e\xdd\x57" + "\x9c\xfc\x2c\x14\xdf\x29\x70\x13\xfd\x55\xb5\xb5\xba\x9f\x73\x22" + "\xb0\xf6\xbd\x85\xbf\x2f\xb2\xed\x47\x5c\x3a\x69\xac\x45\x98\x2c" + "\xe8\xe1\xe5\xf5\x0d\xe0\x2e\x1d\x57\xf9\xe8\x5d\xb0\x4e\x6c\x34" + "\x07\x36\xbc\x08\xfc\x4a\x67\xf4\xb4\x0a\x2a\x5c\x9c\x06\x50\x48" + "\x03\x6e\xfc\x19\x9f\x2f\x13\x41\x87\x65\xd0\x7e\xdc\x1c\xc9\xac" + "\x31\xe2\xc1\xdc\x1b\x29\x93\x75\x69\x55\xef\x13\x0c\x82\xd0\x46" + "\x55\xbd\x45\xb3\x56\x1f\x20\x49\x9f\x21\x07\x84\x8f\xc9\x01\xbc" + "\x2c\x07\x24\x4f\xca\x01\xaf\x3d\x3f\xc8\x88\x10\x00\x67\x42\x56" + "\xc5\xf8\x73\xc5\xf8\x7f\xd0\x04\x58\x8d\x97\x39\x5a\xe6\x95\xdd" + "\xea\x7b\xf9\x82\x6e\xe1\x01\x99\xdd\x4a\x1c\xd9\x55\x56\xd8\x4f" + "\xd0\xd5\x4a\x1c\xaa\xdd\xfb\x41\x50\x4b\xbc\x3b\x20\x51\x80\x3b" + "\xf7\xb5\x98\xc3\x14\x8f\x62\xe0\x87\x32\xaa\x38\x14\x0e\xb1\xa2" + "\xff\x59\xd9\xaf\xe2\xda\x4f\xfe\x6b\x5f\x51\xe3\xc5\x1c\x48\x2f" + "\xa3\x42\x33\xef\xa1\x36\x85\x3d\x02\xf3\xcf\x48\xa9\x06\x64\x36" + "\xe2\xb2\x9e\xa6\x55\x92\x9b\x7f\xff\x73\x6b\x43\x06\x3c\xf8\xa7" + "\x96\x06\xff\xf7\x2c\x0c\x9e\xfc\x8b\x17\x45\x55\x37\xff\x07\xad" + "\x09\xfe\xcf\xae\x88\x5c\x41\xac\x0c\xf6\xee\x64\x0e\x52\xa9\x8c" + "\x3b\x15\x97\xd6\x08\xce\x58\xfe\x72\x7b\x4b\x79\x90\xfc\x3b\x16" + "\x0e\x09\xba\x49\x34\x47\x47\x13\xa3\xf7\x3f\x79\x11\x46\x53\xa5" + "\xae\x5a\xc2\x19\x91\xd6\x52\xf4\x8c\x2e\xb1\x1a\x8f\x3c\x62\x35" + "\x60\x65\x14\xf8\x17\x94\x1b\x90\xb7\x14\xec\x0b\x55\x19\x72\x35" + "\xcc\x2a\x2b\x37\x1b\xf0\xf0\xb6\x4c\xd1\x2e\xe2\x07\x89\x11\x85" + "\xf5\xf5\x83\x5f\x88\xb1\x47\x31\x91\x31\x02\x97\x70\xfe\xa6\x18" + "\x7b\x3a\x9a\x9b\xa1\x49\x2a\x7a\x0a\x86\xde\x8a\xbc\x62\xb6\xc4" + "\x67\x33\x22\xc7\x60\xce\xc0\x0f\xef\x00\xf3\x30\xa4\x57\xc7\xaa" + "\x89\x36\x2d\xf4\x22\xbd\x15\x41\xc1\xf2\x1a\x8a\xb2\xa7\x7a\x82" + "\xd7\xd6\x65\xc9\xd2\x4f\x3d\x92\x3a\x04\xfa\x5a\x11\xcd\x2d\xc9" + "\xfb\xbe\x7e\xaf\xfa\x2e\xfb\x9c\xe4\x22\xd1\x3d\xa2\x35\xbb\x85" + "\x06\x80\x67\x08\x39\x45\x03\xdc\x5d\x27\xb2\x1f\xb8\x62\x2a\x3a" + "\xa3\x81\xc2\x22\x41\xe1\xda\xfb\x4c\xdb\xa6\xa0\x31\xc1\x95\xa4" + "\x4f\x0a\x5e\x07\x86\xec\x6e\xe8\x13\x13\x72\x83\x91\xc7\x3e\xc0" + "\xe9\xf8\x6a\x65\xf3\xb4\x81\x90\x8a\xcb\xfe\xc4\x04\x7b\xd2\x1b" + "\x51\x44\x5b\x93\x73\x2c\x42\x22\x36\x54\xaf\x02\x59\x42\x0e\xcb" + "\x10\x8d\x40\x8a\xab\x65\x88\x51\x20\x45\x55\xf2\x0b\x46\x42\x66" + "\xb9\xea\x4d\xb1\x24\xde\x0a\xee\xf7\x45\x70\xb7\x82\x90\x69\x9c" + "\x64\x2b\x2a\x81\x62\x9f\x6d\xa5\x74\x25\xc7\x4f\x40\xc0\x1a\x22" + "\x21\x34\x16\x5b\x2c\x3f\xe6\xbe\xbd\x8d\xab\x44\xd0\x74\x38\xc6" + "\x32\xc0\xa6\x9b\x37\xc5\xdf\xcc\x2d\xb3\x8f\x30\xb9\x31\x85\x0a" + "\xe5\xa3\x0b\x21\x23\x08\x7f\xeb\xeb\x42\x62\x02\x94\xea\x7a\xe8" + "\x85\x44\x41\x28\x56\xdd\x59\xf6\x6e\xc6\xab\x43\x91\x5b\xc5\x6d" + "\xab\x10\x65\x87\x76\x76\xdb\x4a\xc1\x89\xf4\xde\x1f\xfb\xfd\x18" + "\xea\x24\x4f\xd2\xca\x2d\x6e\x2c\xb7\x32\x20\xfe\x2f\x0e\x5e\x3c" + "\xe1\x62\x3a\x36\xf6\xc0\x71\x61\x0f\x94\x4d\x37\x91\x72\xda\x14" + "\x99\xe5\x20\xb7\xe3\x05\xec\x10\x37\xb5\x8a\x10\x2d\x4f\x02\x0f" + "\x64\x0d\x29\x66\xe6\x0e\xab\xda\x76\x05\xd0\xeb\x52\x33\x6a\x47" + "\xc6\x3d\x7c\xfc\xb4\xeb\xec\x63\xfd\x52\xfa\x35\xd5\x3f\xe1\x39" + "\xcb\xfa\x15\x4e\xad\xbb\xe8\xd4\xba\x68\x4a\xc9\x50\x5f\x72\x7b" + "\xe3\xee\x36\xe3\xd8\x1f\xb1\x4b\x78\x88\xe0\x09\xbb\xd0\x27\x47" + "\x97\x1b\x7d\x10\xff\xe0\xf6\xc9\x8d\xed\xc6\x69\x3f\xd4\xeb\x0f" + "\x94\xef\xdb\xcb\x7a\xdd\x16\x8f\xee\xa5\x3c\xc2\xe9\x93\x1b\xcb" + "\x0d\x5b\x63\x8d\xad\x1b\x86\x1f\x5b\x97\xda\x11\x7c\xe6\x1a\xce" + "\x73\x7d\x21\x8a\x90\xfb\x9c\x70\xd3\xdd\x65\x37\xb0\x12\x6f\xa8" + "\xca\x86\x00\x06\x66\x0e\xaf\x75\x8e\x4c\xf5\xba\x54\x9e\xe4\xf4" + "\x98\xe1\x66\x03\x98\xa6\xd5\x8d\xa6\xff\xe9\x98\x1d\x1a\x8e\xa7" + "\x98\x9b\x55\x78\x9f\x2e\xc8\xfb\x94\xf4\x8a\x8f\x3a\x68\x6b\xb7" + "\x44\x35\x8e\xb7\x2a\x84\xd3\xcc\xfb\xf4\x46\x46\x71\xfa\xeb\xc1" + "\xc1\xe2\x93\x19\xc5\x49\xf8\x71\x8f\x91\xcc\x2c\xa5\x7f\xe0\x58" + "\x8c\x3a\xec\xdb\x74\xde\x09\xef\xd8\x5f\x45\x68\xc4\x57\xc0\x20" + "\x5a\x9c\xe2\x8e\x4b\xc5\xf5\x88\x6f\x08\xaf\x7c\xc2\x10\xbb\xc6" + "\x89\x85\xac\x3f\xab\x7a\xa1\x6a\xed\x1b\x95\xcd\xcc\x40\x0a\xbb" + "\x30\xb3\xeb\x1b\x15\x8a\xc6\x53\x77\x70\xb2\x99\x6d\x90\xb3\xe2" + "\x56\x7b\xfb\x67\x9d\xf2\x77\xd7\xfd\x8a\x4d\x77\xac\x49\xfc\xee" + "\x53\x01\x52\xe2\xc6\x0b\x0c\xf8\x86\x27\xd8\xc6\x6e\x36\x36\x09" + "\xa7\x9c\x9c\x31\xc0\x72\xed\x7f\x46\xbd\xfe\x0c\x38\x1a\xe0\xc4" + "\x4c\xc6\xd1\xaa\x81\x80\x2d\xa5\x61\xc3\x5f\x30\xa9\x0e\x49\x91" + "\x66\x07\xbf\x48\xfc\xd0\x55\x65\x19\xf3\x93\x37\xc7\xef\x61\xfb" + "\x3d\x30\x77\x46\xb2\x98\x4e\x50\x07\x06\x94\x1d\x51\x0e\x1d\x71" + "\xbc\xd4\xd9\x1a\xe3\xe7\xd9\x81\x7b\xba\xa4\x48\xd0\x7c\x73\x59" + "\xc9\x21\x75\x0c\xa4\xe9\xce\x2b\x0f\x24\x85\x17\x4a\x70\xe5\xe1" + "\xd3\x94\xea\x4e\x12\x97\xc4\x17\x1d\xda\x34\x16\xe7\x50\x42\x4b" + "\x12\x6f\x53\x27\xb0\x3c\x44\xdb\x35\x19\x25\xed\x47\x0e\x3a\x02" + "\xa0\xa8\xdf\xe0\x39\xbd\x6b\x09\xb2\xac\xee\xc7\xa0\x2b\x2a\xc1" + "\x60\x08\xc7\xa1\x01\xf1\x68\x3a\x5c\xdc\x32\x5a\x3b\xa1\x04\x3a" + "\xf2\x46\xfe\x5c\x43\x8c\x33\x9c\xa9\xbc\xa2\x12\x18\x12\x09\xca" + "\x50\x18\xda\x2f\x56\x68\x54\x84\x2d\x7f\xb4\xd9\x6b\x79\x29\x97" + "\x6a\x78\xe7\x91\x96\x77\x1e\x69\xba\x18\x95\x28\x7c\x32\x2a\x51" + "\x95\xe2\x90\xc7\x46\x70\xad\x25\xdd\x9b\x23\xd6\xc5\x6b\x9f\x07" + "\x23\x11\xdd\x4b\x05\x78\xc9\xbc\x84\x63\xfb\xb1\x42\x85\x15\xd5" + "\xde\x1a\xb8\xb7\x80\xf5\xfe\xe2\x48\x44\x1b\xaa\x44\xfd\xb3\xf7" + "\x35\xf9\xb9\x80\x62\xe6\x07\x85\x5f\xba\x2a\x40\xb0\xc3\x7f\xbc" + "\x68\x1e\xfe\xfd\xbf\x9a\x07\xcd\x17\x06\xae\x45\x42\xe2\xd4\x19" + "\x2d\x16\x3d\x73\x29\xc0\x4e\x31\xf3\xe2\xbb\xea\xf5\x29\xbe\x95" + "\x97\xa8\x48\xd5\xab\x53\x24\x00\x70\x2f\xfe\xf6\xb7\xa6\xfa\x77" + "\x50\x06\x2f\x54\x25\x9f\x0b\xdc\x04\xe6\xe2\xde\x7b\xa8\x04\xee" + "\x3b\xf1\xad\x00\x9c\x4e\x55\xc0\xc9\x2a\x72\x23\x77\x58\x06\x6d" + "\xa2\xca\x3d\x17\xb4\x51\x18\x5f\xd3\xe1\x4d\x25\x70\x27\x17\xd7" + "\xb5\x6b\x79\xb6\x93\x83\xcf\xfc\xa0\x40\xd4\x55\x01\x90\xff\xd5" + "\xa4\xff\xca\x00\xea\x4c\x8f\x80\xa8\x9c\xeb\x4f\x43\x79\xdb\x5c" + "\x12\x57\xdd\x8d\x4b\x36\x3e\x64\x99\x41\x8c\x58\x18\x0b\xe3\x3c" + "\x71\xc5\x43\xee\x53\x14\xa7\xa9\xa8\x29\xac\xac\x49\x68\xdf\x47" + "\xda\x1c\x94\x4e\x5a\xd4\x9d\x08\xfa\x44\x45\x25\x60\x87\x40\x06" + "\x70\x65\x66\x71\x6a\x8d\x66\x91\xb2\x8d\xe8\x59\x6d\xc4\x0a\xc0" + "\x2e\x5d\x3b\x95\xb0\xdc\x4f\x4f\x55\x36\x4c\x2a\x2a\xeb\x9e\x86" + "\x3d\x6d\xd9\xfa\x38\xb0\x92\x6a\xe9\xdc\x7a\x69\xe9\x1c\x12\x9b" + "\xf5\xbb\x44\x21\xfd\xae\x67\x2c\xbb\x01\x62\x7d\x1a\xba\xb3\xc4" + "\xd8\xc5\xfd\xb8\x2a\xf0\x4a\x12\x7f\x41\x58\xc8\x05\x46\x58\x5c" + "\x3c\x19\x16\x92\xb6\xae\x7f\x61\x48\xc8\x99\x0a\x88\x73\xbc\xb5" + "\x11\x60\x9d\xe5\xad\xe5\x09\xde\x2c\x2a\x74\x72\x04\xee\x6d\xa6" + "\xfb\x22\x99\x85\x34\x36\xa8\x8d\xd3\xfd\x20\xad\x9c\xec\x4a\xa0" + "\x0e\x22\x0d\x36\x72\xa1\x59\x97\x3e\x1e\x55\x9a\x38\xbd\xc8\x9d" + "\xf4\x8d\x4b\x59\x0b\x78\xbe\x48\x9d\xe7\xd8\xc6\xfc\xff\x17\x69" + "\xb2\x10\x82\xee\xcb\x6c\xa0\x62\x63\x07\x34\x06\xc5\xe0\x10\x97" + "\xd4\xec\xdc\xcc\x97\x1f\x11\x23\xef\x58\x6e\x96\xec\x9f\xbb\x44" + "\xa0\xa0\x0d\xd9\x1e\x6e\x2d\x53\x80\xc4\xcf\xe1\x6a\xdb\x86\x36" + "\x3b\xce\xcc\xc1\x89\x50\xca\xb8\xf4\x71\xaf\xe5\xe5\xc9\x64\x87" + "\xbc\x44\xd0\x5e\x53\x9f\x10\x76\x4a\x59\x14\x1b\x53\xfa\x40\x34" + "\x36\xc7\x80\xfb\xd8\xb4\x44\x2c\x6c\xda\xd3\x94\x2a\xce\x61\xd4" + "\x1f\x61\x05\x4f\x83\x8a\x52\x85\x49\x65\x55\xcc\x33\x02\x80\x59" + "\x47\xe2\xd4\xe0\x3d\x9e\x1a\x90\x0e\x55\x5c\xe0\x21\x83\xb6\xd1" + "\x42\x94\x42\x20\x99\x45\x68\x16\x8a\x2b\x30\xc5\x45\x01\x3c\x39" + "\x55\x5f\xfc\x47\x23\x6f\xfe\x59\xf6\x3f\xc7\xf2\x6f\x3d\xf0\x7c" + "\x94\xfd\x37\x37\x45\xc9\xf1\x3b\x8f\xb0\xf6\x25\x56\xfe\xd1\x53" + "\x4b\xd5\xf2\x73\xb9\xfb\xc8\xe0\xec\xcb\x50\xc8\xad\x4e\x03\x71" + "\x2c\xde\x15\x0c\x2a\xf8\xa3\x30\xdf\x12\x21\x11\x61\x41\x90\x96" + "\x4b\xcc\xdd\x50\x15\x50\x50\xc8\x84\x4e\xe7\x30\x07\x83\xca\x27" + "\x40\x58\x98\xfc\xb3\xd8\x5f\x35\x08\x6f\x64\xac\xa3\x6d\xa7\xe4" + "\x5c\x6e\xc8\x84\x17\xd9\xcd\x1c\xb6\xbe\x17\xab\xdc\xc2\xd0\x5b" + "\xa0\x74\x8c\x31\x2e\x3d\xa3\xaf\x22\xb5\x26\x92\x1f\x6b\x30\x57" + "\xfe\xd4\x40\x4b\xb3\xf9\xaa\x4c\x96\x71\xd3\x48\xe6\x29\xf3\x04" + "\xed\x30\x23\x99\xa9\x1d\xf5\x00\x1e\x4b\x56\x96\xc6\x36\x33\x63" + "\xbb\x7a\x91\xdf\xe0\x31\xbb\x66\x3f\xba\xb3\x9e\xbb\x5b\xd8\x69" + "\xc8\x4e\x6c\x86\x31\x74\xa9\x80\x30\x16\xd3\x05\xfc\x9e\x60\x39" + "\x66\xb9\x52\x0b\x2c\x15\x0b\x35\x12\x37\x6b\xa7\xcc\x46\x46\x32" + "\x43\xcb\xd5\xac\xe8\xcd\x6c\x0b\xbd\x09\x0c\x7a\x43\x14\xfe\xcf" + "\x51\x9c\x63\xaa\x43\xd0\x1a\x71\x12\x89\xfb\x37\xff\xe4\xc7\x74" + "\xac\x86\x68\xfb\x5c\x52\xd3\x7f\x7c\x7b\x93\x57\xb7\xf1\xa8\x31" + "\x0e\x96\xfe\xe8\x89\xcd\xf0\xd9\xc6\x19\x35\x75\xa3\x5a\x51\x27" + "\xd3\xfd\xa2\x48\x66\x95\xb1\xd5\x32\xba\xbc\x02\xd6\x86\x6c\x56" + "\x24\x45\x21\xf3\x67\xaf\x5e\x7f\x3a\x88\x59\xd9\xdc\xb3\x06\x8d" + "\x0a\x58\xff\x45\xe1\xcd\x94\x92\x5c\xc5\x37\x13\x62\xf7\x47\x9f" + "\x95\xf4\xee\x61\x95\xde\x7d\x6c\xea\xdd\xbd\x82\xde\x7d\xb8\x3d" + "\x08\xad\x18\xff\x1c\xdc\x3f\xfb\x06\x9a\x02\xf2\x7a\x03\xf3\x6c" + "\xa0\xab\x14\x7a\x92\xd9\x7a\xed\x47\x71\x52\x60\x28\x16\xf6\x41" + "\x9e\xc1\xf2\x12\x83\xa7\xd1\x2b\xe9\xa0\x67\x10\x83\x19\x19\x69" + "\x1e\xb0\x59\x66\x18\x63\x36\x73\x4d\xa7\xf7\xa5\x76\x0e\x9f\xd3" + "\xce\x61\xb9\x9d\xc3\x6d\xed\xdc\x4c\xfd\xa8\xdc\xcc\x8b\xe7\x34" + "\xf3\xa2\xdc\xcc\x0b\xd5\x4c\x2f\xad\xa2\x8b\x5e\xfc\x4c\xb3\x7d" + "\xda\x78\x9e\x0e\xa1\xea\xc7\x85\x10\xaa\x6b\xe1\x4b\x70\x8c\x1a" + "\xd5\x4f\x49\x6b\x18\xb3\xe3\xf9\x6c\x31\x0f\xf1\x1e\xe0\x00\x84" + "\xcb\xf9\x31\x16\x26\xe5\x7a\xeb\x3e\x04\x8e\x11\x3e\xa9\x7b\x82" + "\x97\x31\x9b\xb6\x3e\x86\xa9\x3c\x23\x98\x81\x30\xb1\x88\xf0\x4e" + "\x64\x4b\x5c\x82\x36\x8a\x73\xd1\x6e\x3e\xc9\x98\x5d\x78\x70\x80" + "\x9f\x43\x32\x06\x75\x78\x17\xe4\x3a\xf2\xd4\x51\xae\x22\x06\x59" + "\x8e\x95\x87\x29\x16\x88\x98\xef\xee\xdb\x9d\xd6\xaf\x1d\xbb\xfb" + "\xdb\x5f\x7a\x5f\x3b\x4e\xc7\xfe\x4b\xf3\x6b\xa7\xb3\xbb\xcf\x62" + "\x17\xef\x09\x10\x86\x03\xc0\xd2\x41\xbb\xd2\xc3\x1c\xe6\xd6\x51" + "\x2d\x0e\x5d\x7c\x6d\xc6\x8b\xc0\x07\xa9\xbc\x6e\xe1\xa6\x71\xd0" + "\x0e\xbe\x1d\xaa\x48\x2c\x01\x06\x4b\xc2\x9c\x4b\x77\xd8\x0d\x74" + "\x4e\x17\x3a\xe4\x75\x47\x1c\xcd\x5f\x3f\x5c\x9d\xe9\x11\xb2\x97" + "\xe8\x44\xdb\x73\xab\xbe\x64\xb7\xe2\xfc\x0e\x6c\x1e\xd5\xe1\xa4" + "\xdc\xbd\x40\xd7\x4f\x75\x4f\x8e\xcf\x60\x3f\x83\x2d\x07\x53\x93" + "\xcd\x86\x2c\x97\x25\xa8\x63\xf7\x1c\x5d\x96\x66\xde\x27\x5b\xdd" + "\x0f\xc1\x94\xaf\x13\x1a\x8e\x1e\xb4\x17\xdf\x8e\xdb\x0b\x80\x17" + "\x9d\x68\xba\x8b\x5e\xbd\x8e\x7f\x91\xd5\x88\x8e\x12\x58\x5d\xc8" + "\x2c\xb7\x2c\xd1\x9b\xbe\x4b\xdf\xf4\xf5\x3c\xf6\x6f\xad\x4d\x77" + "\xef\xeb\x4e\x6f\x6f\xd7\xc1\x8b\x7a\x30\x68\x9f\x4b\xb5\xc8\x31" + "\xdc\x97\x5f\xf7\xf1\x1a\xe7\xd8\x81\x5e\x22\x74\xb0\x75\xfd\xf7" + "\xac\xe9\xe3\x3d\x70\x97\x63\xdb\xda\x83\x62\x37\xb9\x94\xaf\x21" + "\xe5\xd2\xe5\x50\x0f\x66\x27\x4b\x92\xcb\x7a\x7d\xe7\x06\xc4\x59" + "\x23\x57\xc7\x72\xbe\x3d\xd8\x6c\x76\x1d\xc0\x6c\x0c\xbd\x21\xdc" + "\xad\xd0\x43\xb3\xdb\xaf\x1c\xcb\x4b\x87\xed\x6e\x36\x37\xce\x9a" + "\x32\xa8\xfb\x86\x16\x22\x36\x62\x39\xbf\x1a\xf1\x7d\x18\x4e\xe9" + "\xca\xa5\xdc\x31\xb1\x8b\x18\xd1\x05\x7e\x72\x8d\x2b\x3f\x67\x75" + "\x29\x21\x19\xee\x6e\x36\xe8\x36\x01\xac\x45\xbd\xee\x65\x28\x39" + "\xcd\x47\x5d\x80\xc9\xf4\xc2\xbb\x6f\x13\xfa\xe9\x1c\xb6\xc4\xfb" + "\x4b\xf9\xde\xc0\x04\xea\x78\x23\x11\xbf\x06\x4f\x50\xac\x88\xbe" + "\xbb\x09\x13\x55\x64\x1e\xdd\x99\x37\x77\x28\x4f\x85\x25\x94\x9d" + "\x83\x16\x20\x8e\x4a\xa4\x53\x42\x1a\x92\x45\xac\x86\x00\x78\x2d" + "\x11\x41\x82\xb2\x18\xb7\x65\x24\xb9\x00\x6b\x06\x62\xfc\xba\xbf" + "\xb7\x81\x7f\x0a\x2f\xd4\x0a\x80\xb1\x34\xd8\x9e\x38\x1f\x9e\x2d" + "\x43\x39\xc0\xb8\xce\xe1\x9e\xf5\xf5\x5e\xc7\xd2\xf3\xad\x33\x70" + "\xed\xaa\xe7\x00\x5a\xfd\xb5\xf5\x37\xd2\x77\xcd\x90\x48\xb0\x39" + "\x47\xef\xd5\x8b\x10\xff\xfe\x4e\x31\x9e\x18\x8f\xdc\xf5\x32\x0a" + "\x5a\xef\x13\x54\x21\x80\xb0\x3f\x84\x66\x23\x83\xc3\xc3\x0f\x84" + "\xde\x5c\x52\x0e\xcb\xda\xb3\x6d\xee\xfe\x5e\xaf\xff\xae\x8d\x8b" + "\x3a\xd9\x63\x8b\x3e\x80\x44\x78\x2c\xc4\xc3\x77\x59\x96\x72\x22" + "\xc6\x76\x12\xbe\xa0\xaa\xf8\xb7\xd6\xd2\xea\xe8\xba\x66\x30\xc6" + "\x38\xe2\xc8\xe8\xd1\xca\xdd\x23\x0e\xd0\x8b\x86\x53\x7a\xcd\x46" + "\x2b\x89\xf2\x61\x3a\x4c\x7f\x5f\x0a\x66\xc6\x8c\x08\x8d\xf2\xa2" + "\x3c\x0a\x23\x13\x05\x94\x43\x4f\x0f\xc3\xe0\x56\x90\xea\x30\x13" + "\x35\x14\xc1\x88\xdc\xb9\x1a\xe0\x76\xd4\x68\xb4\x91\x2e\xcc\x79" + "\x37\xea\x61\x3c\x98\xab\x39\x5e\x8d\x1c\x1a\x31\x31\x54\x08\xc8" + "\x94\x7c\x4e\xb3\x0a\xd1\x9f\x38\x32\x41\x8c\x5c\x0b\x1d\x03\x61" + "\x65\xe3\xf0\x41\x7d\x1d\xfc\x83\xd1\x00\x24\xd8\x53\xe0\x21\xe7" + "\xd1\x03\x0e\x4f\xbd\x2e\x5f\xba\xd1\x1e\x9d\x2e\x70\xab\x57\x95" + "\x46\x51\xf0\x98\xf8\x83\x18\xca\x92\x8e\x76\xc4\x6c\xa9\xe6\xc2" + "\x28\xe7\x5e\x48\xaf\xba\xb7\x38\x70\x2c\x44\x7f\xcf\x6f\xb3\x6e" + "\x87\x40\x0d\xe7\xb8\x9d\x34\x23\xec\xef\xcd\x5c\xf8\xd3\x26\xae" + "\xe1\xf8\x67\x44\x19\x5c\xc5\xd2\x61\x11\xbd\x61\x11\x05\xf4\x25" + "\xd2\x02\xad\x70\xe8\x27\xb9\x6b\xab\xa7\x11\x1f\x93\x6d\x5e\xf1" + "\x83\x34\xcf\x11\x21\x34\x31\x64\x91\x24\xa3\xbf\xe1\x45\x68\x08" + "\x03\xfa\xd9\x86\x3a\xb5\xdf\x01\x8e\x6d\xbc\xbb\xef\x3b\x59\xb4" + "\xaa\xc8\x4e\x4c\x0d\xc5\x20\xbf\xc6\x60\x04\x17\x18\xf4\x74\xe4" + "\x7b\x22\x5c\x84\x37\x21\x3c\x44\xc8\xb7\x7d\xb3\x71\xe1\xe3\xc7" + "\x8a\xfc\xc5\x6c\x25\x37\x34\x74\x78\xd7\xb1\x9a\xd4\x40\xed\xe0" + "\x62\x4e\xa2\xe0\x2d\x7f\xc0\x70\x8c\x33\xe0\xfc\xe4\xa3\x17\x24" + "\xf2\x29\x9e\xfa\x63\xf5\x2c\xf4\x4c\x4e\x36\x9c\x62\x9c\xda\xa3" + "\x39\x11\x63\xe1\x33\x82\x5c\x26\x6e\x56\x1e\xfa\x54\x57\x0e\xb8" + "\x88\xc1\x83\x86\x03\xc6\x27\xb2\x8c\x0a\x3d\x3a\xe1\x75\x30\x40" + "\x5b\xfe\xb3\xfa\xa2\x42\x46\x40\x0d\xab\xd8\x88\x0e\x46\xe3\x9b" + "\xde\x03\x73\xc3\xc9\xc3\x57\x44\x6f\xb8\x80\xad\x04\x66\x01\xc1" + "\xdd\x45\xed\xb6\xa1\xac\x8a\x44\x28\x07\x89\xcc\x30\xa5\xbf\xbb" + "\xfa\x4d\x3a\xe8\x53\x0c\x5b\x41\xb4\x68\xa1\x6e\x36\x44\xbb\xd2" + "\xff\xaf\xbc\x63\xed\x6d\x1b\x39\x7e\xcf\xaf\x60\x08\xc3\xb7\x3c" + "\x6c\xe8\x38\xd7\x02\x57\x09\x1b\xc3\x67\x2b\x3e\x37\x36\xad\xda" + "\x0e\x0e\x8d\x20\xe8\x45\xda\x61\x22\x93\x2e\x57\xf2\x23\x32\xff" + "\x7b\xe7\xb1\xcb\x25\x29\xd9\x97\x02\xed\xa7\x7e\xb0\x21\x92\xfb" + "\x9c\x9d\x99\x9d\x99\x9d\x9d\x01\xc1\xa7\x28\x5c\x38\x49\xb2\xce" + "\x83\x6c\xb5\x62\xff\xfc\x6a\xdf\xfa\x44\xc7\x57\x1d\x17\xc9\xa3" + "\xb1\xfe\x68\x82\x7e\xcd\xdb\x12\x35\x8e\xf1\x37\x5d\xe8\x75\xea" + "\x2d\x09\xad\xee\xdd\xfc\x68\xdf\x96\xd2\xb2\x82\x46\x27\xbc\x38" + "\xf7\x26\x7f\x7d\xd3\xef\xc8\xd1\x0d\x59\xc9\x29\x7a\x5c\x15\x78" + "\xa1\x94\x86\xce\x1a\xcd\x59\x43\x3f\xd1\xba\x60\x68\x94\x2c\x10" + "\x2e\x78\x54\x15\x43\x4a\x9a\xcd\xdf\x9a\x84\xe0\x40\xe4\xb3\x84" + "\xa1\x81\xb9\xd5\x61\xd8\x16\x44\x7f\xa4\xf3\xf9\x69\xbe\x04\xd9" + "\xb3\x16\x85\x85\xeb\x62\xfc\x3d\x57\xf0\x30\x8d\xd7\xca\xd1\x56" + "\xc1\xe1\x29\xb6\x80\x1c\x05\xae\xf0\x5b\xf9\xf5\xe9\x69\x12\xc7" + "\x3d\xc4\x7e\x1b\x8c\x0e\xc4\x58\x80\x01\xb1\x2a\x59\xab\x0f\x1c" + "\x08\xd7\x93\xd2\x03\xaf\xd5\x98\xa1\x32\xe0\xcb\x47\x0d\xf2\x1c" + "\x70\x24\xba\x4b\xcd\x97\xf6\xbf\x22\x0b\xa2\x53\x09\x05\x7b\x11" + "\x55\x70\x69\xa2\x17\x3c\x2c\xba\xc7\x6e\xb6\x16\x00\x42\x37\xa9" + "\x38\x18\xee\x69\x59\x7b\xa7\xc9\xea\x3b\x0d\x26\x0f\x90\x16\x06" + "\xbb\x2d\x60\x7d\xca\x6e\xd6\xc0\x65\x22\x35\xf0\x90\x9a\x61\x3e" + "\xe8\x9d\xa0\x19\xe0\xc6\x0f\x22\x41\x9e\x54\x1b\x39\x4f\x87\xf4" + "\xa9\x46\x17\x2d\xb4\x7d\x76\x41\x9e\x2f\x08\xa3\xbe\xee\x34\x63" + "\xdf\xe0\x5e\x77\x95\xce\x41\x65\x17\x23\x6d\xdc\x78\xbe\x68\x27" + "\x1f\x33\xef\x6f\xb0\x7e\xd6\x11\x14\x6e\x00\xa0\x28\x80\xea\xb0" + "\x90\x45\x4d\x36\xb2\x0f\xc4\xa4\x53\xc3\x07\x28\xcb\x52\x09\x88" + "\x9c\x64\x68\x49\x6c\x8e\x81\xfa\xc1\xd0\x12\xca\x51\x16\x26\x4b" + "\x45\x6a\x93\x13\x83\xcb\x72\xa6\x0c\x6d\x00\x05\x25\x8e\x70\x24" + "\x77\x34\xa3\x2d\x74\xa9\xc5\x0c\x95\x59\xe0\x04\x0f\x86\x26\xb4" + "\xbc\xe1\x7b\xdd\x9d\x0c\x74\x8d\xdd\x61\x89\x61\xb4\x56\xdf\x92" + "\x47\x1b\xc4\x0e\x58\x9f\x0d\x8a\x83\xd1\x47\xd1\x53\x4d\x4c\x40" + "\x14\x25\x11\x20\x58\xa1\x36\x55\x54\xa3\x50\xa6\x4d\xe4\xe3\x69" + "\xbe\xd4\x1d\x5b\x52\x1a\x5b\x78\xa7\x90\x9c\x39\x6d\xaf\x0e\x13" + "\x0e\xb5\x56\x0d\x84\x12\x5f\x13\xe6\x15\x8a\xe3\x15\x59\x8f\x9d" + "\x62\x0f\x36\xfd\xce\x60\x58\xc1\x7f\xae\xa2\xac\xd2\x9a\x50\xdc" + "\x88\x32\x50\x98\xf0\xe2\x5c\xd7\x20\x58\xda\xc4\xad\x54\xb8\xf8" + "\x22\x9f\x33\x71\xad\x43\xd8\x83\xee\x52\x80\xba\x5c\xb1\x9d\x74" + "\x82\x49\xdd\x4a\xc3\x2a\x7a\x5a\x6d\x60\x84\x9f\x09\xc4\x16\xa7" + "\x30\x82\xa7\x0d\x91\x08\xc2\x62\xbc\xbc\xb9\x79\xec\x10\x20\x7c" + "\xfa\x1d\x7e\xd5\x40\xc0\x79\x01\xf3\xeb\xf8\x09\xda\x30\xd0\x3d" + "\x0c\x6d\x2c\x40\xd9\x18\xe3\x49\x9b\x5b\x76\x26\xbe\x53\x15\x87" + "\xd3\xc8\x63\xf5\x09\xec\x99\x0c\x12\x20\x17\x26\xb2\x50\x36\x8d" + "\xba\xb9\x8a\x6f\x34\x62\xe1\x73\x94\x21\xcc\x79\xca\x27\x16\x64" + "\x27\xdf\xf9\x3a\xb9\x9b\x98\x2f\x94\x06\x1d\xdd\xdd\x15\x62\xa7" + "\x2e\x66\x2a\x93\x55\x63\x2e\xf1\xba\xfe\xed\xf1\x92\xb3\xa9\xc3" + "\x26\x98\x4c\x62\x1f\x75\x30\x0c\x07\x00\x78\x4a\x1a\x39\x26\x1d" + "\x74\xbb\xd3\x7e\x33\x62\x54\x44\xf1\xaf\xf1\xd6\x95\xc8\xd4\x7b" + "\xb4\x50\xa0\xd4\xe9\xdf\x27\xd3\xdb\x09\x70\xa9\xed\xed\xb5\x28" + "\xd3\xed\x70\xdb\x4e\x5b\x3b\xcd\xe3\x25\x46\x6d\xa7\x60\x18\x95" + "\x82\xb4\x57\xfd\xea\x54\x77\x71\x0f\x40\x2e\xc2\x94\x1a\x6c\x03" + "\xe8\xac\xfc\xdd\xb7\xe1\xee\xaf\xe1\x5b\xbf\x83\xc1\xf4\xc8\x50" + "\x02\xe3\xc4\xcd\xef\xd3\xf9\x89\xf0\x47\xa3\xab\x24\x4e\xd8\x56" + "\x31\xd2\xa0\x22\x24\xf1\x88\xab\xbe\xf9\x75\xf4\x70\x77\xfc\x97" + "\x2c\xa7\x05\x4c\x6f\x30\x4b\x12\x09\x1b\x84\xfa\x21\x0a\x05\x18" + "\x7f\x02\xa1\x98\xc4\x9d\x5d\x58\xc9\x69\x9e\x2f\x40\x74\x9e\xdc" + "\x42\xaf\x7f\x0d\x7f\x09\xdf\xfd\x07\x7d\x56\x75\xdf\x44\xfb\xbf" + "\xff\xad\x77\x7a\x79\xf5\xa3\xdd\x96\x6b\xc7\xac\x51\x5d\x6a\xdb" + "\xe2\xeb\x0e\xdc\x10\xaa\x61\xa3\x11\x62\xde\x68\x04\x3a\xda\x61" + "\x02\x4a\xd4\x60\x18\xac\x39\x86\x6e\xe9\x7a\x20\xda\xb4\xc0\x90" + "\xc0\x24\xfd\xa4\x19\xd4\x8d\x5d\x70\x8c\x79\x3a\xe5\x0f\x8c\xe0" + "\xb8\xbe\x40\x37\x7e\x3d\xd0\x35\x10\xd8\x4d\x8a\x91\xbb\x2a\xdc" + "\x2e\x14\x7b\xfa\x99\xd6\x60\x13\xa4\x86\x14\xdf\xc8\x80\xbe\x24" + "\x3d\xd3\x67\x71\x90\x61\xeb\xd0\x06\xc5\x8b\xe5\x1a\x14\xc4\x2e" + "\xe3\x5a\x80\x80\x36\x42\x19\xf0\x5a\x62\x36\x45\xc0\xde\xb5\x03" + "\x26\x37\x9f\x6f\xcb\x02\x38\x87\x50\x7f\x36\x5f\xc6\x89\xae\x46" + "\x1c\x6c\x1a\xaa\x89\xba\xbc\xaa\xe2\x09\x61\xb3\x0d\x3a\xa4\x37" + "\xb4\xb0\xa6\x0e\xa8\x47\x3a\x9f\xdf\x25\x3c\x84\x20\x10\x06\xf3" + "\xd1\x83\xa9\xb9\x04\x7a\xf3\x12\x70\xf1\x09\xc7\x31\x7a\x5d\x41" + "\xba\x0a\x43\xea\xe0\xd0\x9d\x30\x64\x66\x01\xc3\x49\x4d\xea\xf0" + "\x9a\x35\xc0\x54\x56\x50\x0a\x42\x3e\x3d\x2f\x5a\xb6\xbd\xfd\x86" + "\x88\xbf\x17\x8e\x46\x89\x66\x6a\x03\x51\x6e\x2f\x1c\x98\x24\x09" + "\x96\x34\x81\x1f\x60\xb0\x42\x4b\x90\x7b\x49\x45\x81\x35\x83\xd9" + "\x41\xd3\xa8\xb0\xd5\x60\x04\x19\x79\xda\x2e\xcc\x8b\x02\x03\xd0" + "\x04\xf5\xe3\x8c\x0b\x53\x99\xb0\x4e\x2d\x0c\x59\x5f\x64\x6a\xc5" + "\xc9\x21\xfa\x78\xab\xb5\x9f\x4a\x76\x18\xa0\xa7\x4f\xa9\x44\xcb" + "\x23\x1b\x1e\xe9\xcd\x44\x4b\xbe\xdc\xfd\x91\x1e\x2f\x52\xd9\xb0" + "\x4a\xd2\xcb\x28\xad\xf1\xae\x4b\x6d\x93\x78\xcb\x45\x4e\x27\x3e" + "\x4d\x6f\x5c\xd2\x8c\xa4\xb9\x33\x64\x04\x6e\x92\xaf\x8c\x80\x59" + "\x4a\x74\xda\xa8\xee\xee\xff\x41\x06\x4e\x97\x4c\x49\x6f\xc8\xec" + "\xea\x12\xe3\xa0\x8d\xc8\x26\x6d\x6d\xdf\xb8\x9e\xb3\x5d\x53\xac" + "\xdf\xa0\xa2\x2d\x92\x7c\x24\xd8\x2b\xba\xbb\x10\x73\x8e\x5a\xb5" + "\x54\x66\x8f\x34\xce\xdd\xe8\x19\x3d\x0f\xc8\x75\x1b\xf9\x46\x1f" + "\x6d\x34\x2b\xeb\x4b\xbc\x7a\x0e\x93\x6b\x85\x9f\xdf\xbf\xba\xb0" + "\x5c\x57\x6e\x33\xc4\xbd\x42\xde\x5a\xbf\xed\x91\xbd\x2d\xbe\x5e" + "\xc6\x0f\x77\x2e\x92\x4c\xf7\x2e\xfa\xfd\xf9\x12\xd3\x20\xa3\xf1" + "\x8f\x4b\x03\x46\x8e\x82\xee\x92\xa5\x57\x3c\x8c\xbf\x72\x02\x1c" + "\xba\xf5\x56\x76\xb4\x56\x9b\x68\xc8\xbd\xc8\x82\x67\x2a\x5e\x64" + "\x83\x56\xf9\x21\x70\x09\x6a\x6a\xcd\x3d\xfd\x53\xf6\x2d\xcb\xef" + "\x33\xcf\xd5\x26\xd7\xf4\x46\x6d\xf4\x4e\x5f\x88\x25\xd0\x92\xf5" + "\x2d\xe1\xf5\x35\xc7\x82\xf8\xc2\x2c\xa9\xa5\xe0\x41\x2e\x2e\xb5" + "\x49\x1d\x0b\x4b\x8e\x78\x86\xe1\x0f\x49\x04\x2a\x83\x61\xd7\x25" + "\x83\xc0\x14\xf4\x73\xd7\xdd\xf6\xf6\x8c\xe7\x94\x8b\x9e\x6d\x60" + "\xce\xd2\xa4\x1b\x61\xad\x7c\x49\xda\x01\x08\x7b\xcf\x64\x6f\xa7" + "\xcc\x9d\x80\x1c\xc4\xa9\x5c\x2c\xd2\xff\xa7\x04\xe7\xe7\xd9\x9a" + "\xe0\x97\xd5\x3b\x3c\x82\xd7\x4c\x5f\x14\xaa\x07\x8d\x13\xed\xfc" + "\xf0\x39\xa8\xd3\x98\x52\xdc\xe6\xc5\x94\x75\xc7\x1c\xeb\x47\x77" + "\xa8\xd5\x2a\x79\x40\xbe\xaf\x3b\xab\xb2\xec\xee\xfc\xfc\xfa\x95" + "\xe7\xfd\xec\xfd\x66\xb7\x7b\x6f\x31\x99\x02\xfd\x7a\x77\x24\x30" + "\x78\xc2\x26\x89\x01\x1e\x59\x89\x04\xb8\xb2\x3b\x01\xd5\xc3\xc8" + "\x4c\x05\x3a\xe1\x7b\xef\xde\xee\xee\xbe\x79\xf7\xf6\xdd\x2f\x1e" + "\xc6\xdd\x70\xed\xe1\x45\xf6\xbc\xd0\xb5\x96\xd2\xc5\x97\xe5\x94" + "\xda\x58\xdc\x4f\xf5\x4e\xd5\xec\xce\x35\xfc\xfb\xa2\x77\x28\x51" + "\x24\x1a\x2c\xa0\x1a\xf7\x72\x02\x3a\x57\x86\x57\xfe\x97\xa8\x8f" + "\x78\xa7\xc7\x97\x3f\xd2\xdc\x74\x9e\x4f\x77\x6e\x26\x69\xb6\x73" + "\x72\x7c\xd0\x8b\x2e\x7a\xd4\xd8\x8e\x68\xaa\x33\xa2\x69\xe5\x4b" + "\x42\x03\x1e\x55\x88\x4b\x34\xf9\xcc\x51\xdb\xbe\xc6\x7f\x45\x42" + "\x6a\xae\xf8\xa7\xac\x57\xc1\x58\x81\x41\x95\x20\x8c\xaf\xa0\xcd" + "\x95\x1f\x4e\x75\x48\xbf\x97\x6a\x0c\x18\x91\xe0\xa1\xe0\x58\x5e" + "\xd1\x03\xa0\x07\x3f\xde\xaa\x31\x3a\x5b\xf1\xc3\x88\x1f\xcc\xa7" + "\x1b\x35\x26\xe5\x99\x9f\xb6\xd4\x18\x74\xa0\xb8\xfa\x7a\xa9\xc6" + "\xc8\x0b\xf9\xe1\x4c\xf9\xfb\xc0\x27\xee\x4f\x92\x2b\x90\xa4\x1f" + "\xcd\xd3\x39\xae\x8a\x2f\x0f\xcd\xe3\xa7\x5b\x5f\x7e\x30\xbf\x0f" + "\xa1\x1d\x5f\x7e\x57\xfe\xef\x39\xfa\xa4\x7c\x56\x7e\x0f\x8f\x08" + "\xa7\xca\x37\x77\x03\x64\x0f\x64\x8b\x09\x06\x35\xd9\x57\x3e\x0e" + "\xca\x97\xdf\x94\x1f\x83\x82\x14\x53\xd5\x2f\x30\x3f\xfb\x64\xef" + "\xe6\xc9\xbb\xfa\x4b\x90\xd6\x97\xbe\xbc\x56\xe3\x4e\x96\x2f\xc4" + "\xd6\x0a\x18\xca\x58\xde\xab\x9f\x42\x77\x87\x41\x7a\x61\x36\xb9" + "\x93\xde\x00\xa9\x8c\x00\x87\xdf\xfc\xe1\x4f\xf2\x00\x5a\xb2\xd7" + "\x0a\xa1\x54\xeb\xda\x83\x2f\x2f\xd4\x38\x74\x97\x09\xaf\xcb\xf5" + "\x32\xfc\xd6\xb5\xec\x0f\xf1\xcd\x58\x9e\xab\x9f\x06\xcd\x3b\x85" + "\xe6\x33\x14\x6e\xbf\xbf\x05\x2d\x7e\xe3\x07\x3b\xcc\x53\x35\xde" + "\x5a\x5d\x40\x3f\x5b\xab\x73\x68\xfb\x23\x8c\x6a\x6b\x35\x2d\x9f" + "\xeb\x60\xf3\x47\xdb\xcb\xe6\xaf\xdc\xd5\xd8\xf8\xbe\x9e\x78\xa0" + "\x36\x81\xaa\xa3\xbd\xac\xe1\x09\x0a\x52\x99\x5e\xde\x26\xf8\x83" + "\x4d\x1e\x23\xb6\xdb\xb1\x16\x3c\x4a\x58\x79\x0a\x67\xf3\x5c\x27" + "\x7a\x21\xee\x9b\xa5\xac\x21\x66\x44\x97\x78\xd2\x45\x3a\x99\x57" + "\x16\x43\x2d\xea\x25\x4d\x35\x3c\x16\x30\xac\x05\x08\x82\x54\x37" + "\xd1\xe8\x49\x6e\xc9\xc8\x84\xb5\x1c\x19\xb4\x15\x11\xca\x54\x6c" + "\xaf\xc3\x74\xf4\x5e\xb4\x7f\xda\xab\xc5\x0a\x2e\x11\xcb\xaa\xdb" + "\x5f\x71\x73\xe4\x24\xd1\x57\x2f\x8e\x35\xdf\xa8\x81\xd9\x5a\x33" + "\x26\xd7\x8a\x54\x35\x3e\x2e\x81\x5a\x23\xd0\x6d\x5f\x45\xa0\xde" + "\xc3\x8c\xae\xaf\x01\x46\x91\x5c\x02\x2b\x4d\xe6\x20\x25\xc5\xec" + "\x0a\xd7\x89\x81\x23\x23\x0b\xed\xba\x52\xb1\xbc\x6d\x97\x8a\x40" + "\x64\x35\xb2\x65\x9f\xed\xc2\xa8\x2a\xf4\xb7\xb7\xfb\x1b\x5e\x9b" + "\xf1\xc6\x09\x51\x14\x4a\x64\x91\xac\x56\xa7\x7a\x17\x4b\x00\x4b" + "\xd9\x7c\x26\x71\xdb\x6a\x34\xdd\x38\xa4\xa5\x47\x8b\x1a\x85\xdd" + "\x9f\xae\xb5\x91\xd6\xf4\xe3\x0f\x20\x08\xb1\x83\x03\x61\x85\x15" + "\x7b\xfa\xac\xdf\x40\xc3\x71\xcb\x92\x8c\x04\xe2\xa3\xe9\x92\x90" + "\x34\x58\xb5\xbb\xdb\xaf\xee\xce\xc5\x20\x86\xdd\xe4\x77\x49\xc3" + "\xbc\x3f\x25\x7d\x18\x44\xa5\x98\xa2\xf9\xb9\x4f\xe4\x04\x66\xfd" + "\x2f\x7c\x8a\xc8\xca\xc3\x66\xc4\x3e\x04\x36\x81\x4c\x08\x26\xcc" + "\x79\x21\x1c\xd8\x47\x1b\xc0\x5e\x76\xb9\xf2\xbf\x96\xc9\x32\x39" + "\x80\x4d\x76\x0a\xfa\xba\xe8\xcb\x58\xd6\xc7\x6b\x5c\x6c\xb4\xe8" + "\x21\x4c\x6b\x90\x7f\x19\xaa\x3c\x2d\x04\x6c\x1c\x4e\xe7\x4b\xcc" + "\x0e\xb1\xb6\x76\xff\x33\x18\x9b\xce\xeb\x60\x7e\x19\x90\xbb\xeb" + "\xb0\xae\x96\x41\xfa\x6f\x76\xfd\xe7\x01\xbd\xdb\x04\xf4\xd5\x7f" + "\x09\xd0\x96\xc0\x63\x86\xf1\xe0\x4c\x3e\xca\x43\xf9\x41\x7e\x97" + "\x9f\x6b\xea\x6d\x8c\x99\xfb\x02\x07\xff\xf5\xd3\x96\x78\xed\xb4" + "\x65\x9d\xac\x1d\xdb\xb1\x56\xd0\x23\xf5\xfe\xb5\x0e\x31\x1a\x11" + "\xc7\x63\x11\x47\x26\x50\x6e\x9f\x14\xee\x8d\x83\x00\x7e\x30\xa0" + "\x9f\x20\x3b\x7d\xc7\xd3\xe2\xea\x04\x76\x48\xf2\xb7\x61\x42\x47" + "\x6a\xf0\x28\x3f\xac\x55\xef\xf6\x95\xc6\x15\x8e\x80\x17\x3b\x36" + "\x83\x66\x2e\xa0\x70\x73\x94\x23\x8f\x10\xaf\x4b\xe0\x0d\xa2\x0f" + "\x42\xf4\x6c\xa9\xc9\xfe\x83\xb3\xbb\x98\x01\x3e\xcc\x39\xb3\xf4" + "\x09\x85\xe3\x2e\xd8\xcd\xf5\xd8\x64\xfd\x12\xfd\x20\x64\x66\x08" + "\xc0\x6d\xcc\xd9\x32\xcb\x14\x63\x5a\xc6\xe2\xb4\xc1\xc5\xb9\x70" + "\x9d\xef\xad\xea\x87\x08\x6b\xd0\x83\x06\x62\xcb\xa3\xdb\x5c\xf5" + "\xe9\x89\xd2\x09\x6d\xde\x10\x88\x9a\xaa\x0d\xa3\xfa\x70\x7c\x15" + "\xe5\x8b\x1e\x7a\xce\x61\x11\x46\x7a\x59\x6d\xea\x41\x4d\xfb\xeb" + "\xa3\xf6\x17\x05\xcf\xef\x39\x67\x19\xdb\xf2\xfa\x41\xf9\xe2\x77" + "\xc0\xb8\xd8\xe1\xc6\x31\x4a\xee\x76\x29\xe2\x36\xf2\xb4\xa6\x08" + "\x7b\x42\x55\xf1\x0c\x0d\xbb\xb5\x8a\x7f\x42\x82\x11\x54\x06\x62" + "\x8e\xcd\xb9\xc0\xb3\x40\xe8\x57\x40\xb8\xc5\x40\x0c\xd9\x82\xdd" + "\x8f\x02\x19\x3d\x3d\xfd\x18\x09\xff\x10\x78\xeb\xa5\x37\x40\x8a" + "\x69\xbb\x8f\x17\xd5\x61\x6e\xe5\x0f\x95\x5a\x59\xd0\xbd\xc0\xf6" + "\xba\x51\x5d\x6c\xd8\x38\xcc\xa8\x3e\x4c\x8e\x80\x80\x54\x9e\xfe" + "\x29\xe4\xa2\xba\x13\x31\xd0\xf4\xf4\xd1\xc7\x94\xca\x58\x95\xb2" + "\x27\xaf\xf3\xb6\xc8\x8e\xf9\x85\x65\x45\xe6\xd4\xdf\xc4\xc5\xbe" + "\xb5\xc4\x88\x23\x25\x74\x21\xf3\xc2\xa9\xca\x0f\x0b\xc5\x34\x77" + "\x96\x25\xf8\xad\x1f\x74\x1f\x40\x6c\x7a\x58\xd4\x9a\xe3\x31\x89" + "\xbc\x80\xc1\x94\xdd\x23\xf1\x45\xc2\x8e\x72\x24\xee\xe4\x3e\xe0" + "\xcb\x26\x8c\xb2\x3e\xa5\x88\x51\xe5\x0b\x6b\x1d\x41\x77\x30\xf7" + "\xc6\x39\x6e\x14\xac\xe1\x10\x16\x2b\xdb\x68\x6e\x59\xc0\x46\xee" + "\x3d\x65\x96\xd1\xa2\x1b\x57\xc5\x9c\x7f\x88\xd3\x60\x2f\xee\xb8" + "\xf9\x9f\xca\x98\x2b\xb6\x00\x5c\xef\x8b\xe5\xcc\x03\x1c\xa5\x95" + "\xf9\xbe\xfe\x63\x99\x14\x8f\xc7\x36\x14\x5b\xad\x02\x5f\x89\x42" + "\x33\x43\xed\x0c\xcc\xa2\xe0\x66\x16\x49\x67\x6e\x5d\x17\x5f\x3d" + "\x56\x95\x8f\x08\xed\x42\xc0\xdf\x87\xca\xe5\x09\xc1\xed\x66\x02" + "\x2a\x1d\xc6\x21\x16\xfe\x08\x0f\xc6\x63\xba\x35\x51\x4f\xcf\xe9" + "\x8c\x2e\x97\xd0\xa8\x31\xbc\x44\xb9\xc7\x51\x12\x28\x4c\x63\xec" + "\xf9\x80\x86\xa5\x3f\x06\xf4\x87\x1e\x04\xb9\x28\xba\x5c\x4e\x30" + "\x70\x7b\x66\x21\x6f\xe4\xb9\xd3\x12\xd3\x24\x58\x0d\xfc\x7d\xa0" + "\x84\xfd\xf3\xde\x7e\xc3\xea\x8b\x73\x5f\xf0\x91\x46\xb0\xbd\x9d" + "\x6e\x72\x39\x68\x6c\x6f\x34\xf3\xed\xed\x17\xc0\x62\x36\x8f\xd2" + "\x08\xe6\x6c\x21\x94\x97\x7c\x07\xdf\x71\xe1\x34\x41\x36\x6c\xb6" + "\x92\x8f\x41\xb0\xb9\xc5\x34\x21\xcb\x4d\xc8\x09\x45\xfe\x4e\x6b" + "\xc8\xf6\x31\x71\x02\xfb\x17\x5a\x22\xc4\xa1\x76\xb9\x86\xe8\xb8" + "\xf0\x4c\x6f\xf4\x7d\x3c\xd3\x22\x17\xdf\xc8\xd3\xd2\x9d\xed\x60" + "\xbc\xda\xa0\xfb\xca\xb9\x7f\xb5\x2c\xd1\xc4\x16\x13\x1d\x78\x2b" + "\xd0\xdd\xd3\x2b\x4f\xbc\x6e\x95\x08\xf1\xe9\x43\x0a\xec\x00\x1e" + "\xb8\x98\xe7\xbd\x54\xc6\x53\xde\x60\x08\xa5\x4a\xf8\xb3\x1b\x2a" + "\x77\xc2\xe1\x49\xd2\xc0\x53\xef\x5f\x6c\x61\x90\x0e\x83\x57\xe5" + "\xab\x7f\x03\x91\x71\xa5\xf4\xbb\x4d\x01\x00", + 27627, + "application/javascript", + "gzip", +}, +{ + "/", + + "\x1f\x8b\x08\x00\xac\x20\xc5\x65\x02\xff\x7d\x92\xb9\x6e\xc3\x30" + "\x0c\x86\xf7\x3c\x85\xaa\xb5\xb5\xdd\x6b\xc8\x60\x7b\xe9\x01\x14" + "\xe8\x50\x20\x2d\x82\x76\x31\x14\x89\xb1\xd9\xc8\x92\x21\x31\x8e" + "\xfd\xf6\x95\x8f\x22\xbd\xd0\x49\x24\xf4\xf3\xfb\x45\x8a\xe9\x89" + "\xb2\x92\xfa\x06\x58\x45\xb5\xce\x17\xe9\x70\x30\x2d\x4c\x99\x71" + "\x30\x3c\x5f\x30\x96\x56\x20\xd4\x10\x84\xb0\x06\x12\x4c\x56\xc2" + "\x79\xa0\x8c\xbf\x3c\xdf\x47\x4b\xce\x92\xf9\x52\xa3\xd9\x31\x07" + "\x3a\xe3\x28\xad\xe1\x6c\xc0\x86\xb8\x16\x25\x24\xbe\x2d\x4f\xbb" + "\x5a\x73\x56\x39\xd8\x66\x3c\x59\x81\xf1\x77\xab\xa7\x42\xdb\xd2" + "\x16\xbe\xaf\x37\x56\xc7\x41\x73\x84\x8d\x4e\x46\xd4\x81\xd0\x22" + "\x1c\x1a\xeb\x88\xb3\x80\x25\x30\xc1\xf9\x80\x8a\xaa\x4c\x41\x8b" + "\x12\xa2\x31\x39\x63\x68\x90\x50\xe8\xc8\x4b\xa1\x21\xbb\x88\xcf" + "\xff\x84\x49\xab\xad\x0b\x9a\x0a\x6a\xf8\x02\xd4\x58\x56\xc4\x94" + "\x70\xbb\x63\x15\x21\x69\xc8\xe7\x97\xb2\xdb\xd1\x8c\xad\x80\xf6" + "\x4d\x9a\x4c\x77\x93\xce\x4b\x87\x0d\xcd\xed\xd6\x56\xed\xf5\x40" + "\x76\xd6\x7b\xeb\xb0\x44\xc3\xbc\x93\xa1\x65\xe1\xc3\xd0\x7c\x82" + "\x46\x41\x17\x99\xdd\xd5\xcd\xe6\x71\x0d\xf1\xbb\xe7\x79\x9a\x4c" + "\x88\x5f\x73\x9c\x60\x4d\x88\xad\x50\xdf\x99\xf3\x1c\x67\x68\x51" + "\x6c\x41\x81\x13\x84\xd6\x14\x3e\xfc\x0f\xa8\x22\x94\x09\x49\xd1" + "\xb2\xe8\xda\x87\x6b\x63\x47\xa7\x9f\x06\x9e\x7a\x0d\xbe\x02\xa0" + "\xff\xe8\xd3\x93\x2f\xe5\xeb\x32\x7a\xeb\xd6\xb1\xf4\x13\x29\x4d" + "\x3e\x37\x23\xdd\x58\xd5\xcf\x70\x85\x2d\x43\x95\x71\xd1\x34\x43" + "\x67\x21\x9d\xb4\x93\x24\xd4\x8c\x7b\xf6\x01\x25\x09\x49\xf3\x78" + "\x02\x00\x00", + 371, + "text/html", + "gzip", +}, + {nullptr, nullptr, 0, nullptr, nullptr} +}; + +} // namespace sensesp + +#endif // SRC_SENSESP_NET_WEB_AUTOGEN_WEB_UI_FILES_H + \ No newline at end of file diff --git a/src/sensesp/net/web/base_command_handler.cpp b/src/sensesp/net/web/base_command_handler.cpp new file mode 100644 index 000000000..1aa5556c4 --- /dev/null +++ b/src/sensesp/net/web/base_command_handler.cpp @@ -0,0 +1,121 @@ +#include "base_command_handler.h" + +namespace sensesp { + +void add_http_reset_handler(HTTPServer* server) { + HTTPRequestHandler* reset_handler = new HTTPRequestHandler( + 1 << HTTP_POST, "/api/device/reset", [](httpd_req_t* req) { + httpd_resp_send(req, + "Resetting device back to factory defaults. " + "You may have to reconfigure the WiFi settings.", + 0); + ReactESP::app->onDelay(500, []() { SensESPBaseApp::get()->reset(); }); + return ESP_OK; + }); + server->add_handler(reset_handler); +} + +void add_http_restart_handler(HTTPServer* server) { + HTTPRequestHandler* restart_handler = new HTTPRequestHandler( + 1 << HTTP_POST, "/api/device/restart", [](httpd_req_t* req) { + httpd_resp_send(req, "Restarting device", 0); + ReactESP::app->onDelay(500, []() { ESP.restart(); }); + return ESP_OK; + }); + server->add_handler(restart_handler); +} + +void add_http_info_handler(HTTPServer* server) { + HTTPRequestHandler* info_handler = + new HTTPRequestHandler(1 << HTTP_GET, "/api/info", [](httpd_req_t* req) { + auto ui_outputs = UIOutputBase::get_ui_outputs(); + + JsonDocument json_doc; + JsonArray info_items = json_doc.to(); + + for (auto info_item = ui_outputs->begin(); + info_item != ui_outputs->end(); ++info_item) { + info_items.add(info_item->second->as_json()); + } + + String response; + serializeJson(json_doc, response); + httpd_resp_set_type(req, "application/json"); + httpd_resp_sendstr(req, response.c_str()); + return ESP_OK; + }); + server->add_handler(info_handler); +} + +void add_routes_handlers(HTTPServer* server) { + std::vector routes; + + routes.push_back(RouteDefinition("Status", "/status", "StatusPage")); + routes.push_back(RouteDefinition("System", "/system", "SystemPage")); + routes.push_back(RouteDefinition("WiFi", "/wifi", "WiFiConfigPage")); + routes.push_back(RouteDefinition("Signal K", "/signalk", "SignalKPage")); + routes.push_back( + RouteDefinition("Configuration", "/configuration", "ConfigurationPage")); + + // Pre-render the response + JsonDocument json_doc; + JsonArray routes_json = json_doc.to(); + + int sz = routes.size(); + + for (auto it = routes.begin(); it != routes.end(); ++it) { + routes_json.add(it->as_json()); + } + + String response; + + serializeJson(routes_json, response); + + HTTPRequestHandler* routes_handler = new HTTPRequestHandler( + 1 << HTTP_GET, "/api/routes", [response](httpd_req_t* req) { + httpd_resp_set_type(req, "application/json"); + httpd_resp_sendstr(req, response.c_str()); + return ESP_OK; + }); + server->add_handler(routes_handler); + + // Find the root page + + StaticFileData* root_page = nullptr; + for (int i = 0; i < sizeof(kWebUIFiles) / sizeof(StaticFileData); i++) { + if (strcmp(kWebUIFiles[i].url, "/") == 0) { + root_page = (StaticFileData*)&kWebUIFiles[i]; + break; + } + } + if (root_page == nullptr) { + debugE("Root page not found in kWebUIFiles"); + return; + } + + // Add a handler for each route that returns the root page + + for (auto it = routes.begin(); it != routes.end(); ++it) { + String path = it->get_path(); + HTTPRequestHandler* route_handler = new HTTPRequestHandler( + 1 << HTTP_GET, path.c_str(), [root_page](httpd_req_t* req) { + httpd_resp_set_type(req, root_page->content_type); + if (root_page->content_encoding != nullptr) { + httpd_resp_set_hdr(req, kContentEncoding, + root_page->content_encoding); + } + httpd_resp_send(req, root_page->content, root_page->content_length); + return ESP_OK; + }); + server->add_handler(route_handler); + } +} + +void add_base_app_http_command_handlers(HTTPServer* server) { + add_http_reset_handler(server); + add_http_restart_handler(server); + add_http_info_handler(server); + add_routes_handlers(server); +} + +} // namespace sensesp diff --git a/src/sensesp/net/web/base_command_handler.h b/src/sensesp/net/web/base_command_handler.h new file mode 100644 index 000000000..536439b04 --- /dev/null +++ b/src/sensesp/net/web/base_command_handler.h @@ -0,0 +1,46 @@ +#ifndef SENSESP_NET_WEB_BASE_COMMAND_HANDLER_H_ +#define SENSESP_NET_WEB_BASE_COMMAND_HANDLER_H_ + +#include + +#include + +#include "ArduinoJson.h" +#include "sensesp/net/http_server.h" +#include "sensesp/net/web/autogen/web_ui_files.h" +#include "sensesp/net/web/static_file_handler.h" +#include "sensesp/system/configurable.h" +#include "sensesp/ui/ui_output.h" +#include "sensesp_base_app.h" + +namespace sensesp { + +class RouteDefinition { + public: + RouteDefinition(String name, String path, String component_name) + : name_(name), path_(path), component_name_(component_name){}; + + String get_name() { return name_; } + String get_path() { return path_; } + String get_component_name() { return component_name_; } + + JsonDocument as_json() { + JsonDocument doc; + doc["name"] = name_; + doc["path"] = path_; + doc["componentName"] = component_name_; + + return doc; + } + + protected: + String name_; + String path_; + String component_name_; +}; + +void add_base_app_http_command_handlers(HTTPServer* server); + +} // namespace sensesp + +#endif // SENSESP_NET_HTTP_COMMAND_HANDLER_H_ diff --git a/src/sensesp/net/web/config_handler.cpp b/src/sensesp/net/web/config_handler.cpp new file mode 100644 index 000000000..ede2ab98e --- /dev/null +++ b/src/sensesp/net/web/config_handler.cpp @@ -0,0 +1,135 @@ +#include "config_handler.h" + +#include "sensesp.h" + +namespace sensesp { + +esp_err_t handle_config_list(httpd_req_t* req) { + JsonDocument json_doc; + JsonArray arr = json_doc["keys"].to(); + for (auto it = configurables.begin(); it != configurables.end(); ++it) { + arr.add(it->first); + } + String response; + serializeJson(json_doc, response); + httpd_resp_set_type(req, "application/json"); + httpd_resp_sendstr(req, response.c_str()); + return ESP_OK; +} + +void add_config_list_handler(HTTPServer* server) { + server->add_handler( + new HTTPRequestHandler(1 << HTTP_GET, "/api/config", handle_config_list)); +} + +void add_config_get_handler(HTTPServer* server) { + server->add_handler(new HTTPRequestHandler( + 1 << HTTP_GET, "/api/config/*", [](httpd_req_t* req) { + String url_tail = String(req->uri).substring(11); + char url_tail_cstr[url_tail.length() + 1]; + urldecode2(url_tail_cstr, url_tail.c_str()); + url_tail = String(url_tail_cstr); + if (url_tail.length() == 0) { + // return a list of all Configurable objects + return handle_config_list(req); + } + + // find the Configurable object with the matching config_path + std::map::iterator it = + configurables.find(url_tail); + if (it == configurables.end()) { + httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, + "No Configurable found with that path"); + return ESP_FAIL; + } + Configurable* confable = it->second; + + // get the configuration + JsonDocument doc; + String response; + JsonObject config = doc["config"].to(); + confable->get_configuration(config); + doc["schema"] = serialized(confable->get_config_schema()); + doc["description"] = confable->get_description(); + serializeJson(doc, response); + httpd_resp_set_type(req, "application/json"); + httpd_resp_sendstr(req, response.c_str()); + return ESP_OK; + })); +} + +void add_config_put_handler(HTTPServer* server) { + server->add_handler(new HTTPRequestHandler( + 1 << HTTP_PUT, "/api/config/*", + [](httpd_req_t* req) { // check that the content type is JSON + debugI("Handling PUT request to URL %s", req->uri); + if (get_content_type(req) != "application/json") { + httpd_resp_send_err(req, HTTPD_400_BAD_REQUEST, + "application/json content type expected"); + return ESP_FAIL; + } + + // get the URL tail after /api/config + String url_tail = String(req->uri).substring(11); + if (url_tail.length() == 0) { + httpd_resp_send_err(req, HTTPD_400_BAD_REQUEST, + "No configuration path specified"); + return ESP_FAIL; + } + + // urldecode the URL tail + char url_tail_cstr[url_tail.length() + 1]; + urldecode2(url_tail_cstr, url_tail.c_str()); + url_tail = String(url_tail_cstr); + + // find the Configurable object with the matching config_path + std::map::iterator it = + configurables.find(url_tail); + if (it == configurables.end()) { + httpd_resp_send_err(req, HTTPD_404_NOT_FOUND, + "No Configurable found with that path"); + return ESP_FAIL; + } + Configurable* confable = it->second; + + // receive the content + size_t content_len = req->content_len; + char* content = new char[content_len + 1]; + int ret = httpd_req_recv(req, content, content_len); + if (ret <= 0) { + httpd_resp_send_err(req, HTTPD_500_INTERNAL_SERVER_ERROR, + "Error receiving content"); + return ESP_FAIL; + } + content[content_len] = '\0'; + + // parse the content as JSON + JsonDocument doc; + DeserializationError error = deserializeJson(doc, content); + if (error) { + httpd_resp_send_err(req, HTTPD_400_BAD_REQUEST, + "Error parsing JSON content"); + return ESP_FAIL; + } + + // set the configuration + if (!confable->set_configuration(doc.as())) { + httpd_resp_send_err(req, HTTPD_400_BAD_REQUEST, + "Error setting configuration"); + return ESP_FAIL; + } + + // save the configuration + confable->save_configuration(); + httpd_resp_sendstr(req, "OK"); + return ESP_OK; + })); +} + +void add_config_handlers(HTTPServer* server) { + add_config_list_handler(server); + add_config_get_handler(server); + add_config_put_handler(server); +} + +} // namespace sensesp diff --git a/src/sensesp/net/web/config_handler.h b/src/sensesp/net/web/config_handler.h new file mode 100644 index 000000000..25a954c9d --- /dev/null +++ b/src/sensesp/net/web/config_handler.h @@ -0,0 +1,23 @@ +#ifndef SENSESP_NET_HTTP_CONFIG_HANDLER_H_ +#define SENSESP_NET_HTTP_CONFIG_HANDLER_H_ + +#include + +#include "ArduinoJson.h" +#include "sensesp/net/http_server.h" +#include "sensesp/system/configurable.h" + +namespace sensesp { + +/** + * @brief Handle HTTP requests to /config. + * + * This class handles HTTP requests to /config. It is used by the HTTPServer + * to provide a RESTful API for configuring Configurable objects. + * + */ +void add_config_handlers(HTTPServer* server); + +} // namespace sensesp + +#endif // SENSESP_NET_HTTP_CONFIG_HANDLER_H_ diff --git a/src/sensesp/net/web/css_bootstrap.h b/src/sensesp/net/web/css_bootstrap.h deleted file mode 100644 index d56fc2704..000000000 --- a/src/sensesp/net/web/css_bootstrap.h +++ /dev/null @@ -1,2967 +0,0 @@ -#include -const uint8_t PAGE_css_bootstrap[] PROGMEM = { - 0x1f,0x8b,0x8,0x0,0x62,0x38,0x8f,0x64, - 0x2,0xff,0xed,0xbd,0xeb,0x8e,0x23,0x39, - 0x92,0x2e,0xf8,0xff,0x3c,0x85,0x26,0xb, - 0x89,0xcc,0xa8,0x92,0x54,0xee,0x72,0xb9, - 0x14,0x17,0x54,0x62,0xe6,0x34,0xe6,0x60, - 0x7,0xa8,0x9e,0x1f,0xd3,0x33,0xc0,0x39, - 0x68,0xd4,0x2,0x2e,0xb9,0x2b,0x42,0x93, - 0xae,0xcb,0x91,0x14,0x99,0xa1,0x12,0xa2, - 0xb1,0xf,0xb1,0xf,0xb0,0xcf,0xb2,0x8f, - 0xb2,0x4f,0xb2,0xbc,0xba,0x9b,0x91,0xc6, - 0x8b,0x7b,0x28,0xab,0xba,0x67,0xa6,0x2e, - 0x99,0x11,0x4e,0xa3,0x91,0x66,0xa4,0xd1, - 0x48,0x7e,0xa4,0xf1,0xef,0x97,0x4f,0xc5, - 0xe1,0x58,0x9d,0x6,0xef,0xfe,0xed,0x5f, - 0xff,0xc7,0xe8,0xf6,0xdd,0xc3,0x8f,0xdf, - 0xff,0xdd,0x7f,0x1b,0x7c,0x3f,0xf8,0xef, - 0xbb,0xdd,0xe9,0x78,0x3a,0x14,0xfb,0xc1, - 0x97,0x7c,0x9c,0x8e,0xb3,0xc1,0xc7,0xa7, - 0xd3,0x69,0x7f,0xbc,0xff,0xf1,0xc7,0xc7, - 0xea,0xb4,0xd0,0x89,0xe3,0xe5,0x6e,0xf3, - 0xe3,0xd,0xa7,0xff,0xc3,0x6e,0x7f,0x3e, - 0xac,0x1f,0x9f,0x4e,0x83,0x49,0x92,0xa6, - 0xa3,0x49,0x32,0x49,0x7,0xff,0xfa,0x54, - 0x1,0x3e,0xff,0xf0,0x7c,0x7a,0xda,0x1d, - 0x8e,0x4e,0xe2,0xaf,0xeb,0xd3,0xa9,0x3a, - 0xc,0x7,0xff,0xb4,0x5d,0x8e,0x39,0xd1, - 0xcf,0xeb,0x65,0xb5,0x3d,0x56,0xe5,0xe0, - 0x79,0x5b,0x56,0x87,0xc1,0x1f,0xff,0xe9, - 0x5f,0x41,0x1d,0xd6,0xa7,0xa7,0xe7,0x85, - 0x28,0xfd,0xf4,0x75,0x71,0xfc,0xb1,0xa9, - 0xd0,0x8f,0x8b,0x7a,0xb7,0xf8,0x71,0x53, - 0xac,0xb7,0x3f,0xfe,0xfc,0x4f,0x7f,0xf8, - 0xc7,0x7f,0xfe,0xd3,0x3f,0xf2,0xda,0xfd, - 0x78,0x7f,0x60,0x4,0x97,0xd1,0x68,0x71, - 0x1c,0x2d,0xea,0xe7,0xea,0xfe,0xbb,0xa4, - 0x9c,0x55,0xab,0xf2,0x41,0x7c,0x59,0x6f, - 0xcb,0xf5,0xe3,0xee,0xfe,0xbb,0xd9,0x2c, - 0x4d,0x56,0x13,0xf9,0x6d,0xff,0x7c,0xd8, - 0xd7,0x8c,0x6e,0xb6,0x9a,0x4e,0x96,0xa9, - 0xfa,0xb6,0xde,0x7e,0xbe,0xff,0xae,0x9c, - 0x65,0xd9,0xed,0x54,0x7e,0x39,0x54,0x25, - 0xfb,0xb0,0xcc,0xf2,0x69,0x2e,0x3f,0xec, - 0xe,0xc5,0xf6,0x91,0x65,0x5b,0x95,0xf3, - 0x2a,0x55,0x44,0xe7,0xaa,0xae,0x77,0x5f, - 0xd9,0xb7,0xd5,0x32,0x4d,0xe6,0xf2,0xdb, - 0xe3,0xa1,0xaa,0xb6,0xf7,0xdf,0xa5,0x77, - 0xb7,0xf3,0x5c,0x91,0x9d,0xaa,0xa2,0xbe, - 0xff,0x6e,0x92,0x2c,0xef,0xee,0x14,0xd1, - 0xf2,0x5c,0x6c,0x79,0x4d,0x97,0xc5,0x2a, - 0x91,0x5f,0xbe,0x3e,0xad,0x4f,0x9c,0xfb, - 0x6a,0xa5,0xd9,0x14,0x67,0x56,0xc7,0xe5, - 0x3c,0x9f,0x97,0xed,0x97,0x51,0x59,0x1c, - 0x58,0x45,0xb3,0x69,0x56,0x4c,0x13,0xf0, - 0x39,0x4d,0x12,0x96,0xf7,0x76,0x75,0xb7, - 0x2a,0xc0,0xd7,0x9,0xff,0x5a,0xdd,0x55, - 0xcb,0xa,0x30,0x1d,0x65,0xfc,0x6b,0x59, - 0x55,0x93,0x6a,0x6,0xbe,0x4e,0xf9,0xd7, - 0x65,0x55,0x4e,0x4b,0xc8,0x21,0xe7,0x5f, - 0x8b,0x72,0x91,0x2f,0x60,0x25,0x66,0xfc, - 0xab,0x55,0xb5,0x39,0xff,0x3a,0xbd,0xcb, - 0x93,0x7c,0xe,0xbe,0xde,0xf2,0xaf,0x56, - 0x7d,0xef,0xf8,0xd7,0x49,0x3a,0xc9,0x27, - 0x77,0xaa,0x1,0xe,0xeb,0x4d,0x71,0x38, - 0xe3,0xd6,0x3b,0x56,0xcb,0xdd,0xb6,0x14, - 0x9f,0x61,0x69,0xc7,0xe7,0xe5,0xb2,0x3a, - 0x1e,0xb1,0x8e,0xd7,0xdb,0xd5,0xce,0xd0, - 0x68,0x71,0xd8,0xae,0xb7,0x8f,0xb8,0x75, - 0x4a,0xde,0x88,0x7,0xdc,0xb2,0x35,0xef, - 0xae,0x58,0x7d,0x52,0xcd,0x44,0x5,0x47, - 0x87,0xc7,0xc5,0x7d,0x9a,0xd,0xd3,0x34, - 0x19,0x4e,0xf2,0xcc,0xa8,0xa7,0x4c,0x4d, - 0x6e,0x59,0xf2,0x7c,0xc8,0x32,0xa3,0xfa, - 0x8a,0xc4,0x49,0x3e,0x4c,0xb3,0x7c,0x78, - 0xb,0x6a,0xad,0x59,0x32,0x53,0x19,0x4e, - 0xa6,0xb8,0xf2,0x2a,0xf,0xcb,0x74,0x97, - 0xd,0x91,0x8,0x32,0x65,0x92,0xc,0xf3, - 0x6c,0x38,0xbb,0x3,0x82,0xc8,0x84,0xe9, - 0x2d,0xe3,0x75,0xc7,0xaa,0x98,0xb4,0x2, - 0x89,0x94,0x2c,0x1b,0x66,0xf3,0xe1,0x34, - 0x5,0xbd,0xae,0x29,0x44,0xfd,0xff,0xa0, - 0x8c,0xa9,0x58,0xca,0x2c,0xc9,0x90,0xfd, - 0xab,0x3e,0xee,0xca,0xf3,0x68,0xb9,0xab, - 0x77,0x7,0x82,0x99,0x48,0x5c,0x3c,0xd2, - 0xec,0x56,0xbb,0xed,0x69,0x74,0x2c,0xb6, - 0x5c,0x5b,0x87,0xf5,0xea,0xfe,0x78,0x3e, - 0x9e,0xaa,0xcd,0xe8,0x79,0x3d,0x1c,0x15, - 0x7b,0x66,0x8f,0x23,0xf9,0x61,0xf8,0xee, - 0x4f,0xd5,0xe3,0xae,0x1a,0xfc,0xdb,0x3f, - 0xbd,0x1b,0xfe,0xcb,0x6e,0xb1,0x3b,0xed, - 0x86,0xef,0xfe,0x8f,0xaa,0xfe,0x52,0x9d, - 0xd6,0xcb,0x62,0xf0,0xcf,0xd5,0x73,0xf5, - 0x6e,0xf8,0xf,0x87,0x75,0x51,0xf,0xdf, - 0xfd,0x33,0x4b,0x1c,0xfc,0x89,0x71,0x7c, - 0x37,0x7c,0xf7,0xf3,0x7a,0x51,0x1d,0x8a, - 0xd3,0x7a,0xb7,0x55,0x5f,0xda,0x92,0x86, - 0xef,0xfe,0x81,0xf3,0x67,0x3,0x13,0xab, - 0xf5,0xe0,0x1f,0x37,0xbb,0x7f,0x5f,0xbf, - 0x6b,0x4b,0xb1,0x3f,0xfc,0xe9,0xbc,0x59, - 0xec,0xea,0x77,0x8a,0x3f,0xcc,0x5,0x4, - 0xd9,0xec,0xb6,0xbb,0xe3,0xbe,0x58,0x56, - 0xf7,0x7f,0xfa,0x1f,0x7f,0x64,0x3f,0x8f, - 0xfe,0xa5,0x7a,0x7c,0xae,0x8b,0xc3,0xf0, - 0x8f,0xd5,0xb6,0xde,0xd,0xd9,0xa7,0x62, - 0xb9,0x1b,0xfe,0x61,0xb7,0x3d,0xee,0xea, - 0xe2,0x88,0xea,0xc7,0xc9,0x19,0xf7,0x3f, - 0xec,0x9e,0xf,0x6b,0x36,0xf6,0xfd,0x73, - 0xf5,0xf5,0xdd,0xb0,0x61,0xd7,0x98,0x48, - 0xb9,0xae,0xb6,0xa7,0xfb,0x7a,0xbd,0xad, - 0x8a,0x43,0xf3,0xfb,0xc7,0xf4,0x36,0x29, - 0xab,0xc7,0xe1,0x80,0x69,0xb8,0xf8,0xc8, - 0xd5,0x3b,0x68,0xff,0x48,0xc6,0x69,0x7e, - 0xe3,0x48,0xba,0xb9,0x1,0x2d,0x24,0x4, - 0x58,0x15,0x9b,0x75,0x7d,0xbe,0xff,0x52, - 0x1c,0x3e,0x52,0xcd,0x63,0xd1,0x1f,0xd7, - 0xbf,0x56,0xf7,0xe9,0xa1,0xda,0x98,0x9, - 0x5f,0x2b,0x61,0x3d,0x6c,0xf8,0x0,0x29, - 0xbc,0xde,0xa3,0x27,0x99,0x92,0x8e,0x73, - 0xb3,0xef,0x60,0xcb,0x52,0xdd,0x46,0x8c, - 0x7d,0xaf,0xdf,0xf,0xef,0xef,0x8b,0x15, - 0x77,0x16,0xf7,0xf7,0x8b,0x6a,0xb5,0x3b, - 0x54,0x97,0xc5,0xee,0x85,0x17,0xcf,0x4d, - 0x79,0xb1,0x3b,0x30,0x7f,0xc1,0x72,0xbc, - 0xbc,0xfe,0xfd,0xa6,0x2a,0xd7,0xc5,0xe0, - 0xe3,0xfe,0x50,0xad,0xaa,0x83,0x18,0xaf, - 0x9f,0xd9,0xf0,0xc5,0x5a,0x86,0x6b,0xf9, - 0x9e,0x35,0x89,0x4c,0xa9,0xb6,0xcb,0xea, - 0xe6,0x22,0x9d,0xc4,0x71,0x79,0xd8,0xd5, - 0xf5,0x68,0x51,0x3d,0x15,0x5f,0xd6,0xac, - 0x1a,0xc7,0xd,0xfb,0xfa,0xf4,0xfa,0xca, - 0x6b,0x70,0x61,0xd6,0xfd,0xb8,0xde,0xde, - 0x27,0xf,0xa4,0x7e,0x4c,0xcd,0xdd,0x3c, - 0xb4,0x6a,0x21,0x88,0xf8,0x77,0x45,0xa2, - 0x14,0x44,0x10,0xc9,0x94,0x9b,0x7,0xa8, - 0x2d,0x4c,0x6,0x52,0x6e,0x1e,0xa4,0xea, - 0x30,0x81,0xf8,0x76,0xf3,0x70,0xaa,0x5e, - 0x4e,0xa3,0x82,0x99,0xff,0xd6,0x48,0x6f, - 0x13,0x6e,0x1e,0x16,0xcc,0x9e,0x1f,0xf, - 0x3b,0xe6,0x72,0x47,0x14,0xab,0xc5,0x23, - 0x6b,0xf4,0xaf,0xd5,0xe2,0xf3,0xfa,0x24, - 0xb3,0x71,0x19,0x46,0x45,0xf9,0xef,0xcf, - 0x47,0xd6,0x88,0x49,0xf2,0xbe,0x4d,0x2d, - 0xf6,0xa3,0x27,0x56,0x27,0x39,0xdc,0x48, - 0x5e,0xcc,0x41,0x6f,0x59,0xf,0x66,0xea, - 0x3e,0xbd,0x3e,0x1d,0xb4,0x32,0x79,0x87, - 0x19,0x24,0xaa,0xe6,0xeb,0xed,0x13,0xeb, - 0x5a,0x27,0xbb,0x1e,0xcb,0xe7,0x3,0xcf, - 0x27,0x4c,0xed,0x41,0x36,0x31,0x6b,0x86, - 0x1d,0xb3,0x87,0xf5,0xe9,0x7c,0x3f,0x9e, - 0xe4,0x8c,0x23,0x6b,0xd0,0xd3,0xc7,0x3f, - 0xf3,0x2a,0xfd,0x72,0x73,0xd1,0x3d,0x6b, - 0xff,0xf2,0x3a,0x7e,0x4a,0x87,0xe3,0xa7, - 0x9,0xfb,0x3f,0x63,0xff,0x4f,0xd9,0xff, - 0x39,0xfb,0x7f,0x36,0x64,0x9f,0xd9,0x57, - 0xf6,0x91,0x7d,0x63,0x9f,0x9e,0x66,0xaa, - 0x4a,0xa3,0xd3,0x6e,0xcf,0x98,0xab,0x5f, - 0xd8,0xf8,0x72,0xda,0x6d,0xee,0xc7,0x39, - 0xef,0xd8,0xb0,0xb5,0x98,0xdf,0x7b,0xc0, - 0x9d,0x78,0x22,0x8a,0x7a,0x4a,0x2f,0x6d, - 0xbb,0x2f,0x8b,0x7a,0xf9,0x91,0xcd,0x9f, - 0xe6,0x3c,0xfb,0xe0,0x87,0x1,0xeb,0xe9, - 0x5f,0xbe,0xde,0x34,0x3d,0x73,0xc3,0xa, - 0xf8,0xba,0x2e,0x4f,0x4f,0xf7,0x29,0x73, - 0xc4,0xfb,0x97,0x9b,0x8b,0xc5,0x61,0x22, - 0x4a,0x7e,0x7d,0xe5,0x12,0x3c,0x4d,0x8, - 0xd6,0x13,0xc5,0x7a,0x7c,0x17,0xe2,0x6c, - 0x30,0x98,0x28,0xbe,0x4c,0x1,0x19,0xc1, - 0x57,0x71,0x9d,0x85,0xb8,0x1a,0xd9,0xd3, - 0xf1,0x5c,0x57,0x98,0xa9,0x75,0x6a,0x33, - 0x9e,0x68,0x5d,0x8c,0xb3,0x10,0x6b,0x83, - 0x41,0xda,0xa8,0x82,0xb5,0x56,0x8e,0x12, - 0x84,0x12,0x5e,0x45,0xab,0xce,0x2e,0x78, - 0x34,0x7a,0xdd,0xfb,0xda,0x55,0x50,0x14, - 0x8b,0xc5,0xe1,0xcf,0x65,0x71,0x2a,0xe4, - 0x24,0x6e,0xcd,0xd2,0x8b,0x7a,0x74,0x5a, - 0x9f,0xea,0xea,0x97,0xa1,0x48,0x94,0x3f, - 0x5f,0x50,0xe7,0x2f,0x99,0x4b,0x97,0x3, - 0xf6,0xbd,0x98,0xa3,0xf2,0xce,0x30,0x28, - 0x19,0xdb,0xaa,0x7c,0x8,0x12,0xb0,0xe, - 0x7d,0x64,0xfd,0xfa,0xa9,0xaa,0xf7,0xf, - 0xe,0xae,0xa3,0xe3,0xe7,0xf5,0x7e,0xc4, - 0x67,0x9d,0xdb,0xdd,0xb6,0x7a,0xf0,0xa6, - 0xbe,0x16,0x65,0x79,0x60,0x13,0x88,0x8b, - 0x2d,0x9d,0x1a,0x85,0x4e,0x67,0x36,0xa1, - 0xdd,0xee,0xe,0x9b,0xa2,0x46,0xdd,0x56, - 0x99,0xdc,0xeb,0xae,0x1e,0x3e,0xd7,0x97, - 0x3d,0xe3,0xc3,0xe7,0x14,0x75,0xb5,0x3a, - 0xc9,0xe,0x52,0xd6,0x43,0x99,0x14,0x52, - 0xe2,0xae,0x1e,0xec,0x38,0xed,0xe0,0x99, - 0x93,0xf,0x44,0xa6,0x41,0x9b,0x4f,0x91, - 0x26,0xaf,0xe5,0xe9,0x2,0xcd,0x88,0x4d, - 0x9,0x5f,0xcb,0xf2,0x42,0x59,0x9b,0xfa, - 0x26,0xea,0x92,0xbc,0xb2,0xa9,0xfd,0xf2, - 0xf3,0xff,0x7e,0xde,0x9d,0xaa,0x66,0x1c, - 0x1e,0x24,0x3,0x51,0xf4,0x62,0xc8,0x66, - 0xff,0xbb,0xed,0x23,0x62,0xcc,0x3c,0x34, - 0xd3,0xf9,0xeb,0xf8,0xc8,0x24,0xae,0x87, - 0xe2,0x4f,0xd0,0x33,0xc6,0x6c,0x5a,0xc8, - 0x7b,0xc,0x63,0xf5,0x79,0xc8,0xff,0xd0, - 0xa2,0xb3,0xc1,0x84,0x15,0x6d,0xd,0x40, - 0xdf,0xad,0x96,0xab,0xdb,0x2a,0x7b,0x3d, - 0x3e,0xb3,0xc2,0x9e,0xf7,0x97,0xfd,0xee, - 0xb8,0x16,0x2d,0x7b,0xa8,0x6a,0xd6,0x1e, - 0x5f,0x2a,0x30,0xd8,0x8f,0x39,0x6b,0xa4, - 0xe4,0xe4,0xe1,0x4b,0x75,0xe0,0xd3,0x93, - 0x5a,0xd,0xc1,0x8b,0xe2,0x58,0x71,0x2, - 0xce,0xef,0xa2,0x84,0x1e,0xb1,0x5e,0xcc, - 0xaa,0xc4,0xb9,0x73,0x25,0x8f,0xc6,0xfc, - 0xb7,0xe2,0xa2,0xca,0x57,0x93,0x5e,0x67, - 0xc7,0x7a,0x2d,0xee,0x9f,0x76,0xac,0x94, - 0x86,0xbe,0xc8,0x6f,0x97,0x5,0xfb,0x2a, - 0x46,0xc5,0x27,0xe6,0xe8,0x7e,0xb9,0x91, - 0x3f,0x2f,0xd9,0x74,0xe3,0xf8,0xcb,0xcd, - 0xd0,0x9d,0x84,0x38,0xe9,0x31,0xd9,0x2c, - 0x59,0x74,0xbb,0xe5,0xae,0xac,0x86,0x9f, - 0x17,0xe5,0x90,0x79,0x52,0x36,0xa1,0xda, - 0xec,0x2f,0xee,0xa9,0x43,0x33,0x83,0x81, - 0x8e,0x31,0x65,0x9a,0x2a,0xd7,0x87,0x6a, - 0x29,0x78,0xd6,0xa7,0xc3,0xc3,0xf3,0x76, - 0xcd,0xb9,0x8e,0x16,0xeb,0x72,0x7d,0xcf, - 0xff,0x18,0xf1,0xca,0x1c,0xd6,0x65,0xf5, - 0xca,0xa,0xb9,0x94,0xeb,0xe3,0xbe,0x66, - 0xeb,0x1e,0xd1,0x1d,0x1e,0x2,0x9d,0xf2, - 0x81,0x67,0x5d,0xf1,0xf5,0x57,0xf1,0x7c, - 0xda,0x3d,0x58,0xcd,0xcf,0x18,0xe,0x78, - 0x61,0xa0,0x63,0x68,0x71,0xb1,0xf0,0x5f, - 0x99,0xcb,0x19,0x2d,0xe,0x55,0xf1,0x59, - 0xd9,0xd0,0xab,0x91,0x4d,0x32,0x54,0xb9, - 0xf4,0x2a,0x51,0xe4,0xfa,0xca,0xd6,0xa5, - 0xf7,0x22,0xeb,0x88,0xff,0xfe,0x5a,0x7c, - 0x12,0x59,0x11,0xff,0x57,0xa6,0x42,0xd0, - 0x1,0xf9,0xf8,0x38,0x9e,0xb6,0xb6,0x6b, - 0x17,0xc0,0xd7,0x80,0x76,0x1f,0x55,0x53, - 0x26,0x35,0x5,0xe2,0x33,0xc2,0xe7,0xa3, - 0x64,0xc7,0xb,0x18,0xc0,0x42,0x12,0xa3, - 0xd,0x4c,0x93,0x5c,0xad,0x1f,0x9f,0xf, - 0xb6,0xa5,0xad,0x37,0x8f,0xc3,0xe3,0x97, - 0xc7,0x8b,0xd1,0x9d,0x37,0xeb,0xb2,0xac, - 0xab,0xd7,0x53,0xb1,0xa8,0x99,0x64,0xc5, - 0x5e,0xe,0x50,0xac,0xc9,0xee,0x65,0x63, - 0xe8,0x2a,0xb1,0x7a,0xd6,0xc5,0xfe,0xc8, - 0x7c,0x81,0xfa,0xe1,0x55,0x11,0x37,0x3, - 0xf,0x6f,0x49,0x69,0xfd,0xfa,0xb,0x1a, - 0x12,0x94,0xa0,0x6a,0xa9,0x7,0xe6,0x34, - 0x7c,0x90,0x78,0x3d,0x3d,0x5d,0xc0,0x27, - 0xd4,0x71,0xe5,0x27,0x3d,0xd2,0x6e,0x8a, - 0xd3,0xf2,0x69,0xa4,0xe6,0x22,0x27,0x3e, - 0xb7,0x19,0x9e,0xca,0xe1,0x69,0xc5,0xe6, - 0x7a,0xc3,0xd3,0x13,0xfb,0xaf,0x2a,0xd8, - 0xaf,0x87,0x4b,0x5b,0x6d,0x38,0x39,0x91, - 0x1f,0xe5,0x88,0xca,0x26,0xef,0xeb,0x52, - 0x7f,0x92,0xfe,0x2b,0x79,0xad,0x8b,0x45, - 0x55,0x37,0x3d,0x75,0xbd,0x15,0x43,0x81, - 0xe8,0xb0,0xaf,0x8b,0x67,0x26,0xcd,0xf6, - 0x82,0x9b,0x28,0x51,0x9f,0xef,0x57,0xbb, - 0x25,0xfb,0x95,0x9b,0xa2,0xfc,0x71,0xf4, - 0x65,0x7d,0x5c,0x33,0x9d,0xde,0x5c,0x76, - 0xcf,0x27,0xce,0xa5,0x21,0x1d,0xae,0xb7, - 0xfb,0xe7,0xd3,0x70,0xb7,0x3f,0xf1,0x2e, - 0xb0,0x1f,0xb2,0xe1,0x84,0xd9,0xd0,0x90, - 0xcb,0xca,0xa4,0x2a,0xe8,0xa9,0xaa,0x96, - 0xc0,0xee,0xed,0x94,0x47,0x50,0x5,0x49, - 0xce,0x52,0xb1,0x62,0xa,0xc7,0x66,0xdc, - 0x1b,0x69,0xfd,0x7f,0x66,0x73,0xe5,0xea, - 0x27,0x49,0xf7,0xcb,0x45,0xb9,0xb4,0xfd, - 0x6e,0xbd,0x65,0x93,0xf3,0x57,0x95,0xaf, - 0xb5,0x1,0x65,0x38,0xf2,0xfb,0x3d,0xd3, - 0xe,0xef,0x2d,0xe5,0x45,0x4f,0xe2,0xd2, - 0xd7,0x3f,0xd7,0xeb,0xe3,0xe9,0x97,0xfb, - 0xa6,0x95,0x58,0xff,0xaa,0xf8,0x9a,0x79, - 0xb4,0x5f,0x2f,0x3f,0x33,0x6d,0xf1,0x9d, - 0x9a,0x65,0x71,0xda,0x1d,0x1a,0xd5,0xca, - 0x5a,0x9c,0xce,0xfb,0xa6,0x16,0x43,0xf9, - 0x1b,0xf3,0x85,0xd5,0x49,0xff,0xc2,0xc6, - 0xd8,0xcd,0x9a,0xfd,0xa6,0x74,0xaf,0xd9, - 0xb3,0x35,0x25,0x5b,0x39,0x15,0x6c,0xf2, - 0x7f,0x2f,0x53,0x30,0x27,0xd9,0xc,0xba, - 0x9a,0x37,0x88,0x31,0x9d,0xa6,0xca,0x31, - 0x13,0x55,0xdb,0xe2,0xaf,0xa6,0xb6,0x98, - 0xd4,0x9b,0xdd,0xaf,0x23,0xd9,0xea,0xeb, - 0xed,0x96,0xd,0xbf,0xad,0xa9,0xa2,0x1e, - 0x27,0x64,0x6e,0xda,0x99,0xd5,0x47,0xac, - 0x2f,0x94,0x3d,0x32,0xbb,0xad,0xea,0x92, - 0x55,0xf1,0xd2,0xce,0xa7,0x92,0x87,0x96, - 0x53,0xd3,0x2d,0xf4,0x1c,0xfa,0xb5,0xae, - 0x1e,0x99,0x92,0x2f,0x6c,0x90,0x2c,0x4e, - 0xc2,0x8a,0x1e,0xd4,0x2c,0x8c,0x4f,0xe7, - 0xcd,0x8c,0xc4,0x6c,0xd8,0x3d,0xb5,0x23, - 0x3b,0x95,0x7b,0xba,0xa7,0x2b,0x62,0x4d, - 0xf7,0x64,0xc2,0xf,0xdf,0x5f,0x96,0x35, - 0x6b,0x2f,0x69,0xe9,0x6d,0x27,0x61,0xd3, - 0x36,0xb6,0xf0,0xdf,0x54,0x23,0xc6,0x97, - 0xff,0xc6,0x16,0x4e,0x5c,0x5,0x43,0x17, - 0x85,0x54,0x90,0xe8,0x91,0x7b,0xb1,0x84, - 0xa4,0xc9,0x9e,0xd8,0xda,0x3b,0xc0,0x89, - 0x89,0xf0,0x7c,0xaa,0xdc,0xc9,0x4c,0x90, - 0xa7,0x0,0xb,0xde,0x8c,0xce,0xc4,0x33, - 0x5f,0xd7,0x8b,0xfc,0x6d,0x57,0x0,0x82, - 0x8b,0x4e,0x32,0x3a,0xee,0x79,0xab,0xc8, - 0x8e,0xad,0x54,0xcd,0x5d,0x9d,0xea,0xca, - 0x47,0xc6,0x62,0xf9,0xf4,0x8b,0x1e,0x3d, - 0x46,0xbb,0xd5,0x8a,0xf5,0x8d,0xfb,0xd1, - 0x64,0xff,0xf2,0x40,0x98,0x1,0xaf,0x8e, - 0x28,0x10,0x14,0x23,0x59,0x0,0xc7,0x4f, - 0xd9,0x8f,0xe8,0x93,0xc0,0x70,0xc5,0xee, - 0xcf,0xf1,0xab,0x18,0x65,0x95,0xa6,0x49, - 0x19,0x56,0xeb,0xba,0x1a,0x3d,0xef,0x59, - 0xdf,0x2b,0xb5,0x10,0xbc,0xfd,0x9b,0xde, - 0x72,0x7f,0x2f,0x28,0xe4,0x90,0xc1,0x58, - 0xd2,0x34,0x91,0xdc,0x1e,0xdc,0x86,0xcf, - 0xf4,0xc3,0x46,0x53,0x7a,0xc4,0x5e,0xaf, - 0xe,0xc5,0xa6,0xba,0x34,0x6,0x73,0x7c, - 0xde,0xf0,0x5d,0xbe,0x86,0x98,0xf,0x5a, - 0xa3,0xf5,0x89,0x3b,0x27,0x6c,0xd2,0xfb, - 0xc3,0xee,0x51,0xcc,0xc9,0x5d,0x73,0xbf, - 0x3f,0x3f,0x31,0xb7,0x59,0xb1,0x91,0x13, - 0xe,0x67,0x7f,0xb7,0xde,0xec,0x77,0x87, - 0x53,0xc1,0x1c,0xd3,0x98,0xf5,0xf7,0xd2, - 0x5e,0xe6,0x20,0x5f,0x9d,0x31,0x5f,0x3d, - 0x56,0xf9,0x47,0xc4,0xca,0x73,0xa6,0x97, - 0x87,0x53,0xb1,0xf2,0x34,0xf3,0x5a,0x2b, - 0x58,0xcf,0x72,0x8c,0x2a,0x45,0x2d,0xc8, - 0x74,0x12,0xb1,0x3e,0xcd,0xf5,0x98,0x90, - 0x89,0x5,0xea,0x35,0x2a,0x0,0x4b,0x99, - 0x8e,0x8d,0x2a,0x10,0x4b,0xd9,0x7c,0xd2, - 0x54,0x21,0xbb,0x52,0x15,0x60,0x29,0x53, - 0x5c,0x1,0x62,0xc9,0x3b,0xd5,0x3a,0x98, - 0x8c,0xe7,0x57,0xaa,0x0,0x2c,0x25,0x33, - 0x75,0x90,0x13,0x55,0x98,0x34,0x55,0x48, - 0xaf,0x54,0x5,0x58,0x4a,0x86,0x2b,0x30, - 0xb,0x6e,0x81,0x5c,0xa3,0x2,0x33,0x6a, - 0x9b,0x44,0x98,0xe3,0xf3,0x56,0xf8,0xca, - 0x12,0xaf,0x67,0x79,0x21,0xc7,0x13,0x74, - 0xa3,0x92,0x5a,0x9a,0x7b,0x17,0x5a,0x61, - 0xef,0xf4,0x70,0x61,0x91,0x49,0xc7,0xcf, - 0x16,0x56,0x6c,0x5c,0x7c,0x5a,0xd7,0xcc, - 0xf5,0x2b,0x5f,0x2a,0x20,0x30,0xe9,0x4a, - 0x5f,0xc7,0xeb,0x2d,0x5b,0x4e,0xb2,0xf1, - 0xe1,0xb8,0xb1,0x17,0x15,0xc6,0xd4,0xeb, - 0x99,0xf,0xa7,0x4b,0x36,0x88,0xbc,0x8e, - 0xad,0x35,0x31,0xb1,0xf0,0x47,0x1b,0x24, - 0x6d,0x86,0x4f,0xa0,0x4a,0xd6,0x1a,0x1d, - 0xd0,0x8d,0xf8,0xa4,0xb8,0x3a,0xc0,0xe5, - 0xff,0x28,0x5,0xab,0x73,0xba,0x40,0xbc, - 0x5a,0x91,0xd3,0x75,0x82,0x6b,0xb3,0x81, - 0xbb,0x64,0x39,0xf9,0x6e,0xf6,0xbb,0xff, - 0xef,0xff,0xfa,0xbf,0xff,0xdf,0xff,0xe7, - 0x1d,0xd3,0xc7,0xe6,0x71,0xb4,0xaa,0x9f, - 0xd7,0xbc,0x6e,0x2f,0x23,0x30,0x25,0x81, - 0x4e,0x4e,0x50,0x9d,0x9e,0x9e,0x37,0x8b, - 0x6d,0xb1,0xae,0xc1,0x2,0x4a,0xc,0x93, - 0xc4,0x1a,0x9e,0xaf,0x9a,0xe4,0x38,0x9e, - 0xee,0x5f,0x6,0x62,0xee,0x3e,0xd0,0x38, - 0x97,0xb9,0x6a,0x52,0x5b,0x10,0xee,0xc2, - 0xd5,0x12,0x89,0xee,0x5,0x32,0x71,0xc4, - 0x2a,0x48,0x6e,0x6d,0xa0,0xde,0xde,0x50, - 0xeb,0xc5,0x50,0x48,0x8f,0x5c,0x5b,0x5, - 0xe3,0x70,0x18,0xb6,0x3f,0x4a,0x6d,0xc1, - 0xf,0xf5,0x23,0xfc,0x6d,0x83,0xd2,0x8e, - 0x1b,0xf8,0xdb,0x4b,0x8d,0x7e,0x7b,0xa9, - 0x2f,0xf6,0x1c,0x50,0x75,0xd7,0x66,0x49, - 0xff,0xf8,0xcc,0xf1,0xda,0xd1,0xcb,0x50, - 0xee,0xf7,0xdd,0x3c,0x20,0xf3,0x71,0x93, - 0xa1,0xce,0x2f,0x56,0xe5,0x70,0x9b,0x47, - 0x68,0xd6,0x36,0xfd,0x7c,0x3e,0x13,0x96, - 0x4f,0xa,0xce,0x4c,0xa6,0x6d,0xa6,0x7c, - 0xca,0xc6,0x88,0x57,0x82,0xc5,0x7c,0x76, - 0xeb,0x66,0x61,0x2a,0x7,0x30,0x9c,0x4f, - 0x1c,0xc,0xef,0xee,0x26,0x6e,0x86,0x7e, - 0xdd,0x3,0xf6,0x77,0x33,0x7,0xfb,0x66, - 0xb4,0xeb,0xc1,0x1f,0xb7,0x2d,0xb4,0xa0, - 0xd4,0xa5,0x1e,0x96,0x70,0xa5,0xe2,0xcc, - 0xae,0x4,0x4a,0xcf,0xa4,0x2e,0xc7,0x87, - 0xdd,0xd7,0xb,0xea,0x1d,0x6a,0xae,0xff, - 0x0,0x3f,0x9e,0xd9,0x18,0xac,0x6d,0x6b, - 0x55,0x57,0x2f,0xf,0xfc,0xf,0xb9,0x92, - 0xe4,0x7f,0xc0,0xad,0x1f,0xe1,0x62,0x46, - 0xe9,0xe0,0xfb,0x81,0xd9,0xef,0xce,0x37, - 0x46,0x8f,0x93,0xa4,0xe3,0x9c,0xa0,0x7d, - 0x69,0x69,0x45,0x5f,0xf4,0x93,0xa,0x29, - 0x3e,0x7d,0x7f,0x11,0xb5,0x3a,0x3e,0x1d, - 0xf8,0x4e,0x6c,0x2,0xd7,0x4e,0xc6,0xd0, - 0x81,0xcd,0x48,0xf0,0xb6,0xb9,0xb2,0xa2, - 0xc6,0xb9,0x61,0x4a,0x7e,0x52,0xa0,0x5, - 0x5b,0x76,0x3e,0x52,0xd4,0xa2,0x86,0xf7, - 0xe9,0x20,0x19,0x24,0xef,0x45,0xa5,0xf9, - 0x68,0x78,0x1c,0x71,0x4b,0x53,0xd5,0x17, - 0xdb,0x3b,0xc2,0x14,0x65,0x7d,0xe5,0xf0, - 0xd6,0x50,0xa6,0xe,0x32,0x2e,0x16,0x20, - 0x9b,0x38,0xc8,0x72,0x44,0x95,0x39,0xa8, - 0x32,0x36,0x37,0x6b,0xfe,0x81,0x19,0xa6, - 0x8e,0xc,0x93,0x1c,0x52,0xe5,0x2e,0x2a, - 0x54,0xf8,0xcc,0x25,0xc9,0x6c,0x3c,0xd3, - 0xff,0xcc,0xdf,0xb,0xad,0x9,0xfd,0x78, - 0xb4,0xc3,0x49,0x52,0x32,0xfd,0x76,0xc, - 0xc4,0xe0,0x64,0x93,0x40,0x99,0xba,0xc4, - 0xcc,0x2d,0x27,0x4f,0x9e,0x86,0xf4,0xa6, - 0xe8,0x72,0x92,0x6e,0x9a,0x9a,0xc5,0xcd, - 0xdc,0xad,0xc5,0x93,0xe7,0x74,0xb2,0x25, - 0xdd,0x2d,0x49,0x37,0xb3,0xa4,0xbb,0x23, - 0xe9,0xe6,0x5a,0xba,0x34,0xa1,0x95,0x69, - 0x89,0x97,0xd2,0x5a,0xbf,0xb3,0xe4,0x4b, - 0x27,0x9e,0x5e,0x2b,0x17,0xc2,0xac,0x5, - 0xa1,0xc1,0x23,0xd9,0x14,0xc5,0x4,0x51, - 0xe0,0x46,0x53,0x24,0x19,0x22,0x11,0xed, - 0xa5,0x52,0xa6,0x28,0x5,0x37,0x95,0x22, - 0xc9,0x11,0x9,0x6e,0x25,0x45,0x32,0x43, - 0x24,0x39,0xa8,0xfe,0x1c,0xa7,0x50,0xf5, - 0xbf,0x45,0x24,0x33,0xaa,0xfe,0x77,0x88, - 0x64,0xe,0xea,0xcf,0x1a,0x5,0xe9,0x87, - 0x12,0x20,0xc5,0x3a,0xc4,0xed,0xf0,0x38, - 0x4a,0x86,0xe3,0xc7,0x97,0x51,0x62,0xc, - 0xf7,0x89,0x4e,0x3a,0x1b,0x49,0x67,0x99, - 0x94,0x8a,0x5c,0xa9,0x99,0x4b,0xcf,0x62, - 0x25,0xc1,0xd9,0x20,0x38,0x43,0x82,0x89, - 0xe0,0x30,0xb1,0x38,0xc0,0xf4,0xb3,0x91, - 0x7e,0x6,0xe9,0x99,0xc8,0x9f,0x99,0x6e, - 0xa,0xa4,0x9e,0x8d,0xd4,0x73,0x93,0x3a, - 0x15,0x79,0xa7,0xa4,0x8b,0xd3,0xe9,0x67, - 0x23,0xfd,0xc,0xd2,0x73,0x91,0x3f,0x37, - 0xf2,0x67,0x20,0xf5,0x6c,0xa4,0x9e,0x65, - 0xaa,0x6f,0xe2,0x54,0xf3,0x79,0x7,0xed, - 0xa,0x8e,0x9b,0xe,0xde,0x80,0x11,0x47, - 0x3a,0x4,0x46,0x19,0xe7,0x13,0x18,0x61, - 0x67,0xb7,0xc0,0xf2,0xc4,0x79,0x6,0x46, - 0x18,0xe7,0x1c,0x18,0x61,0x17,0xff,0xa0, - 0x94,0x16,0x70,0x11,0x5c,0x5b,0x71,0x5e, - 0x82,0x6b,0x2b,0xd2,0x51,0x70,0x7d,0xf9, - 0x7d,0x5,0xd7,0x4e,0xa4,0xbb,0xe0,0xfa, - 0x89,0xf4,0x18,0x5c,0x43,0x7e,0xa7,0xc1, - 0x28,0x62,0xfd,0x6,0x23,0x8d,0x75,0x1d, - 0x8c,0x34,0xe0,0x3d,0xb8,0x9a,0x63,0x1d, - 0x8,0xa7,0x8d,0xf5,0x21,0x9c,0x36,0xc2, - 0x8d,0x30,0x32,0x3c,0x52,0x26,0x30,0x29, - 0xec,0x64,0x44,0xdb,0x7,0xfd,0x8c,0x68, - 0x76,0x97,0xab,0x11,0x2d,0x1e,0xf4,0x36, - 0xa2,0xb1,0x83,0xe,0x47,0xb4,0xb3,0xcb, - 0xe7,0x88,0x26,0xe,0xba,0x1d,0xd1,0xba, - 0x41,0xcf,0x23,0x1a,0xd6,0xe5,0x7c,0x64, - 0x9b,0x6,0xfd,0x8f,0x6c,0x4e,0x9f,0xb, - 0xe2,0xad,0x23,0x46,0x54,0xd1,0x4c,0x84, - 0x23,0x52,0x4,0x67,0x9b,0xe0,0xdc,0x10, - 0xa4,0x9a,0x83,0xc7,0x29,0x29,0xb2,0xb3, - 0x4d,0x76,0x36,0xc8,0x26,0x9a,0x9b,0xdb, - 0x41,0x29,0xaa,0xb3,0x4d,0x75,0xc6,0x54, - 0x99,0xe6,0xe5,0x72,0x56,0x8a,0xe6,0x6c, - 0xd3,0x9c,0x21,0xcd,0x54,0xf3,0x71,0x3b, - 0x2e,0x45,0x75,0xb6,0xa9,0xce,0x98,0x2a, - 0xd7,0xbc,0x5c,0x4e,0x4c,0xd1,0x9c,0x6d, - 0x1a,0xe5,0xca,0xbc,0x2b,0xf8,0x9a,0x2d, - 0x41,0x1d,0xbe,0x6c,0x53,0x76,0xf0,0x65, - 0x8c,0x38,0xd2,0x97,0x31,0xca,0x38,0x5f, - 0xc6,0x8,0x3b,0xfb,0x32,0x96,0x27,0xce, - 0x97,0x31,0xc2,0x38,0x5f,0xc6,0x8,0xbb, - 0xf8,0x32,0xa5,0xb4,0x80,0x2f,0xe3,0xda, - 0x8a,0xf3,0x65,0x5c,0x5b,0x91,0xbe,0x8c, - 0xeb,0xcb,0xef,0xcb,0xb8,0x76,0x22,0x7d, - 0x19,0xd7,0x4f,0xa4,0x2f,0xe3,0x1a,0xf2, - 0xfb,0x32,0x46,0x11,0xeb,0xcb,0x18,0x69, - 0xac,0x2f,0x63,0xa4,0x1,0x5f,0xc6,0xd5, - 0x1c,0xeb,0xcb,0x38,0x6d,0xac,0x2f,0xe3, - 0xb4,0x11,0xbe,0x8c,0x91,0xb9,0x7c,0x99, - 0xe8,0x0,0x21,0x5f,0x26,0xda,0x3e,0xe8, - 0xcb,0x44,0xb3,0xbb,0x7c,0x99,0x68,0xf1, - 0xa0,0x2f,0x13,0x8d,0x1d,0xf4,0x65,0xa2, - 0x9d,0x5d,0xbe,0x4c,0x34,0x71,0xd0,0x97, - 0x89,0xd6,0xd,0xfa,0x32,0xd1,0xb0,0x2e, - 0x5f,0x26,0xdb,0x34,0xe8,0xcb,0x64,0x73, - 0xfa,0x7c,0x19,0x6f,0x1d,0x31,0xb6,0x8a, - 0x66,0x22,0x7c,0x99,0x22,0x38,0xdb,0x4, - 0xe7,0x86,0x20,0xd5,0x1c,0x3c,0xbe,0x4c, - 0x91,0x9d,0x6d,0xb2,0xb3,0x41,0x36,0xd1, - 0xdc,0xdc,0xbe,0x4c,0x51,0x9d,0x6d,0xaa, - 0x33,0xa6,0xca,0x34,0x2f,0x97,0x2f,0x53, - 0x34,0x67,0x9b,0xe6,0xc,0x69,0xa6,0x9a, - 0x8f,0xdb,0x97,0x29,0xaa,0xb3,0x4d,0x75, - 0xc6,0x54,0xb9,0xe6,0xe5,0xf2,0x65,0x8a, - 0xe6,0x6c,0xd3,0xb8,0x7d,0x59,0xbb,0x79, - 0x5c,0x8f,0xea,0x47,0x87,0x2f,0xab,0x1f, - 0x3b,0xf8,0x32,0x46,0x1c,0xe9,0xcb,0x18, - 0x65,0x9c,0x2f,0x63,0x84,0x9d,0x7d,0x19, - 0xcb,0x13,0xe7,0xcb,0x18,0x61,0x9c,0x2f, - 0x63,0x84,0x5d,0x7c,0x99,0x52,0x5a,0xc0, - 0x97,0x71,0x6d,0xc5,0xf9,0x32,0xae,0xad, - 0x48,0x5f,0xc6,0xf5,0xe5,0xf7,0x65,0x5c, - 0x3b,0x91,0xbe,0x8c,0xeb,0x27,0xd2,0x97, - 0x71,0xd,0xf9,0x7d,0x19,0xa3,0x88,0xf5, - 0x65,0x8c,0x34,0xd6,0x97,0x31,0xd2,0x80, - 0x2f,0xe3,0x6a,0x8e,0xf5,0x65,0x9c,0x36, - 0xd6,0x97,0x71,0xda,0x8,0x5f,0xc6,0xc8, - 0x5c,0xbe,0x4c,0x74,0x80,0x90,0x2f,0x13, - 0x6d,0x1f,0xf4,0x65,0xa2,0xd9,0x5d,0xbe, - 0x4c,0xb4,0x78,0xd0,0x97,0x89,0xc6,0xe, - 0xfa,0x32,0xd1,0xce,0x2e,0x5f,0x26,0x9a, - 0x38,0xe8,0xcb,0x44,0xeb,0x6,0x7d,0x99, - 0x68,0x58,0x97,0x2f,0x93,0x6d,0x1a,0xf4, - 0x65,0xb2,0x39,0x7d,0xbe,0xac,0xd6,0xbb, - 0x83,0xa2,0x99,0x8,0x5f,0x56,0xeb,0x3d, - 0x42,0x8b,0xe0,0xdc,0x10,0xa4,0x9a,0x83, - 0xc7,0x97,0xd5,0x7a,0xbf,0xd0,0x22,0x3b, - 0x1b,0x64,0x13,0xcd,0xcd,0xed,0xcb,0x6a, - 0xbd,0x77,0x68,0x51,0x9d,0x31,0x55,0xa6, - 0x79,0xb9,0x7c,0x59,0xad,0xf7,0x11,0x2d, - 0x9a,0x33,0xa4,0x99,0x6a,0x3e,0x6e,0x5f, - 0x56,0xeb,0x3d,0x45,0x8b,0xea,0x8c,0xa9, - 0x72,0xcd,0xcb,0xe5,0xcb,0x6a,0xbd,0xbf, - 0x68,0xd1,0xb8,0x7d,0x19,0x40,0x2a,0x6b, - 0xe,0x37,0xd2,0xce,0xec,0xa5,0xee,0xe0, - 0xcc,0x18,0x71,0xa4,0x33,0x63,0x94,0x71, - 0xce,0x8c,0x11,0x76,0x76,0x66,0x2c,0x4f, - 0x9c,0x33,0x63,0x84,0x71,0xce,0x8c,0x11, - 0x76,0x71,0x66,0x2f,0x51,0x38,0xd4,0x4b, - 0x34,0x14,0xf5,0x12,0x8f,0x46,0xbd,0x4, - 0x1,0xa9,0x97,0x78,0x4c,0xea,0x25,0x1e, - 0x96,0x7a,0x9,0x22,0x53,0x2f,0xf1,0xe0, - 0xd4,0x4b,0x3c,0x3e,0xf5,0x12,0x84,0xa8, - 0x5e,0x3a,0xa0,0x54,0x2f,0x1d,0x80,0xaa, - 0x97,0x38,0xac,0x8a,0x91,0xb9,0x9c,0x99, - 0xe8,0x0,0x21,0x67,0x26,0xda,0x3e,0xe8, - 0xcc,0x44,0xb3,0xbb,0x9c,0x99,0x68,0xf1, - 0xa0,0x33,0x13,0x8d,0x1d,0x74,0x66,0xa2, - 0x9d,0x5d,0xce,0x4c,0x34,0x71,0xd0,0x99, - 0x89,0xd6,0xd,0x3a,0x33,0xd1,0xb0,0x2e, - 0x67,0x26,0xdb,0x34,0xe8,0xcc,0x64,0x73, - 0xfa,0x9c,0x19,0x6f,0x1d,0x31,0xb8,0x8a, - 0x66,0x22,0x9c,0x99,0x22,0x38,0xdb,0x4, - 0xe7,0x86,0x20,0xd5,0x1c,0x3c,0xce,0x4c, - 0x91,0x9d,0x6d,0xb2,0xb3,0x41,0x36,0xd1, - 0xdc,0xdc,0xce,0x4c,0x51,0x9d,0x6d,0xaa, - 0x33,0xa6,0xca,0x34,0x2f,0x97,0x33,0x53, - 0x34,0x67,0x9b,0xe6,0xc,0x69,0xa6,0x9a, - 0x8f,0xdb,0x99,0x29,0xaa,0xb3,0x4d,0x75, - 0xc6,0x54,0xb9,0xe6,0xe5,0x72,0x66,0x8a, - 0xe6,0x6c,0xd3,0x78,0x9c,0xd9,0x14,0x3a, - 0x33,0xb7,0x37,0xeb,0xe6,0xce,0x3a,0xf8, - 0xb3,0x78,0x87,0xd6,0xcb,0xa3,0xc5,0xbb, - 0xb4,0x78,0x9f,0xd6,0xd5,0xa9,0x45,0x7a, - 0xb5,0xe,0x6e,0xad,0x8b,0x5f,0x8b,0x70, - 0x6c,0x5d,0x3c,0x5b,0x17,0xd7,0x16,0xe1, - 0xdb,0xba,0x38,0xb7,0x2e,0xde,0x2d,0xc2, - 0xbd,0x75,0xf2,0x6f,0x9d,0x1c,0x5c,0xac, - 0x87,0xf3,0xb9,0xb8,0x38,0x1f,0x17,0xe9, - 0xe4,0xfc,0x5e,0x2e,0xd2,0xcd,0x45,0xfa, - 0x39,0xbf,0xa3,0x8b,0xf4,0x74,0x91,0xae, - 0xce,0xef,0xeb,0x62,0x9d,0x5d,0x84,0xb7, - 0x6b,0xdd,0x9d,0xd3,0xdf,0xb5,0xe,0xcf, - 0xe9,0xf1,0x5a,0x97,0x17,0xf0,0x79,0xad, - 0xd3,0xb,0x78,0xbd,0xd6,0xed,0xf9,0xfd, - 0x5e,0xeb,0xf8,0xfc,0x9e,0xaf,0x75,0x7d, - 0x3e,0xdf,0xd7,0x3a,0x3f,0x9f,0xf7,0x6b, - 0xdd,0x9f,0xdf,0xff,0xb5,0xe,0xd0,0xef, - 0x1,0x5b,0x17,0xe8,0xf3,0x81,0xad,0x13, - 0x74,0x7a,0xc1,0xb1,0xbc,0xb7,0x29,0xe3, - 0x10,0xf1,0x1f,0x79,0xa8,0xd,0x10,0xad, - 0xe1,0x1,0xa4,0x14,0xcb,0x25,0xfb,0xe2, - 0x21,0x38,0x9e,0xe,0xeb,0x7d,0x55,0x52, - 0x51,0x3c,0x30,0x1,0x63,0x21,0x2,0x91, - 0x24,0xc3,0x81,0xfa,0x6f,0x9c,0xe4,0x37, - 0xb8,0x2c,0x7e,0xb1,0xda,0xcd,0x49,0xa5, - 0x13,0x8c,0x52,0xc4,0x47,0xdc,0x66,0x76, - 0xb3,0x91,0xc9,0x54,0x75,0xe6,0xac,0x3e, - 0xe8,0x44,0xa7,0x75,0xe2,0x1d,0x33,0x35, - 0x2e,0xfa,0x9c,0x76,0xfb,0x7,0x74,0x83, - 0x54,0x1d,0x35,0x57,0xa,0xff,0x24,0x6e, - 0x6,0xa8,0x33,0xdf,0x37,0x9f,0xbe,0x67, - 0x2e,0xb4,0x39,0xc1,0x2e,0xee,0x4a,0x8c, - 0xe9,0x63,0xec,0xcd,0x39,0x4f,0xdd,0x56, - 0x37,0xf,0x4d,0xd0,0x13,0x5e,0x33,0x3d, - 0x93,0xd9,0xbf,0x3c,0x88,0xb8,0x28,0x4f, - 0x45,0xb9,0xfb,0x7a,0xbf,0xde,0xf2,0x30, - 0x5f,0x89,0xf8,0xf7,0x8e,0xfd,0xb3,0x7f, - 0x19,0x18,0x8c,0x9a,0xa6,0xbd,0xd1,0x15, - 0x14,0x37,0x63,0xcd,0xeb,0x4b,0xfa,0xde, - 0x95,0xa6,0xe1,0x77,0x65,0xad,0x2b,0x4e, - 0xa2,0x22,0x48,0xce,0xfb,0xd5,0xfa,0xd0, - 0x5e,0x81,0x50,0x15,0xe6,0xc7,0x56,0x27, - 0xcd,0x49,0x7c,0x18,0xe4,0x83,0x79,0xe, - 0x75,0x8d,0x98,0xd1,0xe0,0x2b,0xc5,0xec, - 0x83,0xe2,0x3c,0x3a,0x6e,0x7c,0x4a,0x94, - 0x57,0x5e,0xf4,0xe8,0xa0,0xb4,0x25,0xa, - 0xae,0x4a,0x33,0xdf,0x5,0x5d,0xe1,0xe5, - 0xb7,0x3,0x92,0x50,0x16,0x33,0x53,0x32, - 0x10,0xd1,0x46,0x60,0xa6,0xba,0x3a,0x1e, - 0xdd,0xd9,0x50,0x73,0x25,0xae,0x9c,0x2e, - 0xc5,0x99,0xf9,0x94,0x5d,0xc9,0x46,0xfb, - 0x74,0x3a,0xdc,0xf3,0xeb,0x87,0xbb,0xd5, - 0x88,0x5f,0x4,0xfc,0xb8,0x2b,0x4b,0x2e, - 0x24,0x69,0xc8,0x46,0x37,0x68,0xed,0xd3, - 0x8a,0x27,0x43,0x58,0xb8,0xee,0x2b,0xca, - 0x18,0xa3,0x4a,0x68,0xec,0xd6,0x51,0x0, - 0xb4,0xfb,0x86,0xbf,0xb0,0xd2,0x56,0x38, - 0xf9,0x6b,0x9c,0x44,0xda,0xc0,0x1d,0xc5, - 0x81,0xe1,0xa1,0x29,0x4d,0x85,0xf2,0x32, - 0xc6,0xc4,0xef,0x96,0xab,0x6a,0xa2,0xa3, - 0xaf,0x59,0xa3,0xd9,0x77,0xcb,0xbc,0x9c, - 0xeb,0x8,0x72,0xe4,0x60,0x98,0xe8,0x8, - 0x48,0xe6,0xf8,0xf5,0x1d,0x33,0xf2,0x85, - 0x8e,0xb5,0x46,0xd,0x7e,0x46,0xce,0x66, - 0xc8,0xfa,0x6e,0xb1,0x2a,0xd3,0x6a,0xe9, - 0x1c,0xed,0x78,0x3e,0xf0,0x23,0x1e,0x8d, - 0x64,0xa1,0x4d,0xff,0xd1,0x11,0xca,0x4c, - 0xa1,0xd9,0x90,0x95,0x55,0xb9,0x4b,0xe8, - 0x72,0x5e,0xde,0xea,0x78,0x70,0x1d,0x85, - 0x5e,0x2e,0x96,0x4b,0x1d,0xcf,0xaa,0x93, - 0xd0,0x65,0x5a,0x4e,0xca,0x69,0x3f,0xa1, - 0x65,0xa1,0x8d,0xd0,0x32,0xee,0x9a,0x29, - 0x32,0xd3,0xe9,0xbc,0x2c,0x9d,0xed,0x3c, - 0x2f,0x17,0x65,0xcf,0x76,0x5e,0x96,0xc9, - 0x72,0xde,0x43,0xe4,0x65,0x5a,0xce,0x96, - 0x7d,0xdb,0x59,0x14,0xaa,0x45,0xe6,0xf1, - 0xe4,0xec,0x7e,0xbd,0x9a,0xae,0x96,0xee, - 0x7e,0x5d,0xdd,0x56,0xab,0x9e,0xfd,0xba, - 0x5c,0x56,0x59,0xaf,0x7e,0xcd,0xba,0xdd, - 0x5d,0xdf,0x7e,0xcd,0xb,0xd5,0xf2,0xaa, - 0x30,0x79,0xa6,0xc8,0xab,0xd5,0x2a,0x5b, - 0x3a,0x9b,0x78,0x35,0xa9,0xe6,0xcb,0xac, - 0x97,0xc8,0xd5,0xac,0x5c,0x2c,0xee,0x7a, - 0x88,0x5c,0x2d,0xab,0x74,0x51,0xf5,0x13, - 0x59,0x16,0xaa,0x45,0x96,0xe1,0xff,0x2c, - 0x89,0x6f,0x99,0xad,0x16,0x2e,0x89,0x2b, - 0x66,0x16,0xcb,0x7e,0x8d,0x5c,0xae,0x96, - 0x93,0xe5,0xb4,0x8f,0xc4,0xf9,0x72,0xbe, - 0x2c,0xfa,0x49,0x2c,0xb,0xd5,0x12,0x8b, - 0x38,0x63,0xb6,0xc0,0x6d,0xb4,0x46,0x4a, - 0xe0,0x8a,0x4d,0xc7,0x7a,0xa,0x5c,0x25, - 0x55,0xda,0x4b,0xe0,0x6a,0x56,0xcd,0xfb, - 0xa,0xcc,0xb,0x6d,0x9b,0xf8,0xf0,0xd9, - 0x94,0xd7,0x3b,0xd7,0xfe,0x6e,0xb2,0xcc, - 0x92,0x6c,0xea,0x91,0x77,0x85,0x3d,0x1b, - 0x90,0x37,0x9b,0x67,0x8b,0xcc,0x33,0x50, - 0x1b,0x39,0x5b,0x79,0xb3,0x49,0x96,0x67, - 0x6e,0x2b,0xe6,0xf9,0xac,0xab,0x99,0x3a, - 0x51,0x16,0xaa,0xe5,0x3d,0x54,0xc7,0xfd, - 0x6e,0x7b,0xe4,0x53,0xc,0x1d,0xd3,0x87, - 0xad,0x72,0xc4,0x4e,0x82,0xbe,0xd6,0xdf, - 0x7c,0x97,0x31,0xfc,0xf8,0x14,0xf0,0xb4, - 0x7b,0x5e,0x3e,0xb5,0xbb,0x7c,0xed,0x2d, - 0xc1,0x79,0x3e,0xbe,0x93,0xa7,0x9,0x4d, - 0xf6,0xfc,0x98,0x7c,0xe7,0x12,0x88,0x22, - 0xe6,0xb3,0xb9,0xb3,0x88,0x4d,0x79,0x95, - 0x22,0xee,0xd8,0xb2,0xdc,0x55,0x44,0xfd, - 0x78,0x95,0x22,0xd2,0xf4,0xee,0xce,0x59, - 0xc6,0x4b,0x7d,0x9d,0x32,0x32,0x5f,0x19, - 0xbd,0xa,0x19,0xf3,0x8b,0xd2,0x23,0x19, - 0x86,0x87,0xb8,0x7e,0x2b,0xb7,0xa5,0x0, - 0xd,0x8c,0x3e,0x24,0xee,0xdb,0x81,0xeb, - 0xea,0xac,0x5e,0x66,0x2c,0x22,0x8a,0xc4, - 0xb8,0x42,0x1d,0x88,0xb1,0xc3,0x96,0xf1, - 0x66,0x25,0x78,0x93,0xd9,0xf5,0x8,0xd6, - 0x2,0x12,0x10,0x17,0xbe,0x8d,0x32,0x58, - 0xe7,0xb6,0xcb,0x98,0x4,0xb,0x99,0xd0, - 0xa5,0xf0,0xdb,0xc9,0xa2,0x14,0x51,0x2, - 0xbf,0xa6,0xe,0xaf,0x89,0xc3,0x68,0x15, - 0x9e,0xcb,0xcc,0x22,0x2f,0xbf,0x32,0xca, - 0xda,0xd0,0x88,0xee,0x45,0x44,0xa2,0xd1, - 0x5a,0x97,0xd7,0x89,0x1f,0x8c,0xc0,0xa3, - 0x66,0xb8,0x51,0x33,0xc8,0xa8,0x11,0x27, - 0x8b,0xbe,0x20,0xe,0xbe,0xd6,0xeb,0xfd, - 0x7d,0xab,0x90,0x17,0xe2,0xf2,0xb8,0xe, - 0x87,0x4c,0xc7,0x44,0x79,0x10,0x41,0x7d, - 0xcc,0x8f,0xe6,0xef,0xe4,0xcd,0x73,0xb1, - 0xbd,0x22,0x43,0xcc,0xc1,0x71,0x71,0x30, - 0x4e,0xf3,0xe3,0xa0,0x2a,0x8e,0x7c,0x22, - 0x37,0xda,0x3d,0x9f,0x86,0xed,0x1a,0xdf, - 0x4a,0xb,0x45,0x40,0x95,0xbf,0x32,0xb3, - 0x43,0x6d,0x0,0x4a,0x16,0x81,0xf,0x70, - 0x13,0xc9,0xc0,0x32,0x3c,0xd4,0xca,0x2f, - 0x8d,0x61,0xde,0xcb,0x40,0x26,0x4e,0x42, - 0x23,0xf6,0x91,0x8c,0x35,0x77,0xa8,0x58, - 0x9d,0xb7,0xf5,0xf9,0x17,0x2b,0x16,0x12, - 0x62,0x23,0x3,0x61,0x5d,0xa2,0x5a,0xe, - 0xf9,0x8f,0xdb,0xd9,0x62,0xbe,0xaa,0x1e, - 0x9a,0xc0,0x59,0x70,0x33,0x44,0x6e,0x83, - 0xa8,0x6e,0x2d,0xb6,0x7d,0xda,0x78,0xcd, - 0x43,0xf6,0xf9,0xc6,0xa8,0x3,0x8a,0xd0, - 0x33,0x2a,0x58,0xb1,0x22,0x4c,0xcf,0x97, - 0xa2,0x7e,0xae,0x2e,0x6d,0xff,0x6a,0x4c, - 0xa1,0xcd,0xc7,0xdb,0x9f,0xf5,0xe8,0x65, - 0xf5,0x24,0xc2,0x11,0x5e,0x70,0x0,0xb3, - 0x36,0xf6,0x95,0x91,0xaf,0x7b,0x16,0xad, - 0xdd,0x21,0x6e,0x84,0x46,0xcb,0x17,0x5b, - 0x67,0x2a,0xec,0xb7,0xb3,0x12,0x9e,0xb8, - 0x3a,0xe,0x73,0x54,0xe1,0xa5,0x46,0xfa, - 0xf3,0x48,0x7d,0x6f,0xe3,0xae,0x89,0xd1, - 0xa1,0xda,0x96,0xf7,0x28,0x87,0x8e,0x97, - 0x1,0x12,0x42,0xd,0xae,0x2a,0xaf,0xfa, - 0xcc,0xa8,0xfa,0xc2,0xd6,0xfe,0x47,0x64, - 0x4f,0x1d,0xa3,0xb6,0xe9,0x5f,0xdb,0xaa, - 0xa0,0x8d,0x34,0x14,0xaf,0xad,0xd,0xd9, - 0xd9,0xda,0x8a,0xcb,0x3c,0x8d,0x9a,0x53, - 0x6,0xdc,0xd3,0xbc,0x1f,0x7e,0xd7,0xd2, - 0xcd,0xde,0x42,0x46,0x6a,0xfa,0xcf,0xde, - 0x4f,0x7e,0xdf,0x16,0xea,0x33,0xfc,0x7b, - 0xcd,0x9e,0xe8,0xf6,0x32,0x36,0xad,0xe1, - 0x32,0x62,0xba,0x86,0xdf,0xcd,0xc8,0xd, - 0xbe,0x80,0xe3,0xf0,0xd6,0xd5,0xee,0xa, - 0xcc,0x47,0x25,0x7c,0x5f,0xa0,0x47,0x39, - 0xa4,0x4,0x91,0x25,0xfc,0xd7,0x38,0xfa, - 0x5f,0xe3,0xe8,0x5f,0xa5,0x95,0xfe,0x3e, - 0x16,0xc7,0xa7,0x43,0xbc,0xaf,0xbd,0x9c, - 0xe2,0x67,0xfb,0x89,0xb5,0xbc,0xea,0x38, - 0xb3,0x87,0x60,0xa5,0x9a,0xc4,0xcb,0x9, - 0xbc,0x9d,0x80,0x21,0x20,0xba,0xe6,0xf8, - 0x33,0x8f,0x8e,0x13,0x43,0x7,0x16,0x5f, - 0x7,0x15,0x16,0x1a,0xc7,0x1c,0x7b,0xb5, - 0xe8,0xf9,0xc1,0x24,0x25,0xa5,0xe,0x66, - 0x27,0x3,0x6c,0xea,0x68,0x6e,0x60,0xc9, - 0xd6,0x0,0x5e,0xc4,0xb2,0x4b,0x0,0x89, - 0x44,0x58,0x60,0xb3,0xc0,0xb8,0xc1,0xa, - 0x96,0xd3,0xc,0x55,0x13,0x35,0x52,0x39, - 0x7,0x2a,0xd7,0x38,0x95,0xd3,0x15,0xf1, - 0xcf,0x27,0x7e,0x93,0x2a,0xfc,0x55,0xe8, - 0xa2,0x7e,0x74,0xf6,0x82,0x94,0xea,0x4, - 0xa2,0x68,0x3a,0xfe,0x9b,0xd9,0x5,0x32, - 0xaa,0xb4,0x38,0xb1,0xdb,0x52,0x1a,0xa1, - 0xa5,0xcc,0xa9,0x43,0xe4,0x94,0x96,0x38, - 0xa5,0xab,0xe0,0x6f,0xfc,0x6f,0x5c,0xf8, - 0x6f,0x2e,0xbf,0x8e,0xe6,0x8b,0xd7,0xe1, - 0x4e,0xdb,0x9f,0x3,0xe3,0xa7,0xf3,0xc6, - 0xe,0x1d,0x8e,0xdc,0x71,0x5d,0xce,0xd0, - 0x9c,0x18,0x68,0x55,0xe0,0x38,0xde,0xb1, - 0x60,0xb0,0x3c,0x73,0x40,0xa7,0xb2,0xbe, - 0x65,0x93,0x40,0x71,0x90,0xcb,0x6d,0x18, - 0x7d,0x16,0x2d,0xce,0xc9,0x8d,0x16,0x7, - 0x23,0x22,0x92,0x6d,0x34,0x2f,0x15,0xf9, - 0x3a,0xda,0xbb,0x4d,0xf4,0x20,0x82,0x27, - 0x81,0x72,0xef,0x40,0x39,0x88,0x23,0x6b, - 0x26,0xd5,0x14,0x89,0xea,0x0,0xa3,0x41, - 0x66,0x6c,0xfa,0x7d,0x83,0x2d,0xb0,0xf5, - 0xa6,0x78,0xac,0xee,0x9f,0xf,0xf5,0xc7, - 0x77,0xfc,0x81,0x8c,0x7b,0xf1,0xfb,0x8f, - 0xc7,0x2f,0x8f,0x3f,0xbc,0x6c,0xea,0xe1, - 0xfb,0x6c,0xc9,0x7e,0x1c,0xb0,0x1f,0xb7, - 0xc7,0x9f,0x3e,0xf0,0xe7,0xd9,0xee,0x7f, - 0xfc,0xf1,0xeb,0xd7,0xaf,0xe3,0xaf,0xd9, - 0x78,0x77,0x78,0xfc,0x71,0x92,0x24,0x9, - 0x27,0xfe,0x30,0xf8,0xb2,0xae,0xbe,0xfe, - 0xf7,0xdd,0xcb,0x4f,0x1f,0x44,0x28,0xf9, - 0x19,0xfb,0xef,0xc3,0xfb,0xac,0x62,0xf9, - 0xf7,0xc5,0xe9,0x69,0xc0,0x2c,0xad,0xfe, - 0xe9,0x3,0x9f,0x94,0x7c,0x18,0xf0,0xa7, - 0x1c,0x3e,0x57,0x3f,0x7d,0x78,0x3f,0xc9, - 0xe4,0x9b,0x60,0xfa,0x93,0x78,0xea,0x66, - 0x59,0xec,0x7f,0xfa,0x20,0xaa,0x86,0x3e, - 0xff,0x3b,0xeb,0x15,0xe6,0x77,0xa1,0xf1, - 0x9f,0x3e,0x4c,0x3e,0xc,0xca,0x9f,0x3e, - 0xfc,0x71,0x32,0xc8,0xeb,0xd9,0x80,0xfd, - 0x3b,0x9a,0x7d,0xf8,0x51,0x16,0xcd,0x6b, - 0xc6,0x7e,0x7a,0x87,0xde,0xbd,0x39,0x54, - 0xfb,0xaa,0x38,0xf1,0xc7,0x81,0xe4,0x4f, - 0x30,0xad,0x7d,0xf4,0x41,0xbc,0x5e,0xa7, - 0xda,0x81,0x9f,0x3a,0xa8,0xe,0x90,0x4e, - 0xb6,0xc6,0x8c,0xcd,0x20,0xd2,0xc9,0xde, - 0xb3,0x6b,0xf8,0xcd,0x36,0xfe,0xde,0xb4, - 0x1f,0xd9,0x6d,0x42,0xaa,0xc3,0xc3,0xd3, - 0x73,0x4b,0x15,0xec,0x5d,0xee,0xe1,0x5d, - 0x7f,0x7f,0x4e,0xb2,0xff,0xf3,0xe6,0xb9, - 0x3e,0xad,0xf7,0xfc,0xb1,0x16,0xf4,0x59, - 0x3c,0x5,0xd4,0xbe,0xa,0xf4,0xd3,0xbb, - 0xf4,0x1d,0x1b,0x47,0xf0,0x14,0x4c,0xd9, - 0x9a,0xd5,0xe3,0xc1,0x32,0xd6,0xc,0x58, - 0xef,0x5a,0x43,0x61,0xf2,0x36,0x9c,0xfb, - 0x81,0xa3,0xcf,0xf6,0x34,0x54,0x3e,0xa0, - 0x4,0xe5,0x55,0x46,0x89,0xf8,0x98,0x3b, - 0xf6,0xaa,0x93,0x98,0x8f,0x23,0xe0,0xaf, - 0x62,0x36,0xd9,0x7d,0x1a,0xa8,0x4a,0x34, - 0x70,0x8,0xcf,0x6b,0xc,0xa8,0xbc,0xee, - 0x53,0x8e,0xa7,0x6a,0xf9,0xd9,0x7c,0xcf, - 0xa3,0x75,0x3b,0x29,0x55,0x86,0x18,0x7a, - 0xd,0x44,0x27,0x45,0xe3,0x38,0x67,0x3a, - 0x0,0x3f,0x8f,0xc4,0x43,0x9,0x30,0xbe, - 0x3d,0x3c,0xd8,0x3a,0x42,0xbb,0xb6,0x80, - 0x5e,0xd,0xd7,0xad,0x1b,0x4b,0xdb,0x82, - 0x55,0x3b,0xb0,0xf,0xd4,0x81,0xbf,0xd0, - 0x88,0x1a,0x35,0xc0,0x38,0xc6,0x14,0x15, - 0x59,0xd3,0x1e,0x51,0xd4,0xd1,0x45,0xfe, - 0x2f,0x37,0x8f,0xb7,0xe1,0x11,0x3a,0xf3, - 0x9e,0xf5,0x5c,0xed,0x2,0xd5,0x23,0x5f, - 0xd5,0x4b,0xb1,0x54,0x6f,0xa3,0xa0,0x4f, - 0xb6,0x6,0xe5,0xf6,0xbf,0xf8,0xc0,0xc, - 0xfb,0x97,0x8b,0x35,0xd6,0x51,0x6a,0x57, - 0x6f,0x2c,0x30,0x9a,0x9d,0x99,0x43,0x9c, - 0x9a,0x36,0xe9,0xef,0xd5,0xa9,0x33,0xe6, - 0x3f,0x78,0x34,0xe1,0x85,0xb0,0xe9,0x6d, - 0x75,0x3c,0x7e,0xbc,0x4b,0xde,0xdf,0x10, - 0xf4,0xdf,0x6a,0x20,0x82,0x65,0x88,0x9f, - 0xc9,0x71,0x42,0xbd,0xe1,0x83,0x8b,0x97, - 0x1f,0xdd,0x7c,0x2c,0x45,0x7e,0x63,0xe7, - 0x3c,0xe1,0xff,0x45,0x38,0x67,0xd6,0xad, - 0xdf,0xe8,0x99,0x33,0xe9,0x99,0xd9,0x64, - 0x20,0xa9,0xb3,0x41,0x56,0x53,0xae,0x39, - 0xa4,0x17,0xdd,0x57,0xbe,0xa1,0x52,0x46, - 0xd3,0x1,0xfb,0xef,0x76,0x70,0xab,0x94, - 0xb2,0x5c,0x1f,0x96,0x75,0x35,0x38,0x88, - 0xa9,0x85,0x54,0x8e,0x52,0x47,0xb8,0xf2, - 0x46,0x63,0xde,0xaf,0xb7,0x65,0xc5,0x7a, - 0x2e,0x1b,0xf6,0x8a,0x53,0xd5,0xad,0xc7, - 0x3c,0xfc,0x87,0xec,0x8,0x4f,0xb7,0x31, - 0x5d,0xa0,0xf1,0xc5,0xd4,0xb6,0xa5,0x1a, - 0xc,0xc4,0xcf,0xcd,0xb,0x81,0xb9,0x87, - 0xcb,0x5f,0x60,0x92,0xc0,0xc9,0x87,0x76, - 0xc3,0x69,0xe2,0x5f,0x6c,0xea,0x8b,0x55, - 0xca,0xf1,0xeb,0x9a,0x2f,0x18,0xf0,0x6b, - 0x6a,0xc0,0xd3,0xc8,0xf4,0x81,0xcb,0xed, - 0x4c,0x8c,0xc7,0xcf,0x46,0x13,0xb9,0xe4, - 0xf8,0x5d,0x3a,0x79,0xa6,0x3b,0x39,0x1f, - 0xfe,0xde,0x4f,0x6e,0xc1,0x1,0xf9,0x49, - 0xfe,0x7e,0x72,0xe7,0x9d,0x4d,0x37,0xe, - 0x8d,0xcb,0xd1,0xcc,0x94,0xd1,0xc0,0x3e, - 0x31,0xe6,0xbc,0x76,0xe6,0x37,0x6e,0x99, - 0x3a,0x95,0xed,0x9a,0xb3,0x3a,0xe8,0xb5, - 0xf3,0xf8,0x7d,0x5b,0x81,0x19,0x9c,0x74, - 0x58,0x2e,0x3b,0x71,0x56,0x9f,0xf0,0x4b, - 0xc6,0x82,0xc6,0x9e,0x75,0xfc,0x4e,0x12, - 0x46,0xc,0xa6,0xe2,0xc9,0x6,0x2a,0xf6, - 0x3e,0x8e,0xf7,0x2d,0xb7,0x78,0x16,0xa7, - 0xad,0x9a,0x6e,0x36,0x12,0x17,0xb,0x36, - 0x73,0x7a,0x3e,0x55,0xf,0xe2,0x90,0x7, - 0x7f,0x80,0x4e,0xcd,0x9f,0x92,0x1b,0xa, - 0xc,0x1,0x3c,0x9a,0x71,0xe3,0x7,0xfe, - 0x6d,0xd8,0x26,0xb4,0x63,0x84,0x48,0x89, - 0x1f,0x9c,0x66,0x7a,0xdc,0x10,0xef,0x87, - 0x5f,0xec,0x7,0x7,0xf0,0x5c,0x98,0x4f, - 0x51,0x7c,0x1b,0xdc,0x6f,0x5a,0xfc,0x81, - 0x8a,0xa8,0xe,0xdf,0x3e,0x3d,0x66,0xa5, - 0x81,0x67,0x82,0xd8,0x2c,0x94,0xdf,0x4b, - 0xe0,0x8f,0x31,0x5c,0xac,0x9,0x14,0x9f, - 0xa8,0xf2,0x79,0xf0,0x30,0x76,0x3e,0x85, - 0xcb,0xe0,0xf5,0x16,0x5f,0xae,0xcc,0x1f, - 0xbe,0xb9,0xc5,0xa4,0xac,0xe,0xed,0x2b, - 0x3f,0x98,0x8c,0x12,0x52,0xb5,0x12,0xd8, - 0xe9,0x82,0x5b,0x7c,0xf2,0x5,0x47,0xd7, - 0x43,0x14,0xc8,0xad,0xb7,0x90,0x99,0x1a, - 0x11,0xd1,0x16,0x22,0x3d,0x34,0x7e,0x4b, - 0x8,0xec,0x5b,0x16,0xe3,0xea,0x9a,0x6f, - 0xda,0x82,0xf0,0xb5,0x52,0x47,0x2c,0xcc, - 0xc3,0x4a,0xaf,0x35,0xec,0xd6,0x5c,0xcc, - 0xca,0xe9,0xaa,0xf2,0x72,0x38,0x3c,0x6f, - 0xb7,0xe2,0x68,0x23,0x2b,0x97,0x8d,0x42, - 0xb6,0x85,0xc3,0xe7,0xd,0xa1,0x2d,0xe3, - 0x5d,0x4f,0xa2,0x2b,0xe1,0xd7,0x4b,0x5c, - 0x68,0x17,0xec,0x5a,0x84,0x9,0x40,0xe3, - 0x72,0xf4,0xeb,0x7e,0x9d,0x98,0x33,0xff, - 0xf,0xd6,0x83,0xaf,0xbe,0x83,0xe6,0x6a, - 0x8,0x53,0x79,0x31,0xfd,0xd6,0xe0,0xd1, - 0xb1,0xcf,0x82,0xdc,0x7f,0x65,0xdd,0xd4, - 0x37,0xe1,0x27,0x9,0x5d,0x9e,0xc9,0xaa, - 0x58,0x51,0x2e,0xf2,0x45,0xe9,0xe2,0x61, - 0x79,0x1e,0x7f,0x7e,0xb1,0xcb,0xc4,0xb7, - 0xfb,0xac,0xe7,0x81,0xd,0x82,0x4f,0x8, - 0x75,0x18,0x92,0x89,0x6a,0x67,0x15,0xa2, - 0x30,0x19,0xc2,0x7d,0x8d,0x27,0xb3,0x72, - 0xb3,0xc,0x75,0xb6,0xd9,0x9a,0xf1,0xc8, - 0xd7,0x72,0xd5,0x33,0x57,0x3a,0x3f,0x4, - 0x26,0x52,0x80,0x42,0xb8,0xf,0x86,0x80, - 0xed,0x27,0xb4,0xaf,0xa9,0x1f,0xaa,0x52, - 0x2f,0x69,0x73,0x17,0xd,0xbb,0xad,0x9a, - 0xf5,0x30,0xcb,0xc2,0x46,0xd7,0xe4,0x33, - 0x53,0xba,0x59,0x93,0x21,0xbd,0xc3,0x5e, - 0xe8,0x76,0xb8,0x10,0xa,0xf0,0x66,0x70, - 0x1e,0xf0,0x84,0x6f,0xdd,0xfb,0x19,0xbc, - 0x21,0xaf,0x0,0xcc,0xcc,0xa,0xb0,0x81, - 0x6b,0xf7,0x75,0x7b,0x83,0xb6,0x70,0xf5, - 0x33,0x80,0xd6,0x2e,0xee,0x6c,0x12,0x16, - 0x51,0x4c,0x8f,0x86,0xe1,0x8a,0x7c,0xcb, - 0x3a,0x34,0xd3,0x86,0xe7,0xd3,0x8e,0x2f, - 0x12,0xde,0xce,0x59,0x19,0xd7,0xd5,0x6a, - 0xe8,0x6b,0x8b,0xbf,0x18,0xbb,0x4,0xb3, - 0xbc,0x35,0x92,0xfb,0x23,0x7f,0xe5,0xf6, - 0xe3,0xf8,0x36,0xbf,0x91,0x56,0xc4,0x86, - 0x8b,0xea,0x7f,0x7d,0x94,0x68,0x32,0xf8, - 0xf4,0x3f,0x3f,0x32,0x4f,0xc4,0x3f,0x45, - 0x34,0xd6,0x5f,0xe0,0x1e,0x46,0xb7,0x26, - 0xf3,0x65,0x95,0x2a,0xfb,0xd,0x85,0x31, - 0x5b,0xfd,0xca,0x45,0x8b,0x55,0xf1,0x48, - 0x3c,0x9f,0x4c,0x3c,0xe7,0xee,0x7b,0x7a, - 0x4a,0xec,0xf6,0x8b,0xc7,0xfd,0x8e,0xf7, - 0xc7,0xd3,0xa1,0x62,0xeb,0x6d,0x14,0xcf, - 0x4,0x70,0x36,0x7,0x7a,0x3b,0x49,0xf7, - 0x44,0xfb,0x41,0x79,0x19,0x79,0x28,0x45, - 0xf1,0x52,0xde,0x3f,0x80,0x87,0x7d,0x3d, - 0x25,0x69,0xb3,0x75,0x95,0xa7,0xd6,0x76, - 0xbf,0xf2,0x47,0x95,0x59,0x31,0x19,0x62, - 0x35,0x50,0xcb,0x57,0xb3,0x46,0x9a,0x7a, - 0x62,0x53,0x7b,0xf9,0x8d,0xd0,0x69,0x2f, - 0xa1,0x51,0xa8,0x42,0xb5,0xed,0xf0,0x2d, - 0xae,0x78,0x80,0xb7,0xbf,0x55,0x29,0x5f, - 0x9f,0x58,0xa1,0x23,0xf1,0xe,0x3d,0x33, - 0x2,0xd1,0x9c,0xce,0x43,0x91,0x9d,0x80, - 0x5b,0x2c,0x71,0xcd,0x3a,0xb3,0xd8,0x1d, - 0x30,0x3f,0x3a,0xbb,0x43,0x9b,0xaa,0xde, - 0xf2,0xb6,0x12,0x2d,0x8d,0xf6,0x3f,0xf3, - 0x3,0x59,0x1d,0x37,0x44,0x55,0xf9,0x47, - 0x77,0x55,0x9b,0x54,0xaa,0xaa,0x3c,0xd1, - 0x5d,0xd5,0x1e,0x67,0xd4,0xa2,0x95,0x64, - 0x54,0xcb,0x80,0x7a,0x2d,0xc9,0xc5,0x20, - 0x38,0x7e,0x2a,0x8e,0xfc,0x22,0xc7,0xba, - 0x2c,0x64,0x80,0x86,0x71,0x79,0xd8,0xed, - 0xd9,0xd4,0x9f,0xaf,0xe1,0x1f,0x1f,0xf9, - 0xeb,0x9f,0xa7,0xa7,0x51,0xfb,0x56,0xe6, - 0xc7,0xed,0xf,0xd9,0xcd,0x30,0xcc,0xc6, - 0x7a,0xf6,0x53,0x92,0x19,0xcc,0xcd,0xaf, - 0x9b,0x6a,0xfb,0x8c,0x82,0x3c,0x88,0xaa, - 0xb7,0xe7,0x65,0x71,0xe4,0x8,0x9c,0x88, - 0x64,0x33,0xea,0x13,0x21,0xd5,0x14,0x4b, - 0x65,0x32,0xa0,0xd4,0xf0,0xdb,0x8a,0x44, - 0x84,0xc3,0xa0,0x8a,0x92,0xdf,0x44,0xcd, - 0x59,0x71,0x3b,0x7e,0x32,0x0,0x7d,0x5b, - 0x55,0x55,0xc9,0x2d,0x5e,0x7d,0x5c,0x6f, - 0x29,0x52,0xfd,0xb5,0x21,0xbe,0x60,0xd4, - 0xb8,0x3d,0xca,0xcc,0x25,0xe2,0x1f,0x5d, - 0x2,0xa1,0xb4,0x57,0xa3,0xe,0xe8,0xe5, - 0x67,0x22,0xd4,0x4c,0xc4,0x35,0xba,0xf4, - 0x8e,0xfd,0x3a,0x7d,0xc5,0x2,0x3b,0x26, - 0xfd,0x82,0xb5,0x1e,0xa2,0xf3,0x7,0x54, - 0x38,0xfd,0x5c,0x21,0x75,0xbe,0x51,0xd6, - 0x2a,0xa5,0xd,0xd8,0x71,0x91,0x4e,0x7c, - 0x15,0xfb,0x71,0x93,0x7c,0x98,0x66,0xf9, - 0xf0,0x76,0x3a,0x1c,0xdf,0xdd,0xb8,0x6, - 0x52,0xd5,0xf3,0xfe,0x62,0xa8,0x6b,0x68, - 0xa5,0x28,0x79,0x87,0xe3,0xaf,0x6d,0x6f, - 0xad,0xca,0xc1,0xbd,0x23,0xbb,0x8f,0x4a, - 0xab,0xe,0x1d,0x48,0xc0,0xa7,0xc3,0x9a, - 0xe2,0x4d,0x4e,0xd8,0xf5,0x8a,0xef,0x6, - 0xc8,0x2c,0x9b,0x89,0x7a,0x5,0x12,0x1f, - 0xeb,0xbb,0xf9,0xe6,0xb0,0x5e,0xbb,0xf7, - 0xe,0x40,0xbd,0xf7,0x93,0x4c,0xd6,0x50, - 0x1d,0x96,0x1a,0x67,0x83,0xd9,0x78,0x9e, - 0xfd,0x3c,0x9e,0xf1,0x87,0xc3,0xb3,0xe5, - 0x68,0x3c,0x1d,0xa5,0xe3,0x64,0x3a,0x9e, - 0xce,0xd8,0xdf,0xd3,0x41,0x3a,0x4e,0x47, - 0xe3,0xdb,0x9a,0xfd,0x35,0xe0,0xbf,0x66, - 0x2c,0x39,0x1b,0xdf,0x2e,0xc7,0xb3,0xd1, - 0x78,0x96,0xb1,0x4f,0xec,0xef,0xc9,0x9c, - 0xfd,0x3d,0x19,0xcf,0xeb,0xd1,0x94,0xf1, - 0x98,0x71,0x16,0x6c,0xf9,0xca,0x72,0x9, - 0x56,0xec,0xdf,0x5f,0xaf,0x75,0xe,0xab, - 0xb9,0x8e,0x2b,0xf5,0x98,0xca,0xae,0x78, - 0xe3,0x3a,0x98,0x25,0xc9,0x35,0x75,0xa6, - 0x89,0xa9,0xaf,0x8e,0xe6,0xd7,0x93,0xab, - 0x60,0x27,0x20,0xcf,0x1b,0xa8,0xae,0xe0, - 0x3d,0x65,0x0,0xac,0x44,0x6c,0x5a,0xe3, - 0x92,0xc8,0x53,0x9b,0xb2,0xc4,0x21,0x99, - 0xd6,0xd4,0xfc,0xd2,0xad,0x3,0x36,0x8a, - 0x66,0x26,0xef,0x54,0xb3,0xb7,0x11,0xd0, - 0xd1,0xa2,0x80,0xfd,0xa8,0x99,0xa9,0xdb, - 0x7c,0x68,0x66,0xf2,0x84,0x57,0x73,0x6, - 0xec,0xa6,0x3d,0xf1,0xf5,0xcb,0xcd,0x30, - 0x2a,0x47,0x7b,0x3c,0x2c,0x5c,0x31,0x7f, - 0x69,0x5d,0x73,0xb7,0x25,0x1b,0x2d,0x33, - 0x55,0xc7,0x9a,0xfe,0xd3,0x9d,0xc5,0x1c, - 0xfe,0xe7,0x1c,0xee,0x7c,0x47,0x4b,0x87, - 0xf2,0x2f,0x65,0x68,0x13,0x1b,0x55,0xc2, - 0xe7,0x4d,0x87,0xdd,0x7,0x38,0xd3,0x3e, - 0x3c,0xe3,0x1b,0xea,0xcd,0xd7,0x1a,0xde, - 0x4c,0xac,0x3a,0xe4,0x68,0x1,0xaa,0x1d, - 0x1c,0x2d,0x28,0xb6,0x1a,0xb,0x8f,0x64, - 0xef,0x39,0xd2,0x15,0x2e,0xca,0xe7,0x2b, - 0xac,0x82,0xb4,0x42,0xaf,0xa1,0x3b,0xea, - 0x58,0x4b,0x54,0x2d,0x88,0x13,0x2e,0x3e, - 0x69,0xb9,0xcd,0xdb,0xac,0xcc,0xc9,0x17, - 0x9a,0x40,0xcb,0xa3,0x30,0x68,0xf,0xc1, - 0x31,0xcf,0xb2,0x69,0x42,0xae,0xc4,0xc9, - 0xf5,0x3e,0x96,0x1e,0xf9,0x21,0x3d,0x5d, - 0x4e,0x63,0xea,0x4b,0xec,0xba,0xc,0xba, - 0x58,0x58,0xa0,0xee,0xd1,0xb9,0x8,0x23, - 0x45,0x3b,0x33,0x57,0x5f,0x85,0x94,0xcb, - 0x2c,0x9f,0xe6,0xaf,0xe6,0x6a,0xea,0xaf, - 0x79,0x1d,0x32,0x49,0x86,0x79,0x36,0x9c, - 0xdd,0xf9,0xd7,0x21,0x4a,0xa0,0xbf,0x58, - 0x4a,0x1b,0x92,0xa9,0xae,0xf5,0x88,0x87, - 0x4d,0x88,0x32,0x72,0x5d,0xa2,0xc8,0xfd, - 0x93,0x52,0x45,0x64,0xc,0x97,0xb2,0xf1, - 0xfe,0x1a,0xd6,0x26,0xe9,0x84,0xfd,0xf7, - 0x61,0xa0,0x66,0xb,0xfc,0x47,0xb9,0xb3, - 0x27,0x7f,0x76,0xcc,0x4c,0x64,0xf5,0xf1, - 0x79,0xa2,0x25,0x63,0x38,0xfb,0x30,0x58, - 0x9e,0xc5,0x5f,0x87,0x9f,0x3e,0x30,0xb7, - 0xae,0xfd,0xaf,0x98,0x7,0xb8,0xe6,0x2b, - 0x7c,0x3a,0x90,0x8f,0x6f,0x99,0x8b,0x9f, - 0x3d,0x8d,0xa7,0x3f,0xb3,0x39,0xca,0x38, - 0x6f,0x3c,0xb7,0xcd,0xfc,0x76,0x3c,0x11, - 0xec,0xc7,0x33,0x70,0x7a,0x49,0x55,0xa8, - 0xa9,0xa3,0xa8,0xf1,0xdf,0xe0,0x5a,0x47, - 0xf5,0x96,0x98,0xd5,0xe,0x22,0xa5,0xbb, - 0x97,0xdf,0xa9,0xb5,0xd6,0x18,0xbd,0xde, - 0xd1,0x3d,0xde,0xb9,0xe2,0xd1,0xbd,0xfd, - 0x77,0x5f,0xf3,0x78,0x6d,0x53,0x8d,0xd5, - 0x3e,0xd3,0x74,0x31,0xec,0xb4,0xf2,0x71, - 0xe4,0x89,0x5c,0xfb,0x44,0x95,0xd8,0x3d, - 0xff,0x7f,0xad,0x7f,0xbe,0xf5,0xfa,0xe7, - 0x3f,0xe9,0x90,0xfa,0xd7,0xb2,0x9e,0x8a, - 0x18,0x43,0xd,0xb,0xb9,0xd6,0x10,0x4a, - 0xad,0xb,0xfc,0x93,0x4,0xb0,0xe,0x88, - 0x18,0x8d,0x68,0xd6,0xf1,0x2b,0x2b,0x23, - 0x3,0x15,0x3d,0x22,0xa2,0xb8,0xc8,0xd5, - 0x95,0xa9,0xdc,0xeb,0xe8,0xb1,0xcf,0xa, - 0xcb,0x99,0xf5,0xe2,0x93,0xda,0xb5,0xc6, - 0xb2,0xa6,0xf2,0x1d,0x57,0x59,0x4d,0x87, - 0xf0,0xad,0x58,0x5c,0xbd,0xc6,0xbd,0x5a, - 0x89,0xcf,0x61,0x78,0x3f,0x17,0xc2,0x1c, - 0x98,0x9a,0x44,0xd4,0xbe,0xf3,0x8a,0xab, - 0x6b,0x3e,0xd2,0x8c,0xc1,0xaa,0x8b,0x43, - 0xea,0xe4,0x79,0xf5,0xb7,0x22,0xda,0xe2, - 0x4b,0x59,0x2d,0x77,0x87,0xa2,0x3d,0x27, - 0x68,0xdc,0x4c,0xdc,0xac,0xcb,0xb2,0xae, - 0xcc,0x63,0x7a,0xfa,0x80,0xc5,0xf3,0x91, - 0x1f,0x0,0x91,0xf5,0x6f,0x4f,0x8a,0x5b, - 0x5f,0xad,0xf,0x31,0x61,0x56,0xe8,0x43, - 0x62,0x71,0x58,0x7f,0xe8,0x7e,0xf4,0x5f, - 0x71,0xb0,0x1e,0xde,0xda,0xf6,0xd9,0x33, - 0x7e,0x50,0x42,0x84,0xd9,0xc1,0xf1,0xc, - 0xe1,0xe5,0x2,0xd1,0x6f,0xda,0x9b,0x5, - 0xe6,0x19,0xfc,0x8e,0x97,0x13,0x19,0x87, - 0x71,0x1b,0x19,0x90,0xf3,0x6b,0x7e,0x5b, - 0xad,0xab,0xba,0x3c,0x56,0xed,0x35,0xa8, - 0x81,0xf3,0xd2,0x2,0xba,0xa8,0xc0,0xab, - 0xaa,0xc3,0xe3,0xfb,0x56,0xd9,0xfe,0xdb, - 0x8e,0x80,0xb,0xd6,0x88,0x83,0xd7,0x22, - 0xaf,0xca,0xb9,0xc9,0xab,0xc8,0x6f,0x97, - 0x5,0xad,0x3c,0xcd,0x7c,0x88,0x4a,0x42, - 0xb1,0x24,0x3b,0x97,0xe4,0xd7,0xfd,0xf4, - 0x6e,0x98,0x66,0x13,0xa9,0x7b,0xa5,0x7a, - 0x55,0x2b,0x79,0x8,0x97,0xa8,0x96,0x4c, - 0x56,0xe,0xd0,0x5d,0xed,0xb1,0x64,0x80, - 0x45,0xd1,0xdf,0xf8,0xb9,0xad,0x4f,0x88, - 0xda,0xc0,0xe3,0x3,0xe2,0x6a,0xc9,0xc, - 0x71,0xb3,0x45,0x15,0x10,0x41,0xf,0x8c, - 0x7e,0x41,0x20,0x15,0x16,0x87,0x48,0xb9, - 0xc7,0x29,0x41,0xd1,0x62,0xdc,0x39,0xd5, - 0x2c,0xd,0x3b,0x68,0x19,0x4d,0x25,0x9a, - 0xb3,0xc6,0x6f,0xeb,0xdd,0xed,0x7b,0xa, - 0x5e,0x3e,0x2a,0xac,0x27,0xe6,0xa3,0x63, - 0xe3,0x22,0x3e,0x31,0x76,0x92,0x2f,0x67, - 0xd9,0xcc,0x6c,0xce,0x7c,0x96,0x57,0xb3, - 0xa9,0xc3,0x4e,0x1a,0xf6,0x43,0xa3,0xb4, - 0x8,0x5b,0xf1,0x94,0x16,0x1a,0xa7,0x12, - 0xd6,0x2a,0xb7,0xc3,0x74,0x9a,0xfb,0x8c, - 0xc5,0xa8,0x1b,0xd1,0xcb,0x5c,0xb5,0x47, - 0x26,0xd3,0xca,0x64,0x1b,0x4d,0x9b,0xa3, - 0x93,0xd9,0x34,0x42,0x22,0xc9,0xd3,0xfc, - 0x36,0xaf,0x82,0xc2,0x4,0xc,0x87,0xa4, - 0x33,0x5,0x23,0xd3,0x9c,0xe6,0xe3,0x14, - 0x32,0xc6,0x80,0xc8,0xb6,0x2,0x1c,0x91, - 0xd,0xb5,0x75,0x89,0xb3,0xa2,0x70,0xef, - 0x57,0xf,0x74,0x78,0xb9,0x34,0x90,0x13, - 0x5,0x2,0x1,0x2e,0x31,0x16,0x94,0xe6, - 0xf3,0x6c,0x6a,0x8e,0xff,0xe9,0x74,0xb6, - 0x9c,0x66,0x2e,0xb,0x92,0xcc,0x87,0xa8, - 0xa4,0x8,0xeb,0xf1,0x94,0xe4,0xb7,0x9e, - 0x19,0x6b,0x90,0x5c,0x7a,0x7a,0x9f,0xf1, - 0xc0,0x6a,0x51,0xfd,0x8c,0xa8,0x36,0x36, - 0x1b,0x25,0xa,0x61,0x34,0x8a,0xba,0x93, - 0xc9,0x34,0x92,0x21,0x71,0xb3,0x59,0x9e, - 0xad,0x2,0x22,0x84,0xc,0xc6,0xa6,0xc2, - 0xe2,0x10,0x29,0x6e,0x53,0xa1,0x45,0x8b, - 0x31,0x14,0xaa,0x59,0x1a,0x76,0xd8,0x4a, - 0x54,0x25,0xe2,0x6c,0x24,0xd8,0xbb,0xc5, - 0x8b,0x2e,0xf0,0xdd,0x8,0xc2,0x59,0x2d, - 0x8b,0x55,0x62,0x39,0x2b,0xfe,0xb1,0x65, - 0x81,0xad,0x83,0x66,0x94,0xa5,0xe5,0x64, - 0x35,0x31,0x18,0x4d,0xf2,0xe5,0x6a,0x35, - 0x71,0x58,0x7,0xe7,0x3c,0x6c,0xcb,0x40, - 0x76,0xd1,0xb9,0x8c,0x80,0x57,0x49,0x87, - 0xe9,0x9c,0xb9,0xfa,0x64,0xea,0xb3,0x8b, - 0xb6,0x42,0x44,0x5f,0xc2,0xb5,0x45,0xe6, - 0x20,0xaa,0x6f,0xdb,0x82,0xa0,0x73,0x18, - 0x82,0x43,0xbe,0xb2,0xcc,0x57,0x59,0x50, - 0x87,0x66,0x9d,0x3,0x56,0x60,0x92,0x80, - 0xfa,0x9b,0x9f,0x9d,0x9d,0x9f,0x92,0x25, - 0xca,0x45,0x10,0x8a,0x97,0xbc,0x50,0xb7, - 0x17,0x65,0x9b,0x7d,0xbe,0x67,0x87,0xd5, - 0xaf,0xfa,0x78,0xb9,0xac,0x56,0xcb,0x34, - 0x31,0x47,0x58,0xf9,0x11,0x71,0x89,0xe9, - 0xf9,0x2c,0x5b,0x31,0x59,0xda,0xbc,0xe6, - 0x93,0xc4,0xd1,0xf3,0x15,0xf3,0x21,0x2a, - 0x29,0xa2,0xff,0x7b,0x4a,0xa,0xec,0x0, - 0xa6,0xf3,0x61,0x3a,0x9b,0xe,0x67,0xbe, - 0xee,0x8f,0x6a,0x45,0xf4,0x23,0xaa,0xd6, - 0xc8,0xe,0xb4,0x24,0xb6,0x29,0x68,0xea, - 0x4e,0xd6,0xc0,0x4,0x2b,0xb3,0xbb,0xa0, - 0x5e,0x9,0x11,0x2,0x6,0x41,0x50,0x61, - 0x71,0x88,0x14,0xa7,0x65,0x38,0x44,0x8b, - 0xda,0x4f,0xb4,0x5b,0xa5,0xe1,0x86,0xcc, - 0x43,0xd7,0x21,0xce,0x42,0x82,0x7d,0x5b, - 0x3d,0x2,0xe5,0x75,0x2d,0xcd,0xbe,0x32, - 0xb5,0xcb,0xdb,0x32,0x89,0x99,0x37,0x2d, - 0x16,0x93,0x32,0x5b,0x98,0x2f,0x71,0x25, - 0x93,0x22,0x9b,0x3b,0xec,0x43,0xf2,0x1e, - 0xc2,0x72,0x22,0x66,0x4d,0x9e,0x72,0x42, - 0xfb,0xe3,0xf9,0xf0,0x36,0x1b,0xde,0xcd, - 0x7d,0xd6,0x1,0xeb,0x44,0xf4,0x29,0xbb, - 0xca,0xc8,0x34,0x94,0x14,0xb6,0x65,0x28, - 0xda,0x4e,0xf3,0xa5,0x46,0x26,0x28,0x68, - 0x91,0x4f,0x6e,0xb3,0xa9,0xbf,0xf6,0x1, - 0xbb,0xb0,0x89,0x90,0x24,0x76,0x82,0xd3, - 0x28,0x68,0xa9,0xe2,0xf6,0xd8,0xad,0xb6, - 0xd0,0xcc,0x90,0x49,0xa8,0xa,0xc4,0xcd, - 0x93,0x82,0x9d,0x59,0x3e,0x12,0xe6,0xb7, - 0x2a,0xf9,0x64,0x98,0x61,0x55,0xe2,0x23, - 0xe0,0x11,0xe5,0x2f,0x58,0x96,0x95,0xd9, - 0x4f,0xe5,0x47,0x87,0x3d,0x8,0xd6,0x43, - 0x50,0x4a,0x8c,0xaf,0x70,0x97,0x12,0xf2, - 0x15,0xe9,0x70,0x92,0x32,0x9f,0x9d,0x7a, - 0xb7,0xab,0x40,0x9d,0x88,0xae,0x64,0xd6, - 0x18,0x19,0x83,0x94,0xc1,0xb6,0x5,0x49, - 0xd9,0xcd,0x47,0xc4,0xe9,0xd2,0xaa,0x78, - 0xc0,0x12,0x2c,0x1a,0x28,0x84,0xf5,0xdd, - 0x69,0x6,0xa4,0x40,0x71,0x9e,0x81,0x68, - 0x3,0xc5,0xd,0x99,0x81,0x2c,0x3f,0xd2, - 0x2f,0x84,0x7a,0xb0,0x78,0x39,0xce,0x6b, - 0x48,0x3a,0x36,0x2c,0x9e,0xa0,0x82,0x9d, - 0x6a,0xce,0x22,0x6a,0x2d,0xbd,0x4c,0x57, - 0x13,0x6b,0xc9,0x57,0xa4,0xd5,0x24,0x75, - 0xfa,0x84,0xc3,0xe7,0x61,0x5b,0x46,0xcc, - 0x2a,0xda,0x5d,0x46,0x60,0x15,0x3d,0x1b, - 0xce,0x93,0xe1,0x3c,0xf3,0xbb,0x3,0x5d, - 0x1d,0x72,0x20,0x85,0x75,0x35,0x1c,0xc1, - 0xe1,0x33,0xe9,0x6,0x18,0x5d,0xb7,0x45, - 0xb3,0x16,0x4,0xaf,0xfd,0xb8,0xd0,0xbe, - 0x3a,0x7,0x5d,0x0,0x26,0x1,0xf5,0x37, - 0x3f,0x7b,0x6,0x7f,0x5b,0x96,0xa8,0x55, - 0xb2,0xa5,0x76,0xc9,0xc9,0x18,0xf7,0xf, - 0x9f,0x23,0x47,0xfd,0x60,0x67,0x55,0xd0, - 0x89,0x89,0x59,0x4,0xf7,0x6f,0x8d,0x7c, - 0x51,0x28,0x45,0x88,0xa7,0xd5,0xdf,0x8d, - 0x42,0x86,0x64,0xc9,0x51,0x9b,0x74,0x2d, - 0xf0,0xe3,0xee,0xce,0x64,0x69,0x44,0xff, - 0x88,0xa9,0x15,0xea,0xef,0x66,0x9a,0xd1, - 0x2f,0x44,0xb7,0xa1,0x65,0x53,0x1,0x4a, - 0xae,0xa1,0x56,0x8f,0xa4,0x1,0x7b,0xf0, - 0x50,0xd3,0x52,0xfb,0x28,0x28,0xd9,0x3d, - 0xf4,0xc8,0xc0,0xba,0x37,0xb2,0x55,0x3a, - 0xb2,0x23,0xb3,0x2c,0xcb,0x85,0x58,0x91, - 0x24,0x89,0x10,0x14,0x90,0x91,0x5,0x6a, - 0x4,0x37,0x70,0xad,0x9c,0x31,0x86,0x14, - 0xe4,0xea,0x34,0x24,0x3,0x10,0xb0,0x4b, - 0x8f,0xd1,0x73,0x72,0xcb,0x14,0xcd,0x56, - 0x6d,0x93,0x3c,0xc6,0x9a,0xc2,0x28,0x45, - 0x6c,0xe5,0x48,0x9b,0x72,0x6e,0xde,0x13, - 0x56,0x65,0x42,0x1,0x57,0xd1,0xb2,0x57, - 0xe6,0x48,0xcb,0x22,0xe9,0x5d,0xf2,0xfb, - 0x69,0x62,0xed,0x8b,0x86,0x45,0x7a,0xb4, - 0x3c,0x51,0x5,0xd2,0xc8,0xdc,0xd8,0x87, - 0x56,0x74,0xbc,0x99,0x61,0xd4,0x23,0xb8, - 0x3,0x6c,0xe4,0x8b,0x9a,0x9b,0x85,0x78, - 0xba,0x4d,0xc,0x2,0x7,0x66,0xc9,0xdd, - 0x2e,0xb0,0x44,0x18,0x57,0x0,0xc5,0x88, - 0xa9,0x14,0x6d,0x56,0xf4,0x46,0x3f,0x65, - 0x54,0x8,0x32,0xb8,0x8a,0x56,0x3d,0x92, - 0xc6,0x1a,0x94,0x4d,0x4d,0x4b,0xed,0xa3, - 0x88,0x36,0x25,0x2,0x34,0xe9,0xdc,0xc6, - 0x56,0xe1,0xb4,0x11,0x39,0xa0,0x11,0xad, - 0xd8,0x68,0x13,0x42,0xa0,0x48,0x68,0x37, - 0x19,0x66,0x8a,0x59,0xdc,0x7,0x19,0x3a, - 0x8d,0xa7,0x5,0x18,0x50,0x99,0x71,0xde, - 0x7f,0x92,0xb0,0xc5,0xe2,0x34,0x89,0xb1, - 0x1b,0x2f,0xca,0xe1,0xaf,0xc,0x69,0x2e, - 0x14,0x34,0x40,0xd8,0xa,0x80,0x17,0xae, - 0xa2,0x41,0x97,0x68,0x91,0x56,0x62,0x92, - 0x12,0x62,0x3a,0x93,0x63,0x8d,0xc3,0x42, - 0x54,0xba,0x37,0x23,0x2e,0x97,0xb4,0xb, - 0x1a,0x3b,0x51,0x4a,0x8c,0x36,0xa,0x3, - 0x35,0x9,0xee,0x21,0x1b,0xf9,0x22,0x71, - 0x12,0x3f,0x4f,0xa7,0x69,0x20,0xe4,0xc1, - 0x2c,0x39,0x6a,0xcc,0x61,0x83,0xce,0x5d, - 0x36,0x9c,0xc7,0xd8,0x47,0x8,0x6,0x89, - 0xa9,0x14,0x69,0x28,0xe,0xa4,0x80,0xb0, - 0x15,0x8c,0x39,0x5c,0x45,0xab,0x1e,0x49, - 0x23,0x2d,0x86,0xa0,0xa6,0xa5,0xf6,0x51, - 0xc4,0x9a,0xe,0x85,0xba,0x74,0x6e,0x63, - 0xab,0x70,0xd2,0x7e,0x5c,0xe0,0x8a,0x56, - 0x6c,0xb4,0x9,0x61,0x58,0x25,0xb8,0xe7, - 0x8c,0xb3,0xc5,0x4c,0xcc,0x82,0x2c,0x9d, - 0x6,0x4,0xd1,0x9,0xa3,0xdc,0x6e,0xe7, - 0xde,0xc3,0xe6,0x13,0xc0,0x49,0xc2,0x35, - 0x22,0x6d,0x87,0x6,0x14,0x8,0xd3,0x41, - 0xc0,0xc4,0x55,0xd4,0xe9,0x16,0x32,0xd2, - 0x70,0x6c,0x62,0x52,0x60,0xf,0x41,0xac, - 0xd5,0x10,0xa8,0x4c,0xe7,0x96,0x35,0x8b, - 0x26,0x6d,0xc6,0x81,0xbe,0x68,0x8d,0x46, - 0x9b,0xc,0xc2,0x5d,0x82,0xfb,0xd3,0x28, - 0x57,0x94,0xc7,0x9,0x71,0x74,0x1a,0xc, - 0xc0,0x2f,0x70,0xa9,0x31,0x4a,0x9d,0xde, - 0x32,0x27,0x7e,0x37,0x9c,0xe4,0x51,0xf3, - 0x31,0x3f,0x90,0x12,0xaa,0x10,0x69,0x2d, - 0x24,0xee,0x40,0x18,0xb,0x44,0x2f,0xae, - 0xa2,0x49,0xa7,0x7c,0x91,0xa6,0x62,0xd1, - 0x52,0xb2,0xba,0xd3,0x63,0xed,0xc4,0x46, - 0x6d,0x7a,0xb4,0xa8,0x51,0x34,0x69,0x27, - 0x34,0x3c,0xa3,0x95,0xd9,0xc1,0xb3,0xb4, - 0xc0,0x4c,0xf4,0xae,0x76,0x2c,0x14,0x13, - 0x64,0xe8,0xf1,0x2a,0x1a,0xe6,0x40,0x65, - 0x46,0x28,0x34,0xcb,0x86,0xd9,0x7c,0x38, - 0x4d,0xe3,0x1c,0x8a,0x7,0x69,0xf1,0x57, - 0xc5,0xe1,0x4a,0x6c,0x78,0x82,0x74,0x24, - 0xd,0xc4,0x71,0x15,0xfd,0xb9,0x44,0x8b, - 0x76,0x22,0x98,0x94,0x10,0xd3,0x99,0x1c, - 0xef,0x3e,0xc,0x54,0xa7,0x6b,0x23,0xe2, - 0x52,0x1d,0x9e,0x83,0xc0,0x6f,0x22,0xde, - 0x66,0xd6,0x10,0xe8,0xf6,0xf3,0xc5,0xbc, - 0x15,0x85,0x77,0xac,0xcd,0x3b,0x4f,0x8c, - 0x5b,0x75,0xe0,0x45,0xb7,0x1c,0xc,0xd7, - 0x1,0xee,0x8a,0xf0,0x54,0xb,0x61,0xdd, - 0x7e,0x76,0x6c,0xdb,0xc9,0x3c,0x46,0x54, - 0x4f,0x91,0xe7,0xf1,0xd,0x1,0x38,0x5b, - 0x9e,0x4d,0xf8,0x4d,0x71,0x32,0x74,0xf3, - 0xa6,0x48,0x99,0xab,0xa2,0xac,0x2e,0x64, - 0xac,0xed,0xfc,0x38,0xe0,0xea,0x29,0xe, - 0xf1,0xd1,0xb4,0xd,0x5e,0x3a,0x7c,0x36, - 0xfb,0x2c,0x63,0x24,0xf2,0xe,0x76,0xd3, - 0x44,0xe3,0x65,0xcb,0x76,0xa6,0xb6,0xba, - 0xd8,0x1f,0x51,0x32,0x8c,0xed,0xd1,0x50, - 0xf0,0x25,0xa8,0xba,0xe0,0x96,0x3c,0xf0, - 0x56,0x5a,0xd5,0xac,0xef,0x3d,0xad,0xcb, - 0xb2,0xda,0xc2,0xfb,0x5d,0x92,0x66,0x30, - 0xce,0xd4,0x25,0xac,0xe8,0xba,0x83,0x72, - 0x6c,0x9,0xda,0xc4,0xa6,0xc6,0xa3,0xa7, - 0xdd,0x61,0xfd,0x2b,0x7f,0x5c,0xaf,0xbe, - 0xe8,0x67,0xec,0xe1,0xf3,0xb5,0x80,0x89, - 0x48,0x7e,0x53,0x95,0xc8,0x52,0xed,0x6a, - 0x6a,0x7b,0x1e,0x8a,0x9f,0xaa,0x6d,0x29, - 0x7f,0x10,0xf,0xc1,0xca,0x1f,0xa9,0xb8, - 0xc5,0xaf,0x16,0xbe,0x6c,0x7,0xbc,0xb5, - 0x68,0xee,0xef,0x8b,0x15,0x7f,0xfd,0xc4, - 0xf7,0x9c,0x8e,0xbc,0x51,0xca,0xd6,0x5f, - 0xf6,0xb3,0x87,0xea,0x2b,0xbf,0x38,0xc9, - 0x6c,0xf8,0xfe,0xdd,0x3b,0x10,0x1b,0x93, - 0xf5,0x77,0xd6,0x89,0xc5,0x5,0xc0,0xa6, - 0xcb,0xca,0x97,0x4,0x9a,0xef,0xd4,0x1b, - 0xec,0xcd,0x3b,0xef,0xea,0x77,0x59,0x3a, - 0x99,0xc5,0x96,0xa6,0xda,0xec,0x59,0x87, - 0x54,0x32,0xc1,0xea,0x27,0xaf,0x38,0x56, - 0x28,0x11,0x9e,0xa6,0x9,0xf7,0xc3,0x67, - 0x48,0x38,0x30,0x4d,0x13,0x77,0x39,0x4d, - 0xe0,0x63,0x3c,0x63,0xf4,0x42,0x3d,0xab, - 0xb2,0x71,0x89,0xd1,0x79,0x7d,0x53,0x3c, - 0x46,0x59,0xaf,0x8f,0x8c,0xf8,0x74,0xae, - 0x2b,0xc7,0x95,0x4a,0xcb,0x1f,0xf1,0xe7, - 0x8a,0xda,0x8,0xe5,0x2f,0xfe,0xb7,0x20, - 0xd3,0xdc,0x15,0xdb,0x6,0x29,0xe2,0xcf, - 0x3c,0xde,0xc0,0x68,0x71,0x1c,0xed,0x77, - 0xfb,0x7d,0x75,0xf8,0xe5,0xd2,0x44,0xe9, - 0x51,0xaf,0x4,0xa0,0x88,0x3b,0x14,0x7, - 0xf9,0x40,0xf1,0x65,0x24,0x99,0x28,0xad, - 0x8a,0x6f,0x24,0xa1,0x55,0xe0,0xa1,0x35, - 0x36,0xb2,0xa9,0xf8,0x63,0xd9,0x6,0x77, - 0xf6,0x85,0x20,0x72,0x70,0x56,0xef,0x1d, - 0xf0,0x2,0x1a,0x93,0x6d,0x5b,0x34,0x9f, - 0xcf,0xf6,0x2f,0xcc,0x48,0x8d,0x9a,0x6e, - 0x3a,0x48,0xb5,0xe9,0x2b,0x18,0xcb,0x19, - 0x25,0x9b,0xa4,0x8b,0x10,0x8f,0x90,0x6f, - 0x3e,0xbb,0x25,0xe4,0xdb,0x94,0xf1,0xf2, - 0x69,0xda,0xee,0xf2,0xb1,0x9c,0x51,0xf2, - 0x49,0xba,0x7e,0xf2,0xdd,0xdd,0x4d,0x8, - 0xf9,0xea,0xc7,0x78,0xf9,0x34,0x6d,0x77, - 0xf9,0x58,0xce,0x28,0xf9,0x24,0x5d,0x3f, - 0xf9,0xd2,0x49,0x92,0x10,0x2,0xbe,0xd4, - 0xf1,0x2,0x6a,0xda,0xee,0x2,0xb2,0x9c, - 0x51,0x2,0x4a,0xba,0x9e,0x2,0x4e,0x69, - 0x1,0x3b,0x49,0xf8,0x6,0x11,0xa3,0x65, - 0x8c,0x17,0x52,0xb9,0xe8,0x41,0xc4,0x48, - 0x2b,0x6a,0xa6,0x5c,0x9e,0x19,0x78,0x2d, - 0x71,0x3d,0x77,0x6c,0xb1,0xff,0xf6,0xbe, - 0x3c,0xe9,0xe1,0xc2,0x6d,0xff,0x1f,0xf4, - 0xe5,0x94,0x54,0x21,0x9f,0xce,0x1a,0x25, - 0x46,0xd3,0xc9,0x83,0xd9,0x17,0x9c,0xfa, - 0x96,0xd5,0x84,0xda,0xc6,0x65,0xfc,0x96, - 0x53,0x27,0x4a,0xbf,0xba,0xcb,0xb9,0xd4, - 0x4d,0xe5,0x31,0x54,0xef,0x11,0xab,0x9b, - 0xbe,0xb1,0x2e,0xc,0x19,0x55,0xe,0x61, - 0x9a,0x5d,0xda,0xa8,0x9d,0x7f,0x88,0xd6, - 0xa2,0xda,0x48,0xf5,0x43,0xd8,0x48,0x66, - 0x31,0xdf,0xa6,0x99,0xba,0x94,0x25,0x97, - 0x3e,0x3e,0xfa,0x45,0xb5,0xda,0x1d,0x62, - 0x5e,0xb3,0xfc,0x46,0x9d,0xc8,0xb6,0x51, - 0x6f,0x6f,0xf2,0xa,0x13,0xea,0x38,0x1, - 0x1d,0xd0,0x7d,0x47,0x50,0x96,0xeb,0x2f, - 0xfc,0x25,0xaf,0x76,0xe5,0xa8,0x66,0xdc, - 0x7a,0x2,0x6e,0x2e,0x24,0x81,0x12,0x9c, - 0x93,0x63,0xc0,0x9e,0xbf,0x45,0x62,0xbc, - 0x46,0xef,0x8e,0x43,0x29,0x67,0xf6,0x35, - 0x5b,0x4f,0xdf,0x33,0x55,0x3d,0x3d,0x38, - 0x76,0x2b,0xec,0x49,0xff,0x7a,0xfb,0x54, - 0x1d,0xd6,0x27,0x3a,0x68,0x4b,0xcc,0xdb, - 0x24,0x44,0x88,0x95,0xc4,0x90,0x42,0xef, - 0xfa,0xe0,0x8f,0x68,0x3b,0x84,0x9f,0x2a, - 0x9e,0xe4,0xce,0x97,0x4f,0xc,0x86,0xcd, - 0xe,0x1b,0xe6,0x68,0xef,0x9b,0x91,0x52, - 0xb9,0xe,0x74,0x9a,0x85,0xb4,0x3b,0x32, - 0xb8,0x18,0x73,0x5b,0x46,0xbe,0xb8,0x46, - 0x3f,0x4c,0xe6,0xdd,0x5b,0x42,0x43,0x8f, - 0xd8,0x9f,0x30,0x83,0x6a,0x36,0x14,0x4f, - 0x55,0x51,0x2,0x13,0x96,0xdd,0x81,0xd8, - 0xed,0xc1,0xbe,0x39,0x71,0x7,0x22,0x55, - 0x47,0xc0,0xbc,0x8b,0x71,0x2e,0x2d,0x7e, - 0x2a,0xc7,0x28,0x17,0xf6,0x3d,0xbc,0x3, - 0x89,0x67,0x29,0x70,0x27,0x59,0x3f,0xbc, - 0x67,0x5f,0x43,0x15,0x1,0xed,0xf0,0x8e, - 0xa6,0xdb,0x3a,0x1a,0xbe,0x3,0xc3,0x62, - 0x50,0x31,0x11,0x19,0xac,0xce,0xe9,0x24, - 0xc,0xef,0x6a,0x37,0x90,0xb0,0xfe,0x3f, - 0xb2,0xd2,0x76,0x7f,0x76,0x56,0x22,0xfe, - 0x7c,0x72,0x4c,0xb9,0x44,0x17,0x77,0x96, - 0x4c,0x77,0xfb,0x40,0x29,0x7a,0x8c,0x7c, - 0x63,0xab,0xca,0x5e,0xd8,0xa5,0x69,0x95, - 0xc1,0x18,0x75,0x6d,0x76,0x39,0x87,0x60, - 0xc3,0x53,0xf,0xf1,0x9e,0x47,0xb7,0x94, - 0x7,0x14,0x2f,0x45,0x91,0x91,0xac,0x5e, - 0x9,0x7e,0x60,0x1b,0x55,0xbd,0x77,0x45, - 0xbf,0x62,0x85,0xde,0xd5,0x72,0x32,0x22, - 0xb6,0xe9,0x87,0x1,0x5a,0x23,0x74,0x13, - 0x45,0x89,0xb0,0xa,0x22,0xfd,0x3e,0x94, - 0xe,0x36,0xf4,0xa9,0x64,0x61,0x33,0xa6, - 0xe,0xfc,0xa2,0x4,0x25,0x70,0x54,0xdc, - 0x51,0x5f,0xba,0x9a,0xa0,0x76,0x30,0xa2, - 0x36,0x4f,0xe7,0xf1,0x8d,0x17,0xc5,0xe1, - 0xe2,0x7b,0x70,0xed,0xdf,0x9f,0x8f,0xa7, - 0xf5,0xea,0x3c,0xd2,0x53,0x1c,0x91,0xac, - 0x16,0x81,0x80,0x7,0xa,0xcb,0xa6,0x36, - 0x72,0x8d,0x46,0xfe,0xd4,0xfe,0x68,0x3f, - 0x27,0x64,0x55,0xd8,0xa2,0xb0,0x9e,0x1, - 0xf2,0xb1,0x6,0x8f,0x3f,0x91,0x7d,0x33, - 0xf2,0x89,0xa8,0xde,0x6f,0x27,0xc5,0x9, - 0xed,0xa8,0xda,0xe9,0x9,0xbd,0x77,0xd5, - 0x26,0xcb,0x4a,0x36,0x7d,0xe6,0x46,0xbe, - 0x75,0xde,0xef,0x35,0x24,0x43,0x54,0xe6, - 0x18,0xeb,0xb5,0xf9,0x6c,0xd7,0x38,0x37, - 0x9e,0x65,0x54,0xb1,0xd,0x67,0xe6,0x36, - 0x24,0xe4,0xa1,0x26,0xa0,0x43,0xe7,0x5a, - 0x85,0x20,0x23,0x96,0x9d,0x88,0x2a,0x7e, - 0x36,0xab,0xb3,0xa9,0x39,0x2d,0x9a,0xc2, - 0x27,0x4,0xf6,0xf3,0x3,0xcd,0x40,0x43, - 0x42,0x3f,0xc4,0xe9,0x29,0x9b,0x13,0x6a, - 0xca,0xd4,0x23,0xa6,0x16,0x86,0xe5,0x2d, - 0xb3,0x7e,0x8c,0x2c,0x93,0x2a,0xd2,0x2a, - 0xb1,0x19,0xf0,0x85,0xd9,0x96,0xeb,0x43, - 0xb5,0xd4,0xe1,0xfb,0x9e,0x37,0x5b,0xf4, - 0x14,0x60,0x6b,0xd8,0x96,0xcd,0xcb,0x68, - 0x87,0x31,0x3,0xbf,0x31,0x38,0xc3,0xd1, - 0x40,0xbe,0xcf,0xe8,0xa5,0xf4,0xe,0xb, - 0xc6,0x70,0xeb,0x1c,0x1f,0xc4,0xf3,0xef, - 0x78,0x78,0x70,0x97,0xe5,0x19,0x27,0xa8, - 0xf2,0xa2,0x7,0xc,0x72,0x58,0xf0,0x1b, - 0x64,0x47,0xcd,0xf8,0xab,0xfb,0x97,0xa8, - 0x91,0xc1,0x1e,0xd6,0x5e,0xc7,0xdb,0xe2, - 0x8b,0xd7,0x1f,0xa0,0xe,0x97,0x58,0xb3, - 0x70,0x3,0x54,0x11,0xfc,0x24,0xaa,0x1c, - 0x9c,0xd0,0xfb,0x61,0x66,0xf3,0x9,0xee, - 0x6f,0x13,0x80,0x32,0x1a,0x53,0x6c,0xc4, - 0xb2,0xd1,0x43,0x9d,0xa4,0x3d,0x71,0xf3, - 0x3b,0x89,0x8a,0xeb,0xd4,0xb1,0xe3,0xe6, - 0xa,0xb5,0xd6,0x52,0xb1,0x44,0xcb,0x6a, - 0x55,0x3c,0xd7,0x27,0xc9,0xe3,0x54,0x2c, - 0x8e,0xb8,0xf7,0xc1,0xc7,0x33,0xf5,0x44, - 0x52,0x53,0xe,0x5a,0x1,0x70,0xb,0xca, - 0xf7,0xf5,0x1a,0x25,0x8a,0x17,0xa4,0xbd, - 0xe1,0x44,0x1d,0x7d,0xc,0x3,0xf0,0x56, - 0x47,0xd3,0x50,0x98,0x5d,0x1f,0xa8,0x35, - 0x23,0x45,0xea,0xf,0x9f,0x3,0x91,0x8b, - 0xe6,0x41,0xf3,0xb7,0x5a,0x73,0xad,0x59, - 0x45,0x65,0xbf,0x91,0x3f,0x55,0x54,0x51, - 0xe3,0x1e,0x97,0x85,0x9c,0xcf,0xa8,0x9b, - 0x5,0x88,0x45,0x7,0x5f,0xe8,0xb6,0xe5, - 0x51,0x42,0x8d,0xf1,0x2a,0x67,0x7a,0x97, - 0x27,0xf9,0xdc,0x5,0x45,0xe2,0x83,0x94, - 0x42,0xd2,0x41,0xf3,0x37,0xa3,0x80,0x75, - 0xc0,0x68,0xab,0x31,0x36,0x3e,0xf4,0x1c, - 0x19,0x46,0xfb,0x75,0x5d,0xc3,0xce,0x43, - 0xf7,0x94,0xc4,0x1,0x7c,0x12,0x1c,0x9a, - 0xc9,0x2d,0x48,0x93,0x37,0x9d,0x9b,0x32, - 0xa2,0x16,0x80,0x9c,0x9a,0x87,0x2c,0x6f, - 0x95,0x3f,0x6c,0xbe,0x1,0x5e,0xf8,0x61, - 0x5f,0x2b,0xa0,0xaf,0xe4,0x23,0xdd,0xdf, - 0x9a,0x87,0x65,0xc5,0xcc,0x9a,0x4,0x83, - 0xe3,0x68,0x51,0x1c,0xd7,0x5c,0x7b,0xe2, - 0x17,0x56,0xc1,0xaf,0xf7,0xa9,0x8b,0x39, - 0xae,0xa4,0xd9,0x39,0x88,0xa2,0x81,0xb6, - 0xa1,0x23,0x65,0xad,0xac,0xfd,0xf3,0x27, - 0xf1,0xcb,0xbe,0xd8,0x56,0xc6,0xc6,0x27, - 0xa2,0x51,0x1d,0xcd,0xd8,0x76,0x61,0xbc, - 0xf9,0xa,0xa0,0xff,0x23,0xcc,0x2a,0x12, - 0xb2,0x39,0x65,0x10,0xfb,0x2c,0xa3,0x45, - 0x75,0xfa,0x5a,0x55,0xdb,0x7,0xf8,0xd6, - 0xf7,0x98,0x7c,0xe8,0xbb,0xe9,0x20,0xac, - 0x36,0x9f,0xc6,0x9c,0x4b,0xc1,0x96,0xa1, - 0x87,0xa1,0xfd,0x89,0x2d,0x4d,0x9f,0x79, - 0x7c,0x6b,0x3b,0xa1,0x7e,0xa4,0xbe,0x6e, - 0x48,0xda,0xe3,0x86,0xfa,0xfa,0x52,0x93, - 0x5f,0x5f,0x6a,0x97,0x4b,0xd4,0x7b,0x8a, - 0x5d,0x35,0xa2,0x45,0x1d,0x2d,0xd8,0x8, - 0x52,0xa2,0xb7,0xd0,0xc7,0x59,0x4a,0xbf, - 0x85,0xae,0xbf,0xa3,0x39,0xad,0xe3,0xe0, - 0x53,0xe4,0x1e,0x67,0x53,0xd,0xda,0xeb, - 0x5b,0xf3,0xc5,0x1e,0xce,0x5f,0x71,0x7, - 0xbd,0x18,0xcf,0x63,0x13,0x83,0x29,0xce, - 0xe4,0x38,0x33,0xc2,0xa6,0xa9,0x6c,0xae, - 0xd3,0x90,0xc2,0x67,0x8e,0x23,0xfb,0xd8, - 0x48,0x9f,0x4,0x82,0x6,0x2c,0xb6,0x9b, - 0xa1,0xd,0xdb,0xcd,0xda,0x96,0x29,0x26, - 0x7c,0x7,0xeb,0xcc,0x98,0x15,0x4d,0x5b, - 0xb5,0x8,0xa,0x2d,0xfe,0x86,0xf0,0xdd, - 0xa1,0xc0,0xdc,0xd7,0x88,0xa0,0x6d,0x88, - 0x48,0x4e,0x71,0x0,0x81,0x72,0xcc,0x54, - 0x9f,0xb3,0x48,0xe5,0xb1,0x47,0xb2,0x7b, - 0x6,0x3,0x6d,0x9b,0xcc,0x46,0x6b,0x66, - 0x5b,0x34,0x74,0xa3,0x46,0x4a,0x1e,0x86, - 0xff,0xa1,0x8d,0xe7,0x6e,0xe3,0x37,0x2a, - 0x38,0x7b,0xd7,0x7,0x81,0x1c,0x4f,0xfe, - 0xc8,0x91,0xb9,0xed,0xbf,0xa3,0xe3,0xf2, - 0xc0,0xba,0xd9,0x85,0x3f,0xac,0xa5,0x6a, - 0xf1,0xa5,0x38,0x7c,0x14,0x50,0xb7,0x4c, - 0x52,0x9f,0x87,0xf3,0xfc,0xcb,0xd3,0x4d, - 0x3,0xa3,0x8c,0xce,0xa1,0xd3,0x32,0xaa, - 0x8c,0xea,0x85,0x8d,0xfa,0x25,0x3f,0xba, - 0xd8,0xe,0x49,0xa,0xbd,0xf0,0xed,0xdb, - 0x98,0xb9,0x7,0x70,0x18,0x30,0x2c,0x9f, - 0x19,0x82,0x3f,0xc3,0x20,0x74,0xb0,0x2b, - 0x94,0xdd,0x31,0x30,0x8c,0xa9,0x9d,0x7, - 0xd8,0xb,0x48,0x76,0x5a,0xe5,0xd,0x22, - 0xf5,0x65,0x7d,0x5c,0x2f,0x6a,0x5f,0x25, - 0x9a,0x91,0x0,0xe,0x80,0x7f,0xb7,0xde, - 0xec,0x77,0x87,0x53,0xc1,0x2c,0xe,0xc, - 0x10,0x72,0x47,0xcb,0xc9,0x49,0x1b,0xc, - 0xf6,0xc2,0x36,0xf9,0x8e,0xc7,0x19,0xdc, - 0x7e,0x29,0x8e,0x26,0xd8,0x11,0xcc,0xd0, - 0x6a,0x57,0x7b,0x9e,0x66,0xf0,0x45,0xc7, - 0xe7,0xe0,0x20,0x26,0x34,0xb0,0xae,0xf9, - 0x49,0x51,0xa5,0xc,0x20,0x5c,0xcc,0x5c, - 0xd7,0x80,0xbb,0xd5,0xe0,0x6f,0x8c,0xa, - 0xf2,0x77,0xfe,0x1c,0x43,0x84,0xd8,0xb2, - 0xd2,0x43,0x2f,0xd,0x1b,0xc7,0x2f,0xf0, - 0x20,0x28,0x75,0x18,0x42,0xb,0x1f,0x2a, - 0xad,0x3c,0x13,0xde,0x4d,0xa8,0xa7,0x71, - 0x3f,0xe0,0x38,0xec,0xa8,0x51,0x94,0xef, - 0x40,0x17,0x2e,0x71,0x53,0xbe,0xc5,0x4, - 0x37,0x65,0x47,0x13,0xc4,0x19,0x3a,0x9b, - 0xa0,0x99,0xfd,0x8d,0x26,0x88,0xd9,0xc5, - 0x9a,0x20,0xc8,0xf5,0x46,0x13,0x4,0x9c, - 0x62,0x4c,0x90,0x93,0x77,0x32,0x41,0x94, - 0xe1,0x6f,0xd6,0x4,0xb1,0xd8,0xb4,0x9, - 0x62,0x9a,0xb7,0x98,0xa0,0x59,0xda,0x35, - 0x4d,0x50,0x9f,0x39,0xc4,0x25,0xd6,0x8f, - 0x6f,0x31,0xc1,0xfa,0xb1,0xa3,0x9,0xe2, - 0xc,0x9d,0x4d,0xd0,0xcc,0xfe,0x46,0x13, - 0xc4,0xec,0x62,0x4d,0x10,0xe4,0x7a,0xa3, - 0x9,0x2,0x4e,0x31,0x26,0xc8,0xc9,0x3b, - 0x99,0x20,0xca,0xf0,0x37,0x6b,0x82,0x58, - 0x6c,0xda,0x4,0x31,0xcd,0x5b,0x4c,0xd0, - 0x2c,0xed,0x9a,0x26,0xd8,0x1c,0x8b,0xc5, - 0x45,0xbe,0xd4,0x6f,0xb1,0xc1,0x97,0xba, - 0xa3,0xd,0xe2,0xc,0x9d,0x6d,0xd0,0xcc, - 0xfe,0x46,0x1b,0xc4,0xec,0x62,0x6d,0x10, - 0xe4,0x7a,0xa3,0xd,0x2,0x4e,0x31,0x36, - 0xc8,0xc9,0x3b,0xd9,0x20,0xca,0xf0,0x37, - 0x6b,0x83,0x58,0x6c,0xda,0x6,0x31,0xcd, - 0x5b,0x6c,0xd0,0x2c,0xed,0xaa,0x36,0x38, - 0xa5,0x6d,0xf0,0x8d,0x46,0xd8,0xdd,0xa, - 0xdf,0x6a,0x86,0xd7,0xb6,0xc3,0x9e,0x86, - 0x78,0x45,0x4b,0xec,0x6a,0x8a,0xdd,0x6d, - 0xf1,0x3f,0x88,0x31,0x46,0x59,0xe3,0x15, - 0xcd,0xf1,0x7a,0xf6,0x88,0x39,0xbf,0xc1, - 0xe2,0xba,0x59,0xdb,0x5b,0x2c,0xed,0x9a, - 0x56,0xd6,0xc3,0xc2,0xae,0x64,0x5d,0x5d, - 0x2c,0xab,0x9b,0x55,0xfd,0x7,0xb0,0xa8, - 0xa0,0x35,0x5d,0xc9,0x92,0xae,0x64,0x45, - 0x9a,0x69,0x2d,0x6f,0x1b,0x23,0x50,0xc4, - 0x3e,0x41,0x79,0x77,0xe3,0xcb,0x0,0x90, - 0x63,0x17,0x5,0x44,0xe0,0xa3,0x18,0x63, - 0x43,0xb1,0x33,0xe6,0x79,0x54,0x4e,0x6f, - 0xd5,0x30,0xa5,0xab,0x8a,0xf3,0xa8,0x82, - 0x4c,0x48,0x1b,0x72,0xc8,0xe2,0x38,0x0, - 0x40,0xd6,0x41,0x4a,0xe2,0xb3,0x51,0xea, - 0xd4,0x16,0x4b,0x2a,0xd2,0x73,0x1e,0x3a, - 0xc0,0x4f,0x2,0x1,0xdf,0xfa,0xb9,0xf2, - 0x8c,0xff,0xf7,0xc1,0x7a,0x75,0xfb,0xa7, - 0xf,0xbc,0xaa,0xef,0x27,0xb7,0xc9,0x70, - 0xa0,0xfe,0x63,0xd2,0xbc,0x9f,0xdc,0x85, - 0x1e,0x2c,0xdf,0xac,0x4f,0x3c,0x70,0x2, - 0xfb,0xeb,0xa7,0xf,0x69,0xe2,0x78,0xaf, - 0x7c,0x3a,0x98,0x3f,0x4d,0x26,0xec,0xaf, - 0x34,0x97,0x7f,0x4f,0x32,0xf6,0xb7,0xf5, - 0xfe,0xb6,0x4b,0x3f,0xed,0x59,0xe2,0xb8, - 0x5e,0xcb,0x33,0xc,0x8a,0xa1,0x2f,0xd1, - 0xdb,0x97,0x15,0x49,0x84,0x9d,0xc9,0x43, - 0xcc,0x84,0xc1,0x37,0x7,0x19,0x68,0x2a, - 0xa3,0x78,0x82,0xc0,0x3c,0xbc,0x4e,0x33, - 0x73,0x5a,0x36,0x3a,0xd4,0xe,0x35,0xe5, - 0xce,0xee,0xab,0x53,0xc0,0xba,0x51,0x69, - 0xf3,0xa8,0xd2,0x48,0x1b,0x47,0x7c,0x26, - 0x71,0x7c,0xc,0x4b,0xb7,0x29,0x9d,0x7, - 0x31,0x68,0xee,0x84,0x75,0x9b,0xca,0x24, - 0x6c,0x1c,0x5f,0x22,0xb8,0xf1,0xb2,0xfe, - 0xeb,0x30,0x74,0x5e,0xd3,0x41,0xfb,0xc7, - 0xef,0x69,0xee,0x58,0x49,0x86,0xb5,0xc7, - 0xf5,0x64,0xc3,0xe4,0x89,0x34,0x5f,0xf7, - 0x26,0xc,0x5e,0x76,0x90,0x65,0x71,0x28, - 0xa3,0x8e,0x95,0x58,0x87,0xc,0xda,0x5, - 0x6e,0xf2,0xf0,0x95,0x75,0x17,0x39,0xab, - 0x5e,0x1c,0xaa,0xe2,0xf3,0x88,0xff,0x1e, - 0x19,0xa8,0xa1,0x99,0xbf,0x84,0xe2,0x34, - 0x4c,0x9c,0x81,0x1a,0xb8,0xc,0x9f,0x9e, - 0xe,0xc6,0x29,0xe2,0x7,0xe3,0x30,0xb2, - 0xa0,0x1a,0x8b,0xb3,0xf,0xf2,0xbc,0x2b, - 0x98,0x46,0xb5,0x93,0x47,0x38,0x99,0x52, - 0x5f,0xed,0xac,0xf0,0x84,0x27,0x3c,0xbd, - 0xa9,0xd5,0xe1,0x38,0xb6,0xb5,0x2c,0xea, - 0xe5,0x47,0x75,0x0,0x61,0x34,0x60,0x62, - 0xde,0x38,0xcf,0x71,0xd9,0xa4,0x44,0x2d, - 0xda,0x63,0xae,0xc6,0x79,0x56,0xa3,0x1e, - 0xd4,0x29,0x57,0x77,0x5d,0x88,0x63,0xaf, - 0xee,0xda,0xf0,0x3f,0xd5,0x8c,0xfd,0x7, - 0x50,0xb5,0xa1,0x55,0xd9,0x1f,0x24,0xe9, - 0x6a,0xb7,0x3b,0xb5,0x87,0x3,0xc5,0xc, - 0x56,0xb2,0x92,0xb3,0x53,0x7c,0xee,0x4b, - 0x4f,0x49,0x53,0x7d,0xf6,0x54,0x91,0x9e, - 0xd6,0xa7,0xba,0x32,0xe,0x44,0x8e,0xdb, - 0xae,0x30,0x3a,0x3e,0x2f,0x10,0x89,0x38, - 0x4e,0x37,0x46,0xa7,0x72,0xda,0xe9,0xb2, - 0xe4,0xc8,0xcc,0x3,0xaa,0x93,0xa6,0xe2, - 0xa3,0xeb,0xf,0xed,0x8f,0xe8,0xb4,0x3b, - 0xa8,0x9e,0x5a,0xc0,0x44,0xdc,0x85,0xa3, - 0xaf,0x6b,0xa9,0xe,0x9f,0x64,0x46,0x93, - 0x78,0xc,0x3,0x95,0x4c,0xf5,0x4e,0x67, - 0x43,0xe,0x88,0x4f,0x6c,0x70,0x7d,0x45, - 0xcd,0x45,0x88,0x12,0x5b,0x75,0xcf,0xdd, - 0xd2,0xb6,0xde,0xb2,0x18,0xa2,0x3f,0xeb, - 0x53,0x8d,0xac,0x4a,0x51,0x55,0x47,0x7a, - 0x90,0x67,0x6d,0xd1,0xa0,0x30,0x1a,0x13, - 0x9d,0x0,0x7f,0x94,0xf7,0x56,0xc6,0xf0, - 0x58,0xac,0xd1,0xd,0x14,0x77,0x71,0xa, - 0xd2,0xc7,0x1e,0x70,0x52,0x39,0xd7,0x9b, - 0xc7,0x11,0x1f,0x81,0xd9,0xc8,0x4a,0x4, - 0xd6,0x81,0x37,0xbb,0x93,0x76,0x1d,0xab, - 0x96,0x97,0xd0,0x18,0x1e,0x42,0xad,0xda, - 0x96,0x37,0x6c,0x4b,0xd6,0xeb,0xcc,0xe6, - 0x3,0x5f,0x57,0xc2,0xb3,0x8a,0x44,0x1e, - 0x4e,0xf2,0xed,0x46,0x33,0xb2,0x82,0x97, - 0x6f,0x3d,0x6a,0xe9,0x4b,0x3c,0xc2,0xf5, - 0x19,0xa3,0x88,0xbc,0x99,0xe1,0x3e,0xd0, - 0xd3,0xe6,0x27,0x56,0xd2,0x62,0x4f,0x85, - 0xad,0xa6,0x7,0xf2,0xcc,0x9e,0x55,0x96, - 0x1a,0xdd,0x58,0x6f,0x7e,0xef,0x18,0x87, - 0x0,0xf5,0xf,0xa8,0x7e,0xaa,0x13,0xa0, - 0x1d,0x7,0x3b,0x8f,0x75,0xfb,0xa1,0xf7, - 0xc5,0xa8,0x20,0xe7,0x1,0xb4,0x85,0x61, - 0x34,0x3d,0xd1,0xa7,0xfa,0x16,0x2d,0x7, - 0x8d,0x6e,0x45,0x87,0x7b,0x98,0xb3,0x2, - 0xe8,0xe,0x4b,0xbf,0xbb,0x5c,0x61,0xc6, - 0x51,0x5a,0x25,0x32,0x4,0x4c,0xb5,0x4b, - 0xd9,0x7e,0xb5,0x3a,0xca,0x26,0xf5,0x8a, - 0x6b,0xf0,0xca,0xd6,0x31,0x4b,0x96,0xce, - 0x86,0xbc,0xd1,0xe2,0x99,0x11,0x6c,0x43, - 0xd3,0x4e,0xe2,0xb0,0x2e,0x11,0x6e,0x40, - 0x4e,0xe,0x94,0x77,0xef,0x14,0x58,0xcc, - 0x77,0x7a,0xdf,0x3a,0x1b,0xf,0xb6,0xc5, - 0x8a,0xed,0xf2,0x89,0x51,0xff,0x36,0x37, - 0x5d,0x86,0x9e,0x83,0xa2,0x43,0x54,0xc5, - 0x36,0x39,0xfa,0x0,0xa9,0xd5,0x22,0xf6, - 0x11,0x52,0x93,0x44,0xde,0xa7,0xd2,0x3b, - 0xc3,0xcc,0x14,0xf4,0x1,0xff,0xe5,0x2c, - 0xab,0xa6,0x54,0xb8,0x84,0xf9,0x2a,0x15, - 0x6a,0x6d,0xce,0x8a,0xae,0xb7,0xc7,0xea, - 0xc4,0x46,0x41,0x7e,0xc3,0x81,0xfd,0x65, - 0xcf,0x9,0x42,0x65,0xea,0xdb,0x86,0xdf, - 0x7a,0x81,0x99,0xce,0xd8,0x7f,0x1f,0x6, - 0xfc,0x2a,0xc0,0x4f,0x1f,0xde,0x4f,0x32, - 0x29,0x23,0x5c,0x71,0xf2,0xa4,0xd1,0xe1, - 0xb9,0x66,0x8b,0x4e,0x7e,0xf1,0x67,0x57, - 0x96,0x72,0x7d,0x98,0x8e,0x67,0xd3,0xd9, - 0x60,0xca,0xff,0x2c,0xc6,0xf9,0x38,0x17, - 0xa7,0x63,0xd3,0xc1,0x78,0x9e,0xdc,0xe, - 0x92,0x9f,0x6f,0x7,0x69,0x32,0x9e,0xdc, - 0x65,0x75,0xce,0x9,0x46,0xfc,0xcf,0xb9, - 0x49,0xc6,0xff,0xaf,0x47,0xb3,0x1,0xcc, - 0x3f,0x92,0xf9,0xd9,0xe7,0x11,0x62,0x9b, - 0x88,0x84,0x5f,0xad,0xe5,0x27,0xd8,0x82, - 0x3e,0xec,0x4e,0xc5,0xa9,0xfa,0x38,0x4a, - 0x6f,0x93,0xb2,0x7a,0xa4,0x74,0xac,0x74, - 0x2a,0xe1,0x8f,0xa7,0x3,0xdf,0x5,0x49, - 0x9a,0xf3,0xb9,0xd2,0xba,0x9a,0x13,0xba, - 0x13,0x6b,0x9a,0x23,0xe6,0xeb,0x30,0xbc, - 0xca,0x6f,0xdc,0x34,0xd2,0xc4,0xff,0x86, - 0x9a,0x26,0xf2,0x28,0x33,0xbe,0x2d,0xd0, - 0x5a,0x67,0xd3,0xb2,0x83,0xf1,0xa4,0xdf, - 0xe1,0x71,0x57,0x7,0x88,0x18,0x2,0xf0, - 0x25,0xf5,0x9,0x41,0x21,0x8f,0x8f,0x6b, - 0xa,0xf3,0xed,0xc9,0xdb,0xd9,0x62,0xbe, - 0x8a,0x38,0x48,0x6e,0xbf,0xe9,0x66,0xc, - 0xf,0x6a,0xa5,0x65,0xcd,0xa5,0x5a,0xa, - 0x11,0x80,0xc3,0x3b,0xd0,0xfb,0x16,0x27, - 0x98,0x8f,0x72,0x7e,0xbb,0xd5,0xe8,0x74, - 0xde,0x57,0x97,0xb7,0xdd,0xa8,0xf3,0xb1, - 0x1e,0xd8,0x3,0xf3,0xb7,0x99,0x83,0x1b, - 0x95,0x0,0x1e,0x5e,0xd5,0xe4,0xc6,0x58, - 0xa9,0x1b,0x19,0xc4,0x24,0xcb,0xd0,0x7, - 0x35,0xa9,0xc2,0x3a,0x21,0xa6,0x7,0xe, - 0xad,0x40,0xfe,0xb6,0x52,0x5a,0x8f,0xf0, - 0x4d,0x97,0xc,0x91,0x75,0x6a,0xc0,0xd2, - 0xeb,0xea,0x41,0x6c,0x8b,0x50,0x73,0x1d, - 0x48,0xb4,0xaa,0x9f,0x8f,0x4f,0xbe,0xca, - 0xa8,0xd,0x21,0x6f,0x1e,0x69,0x2a,0x3e, - 0x84,0xd3,0x98,0x11,0x5,0xb9,0x39,0xb6, - 0xc9,0x62,0x72,0xba,0xb6,0xb6,0x22,0xf2, - 0xba,0xad,0x7,0x5c,0xe2,0x3e,0xb0,0x91, - 0x63,0x79,0x78,0xde,0x2c,0x62,0x2e,0x51, - 0x8b,0x3b,0x93,0x78,0x90,0x49,0xe5,0x5d, - 0x21,0xe3,0x1e,0x55,0xcb,0x56,0xd4,0xe4, - 0x7,0xf3,0xc3,0x85,0x82,0xeb,0x43,0x99, - 0x9a,0x20,0x9,0x6c,0xf2,0xc9,0xdc,0x84, - 0x98,0xba,0x52,0x47,0x1,0xf0,0xe5,0x58, - 0xed,0x8b,0x9b,0x8b,0x2c,0x80,0xab,0xa, - 0x81,0x33,0x1c,0xbc,0xfb,0x91,0xef,0x51, - 0x1b,0xe5,0x19,0x57,0x5d,0x75,0x88,0xef, - 0x7d,0xc1,0xc4,0x17,0xd7,0x80,0xb0,0xca, - 0x8c,0xbb,0x66,0x96,0x4e,0x58,0xbe,0x4a, - 0x9d,0x5f,0x70,0x4e,0xf7,0xe5,0x65,0xa0, - 0x88,0x8b,0xe5,0x91,0x23,0xb9,0xbe,0x5e, - 0xfc,0xbb,0xce,0xce,0xa3,0x3d,0x71,0xab, - 0x21,0xdb,0xf7,0x36,0x69,0xa6,0xd3,0x7d, - 0x40,0xf7,0xd3,0x9d,0x61,0xca,0xc8,0xcb, - 0xc8,0x90,0xad,0xe9,0xa9,0x23,0xd9,0xf6, - 0xf5,0xdd,0xa2,0x60,0xd3,0xd9,0xe8,0xe5, - 0x64,0xab,0x8,0x3b,0x86,0x4c,0x93,0x51, - 0x75,0x4f,0x48,0x6d,0xd5,0xbe,0xc7,0x23, - 0xb9,0x2d,0x7f,0xd,0xdb,0xc1,0x12,0xc2, - 0x77,0xfd,0xe3,0xaf,0x82,0x23,0x93,0xd0, - 0x1b,0xab,0x32,0x8,0xc9,0x40,0x47,0x6, - 0x69,0xd5,0x4,0x34,0x4,0x2b,0x14,0x35, - 0xf9,0xf0,0x38,0x98,0xb6,0x80,0x76,0xa4, - 0x75,0xf0,0xf,0x7b,0x30,0x72,0x82,0xd3, - 0x8e,0x17,0xe2,0x80,0x33,0x21,0xb3,0x14, - 0x39,0x1d,0xd3,0x37,0x31,0x69,0xe,0x7d, - 0x74,0x92,0x5,0x54,0x92,0xf9,0x4b,0xeb, - 0xa8,0xa0,0x2c,0xa4,0x1f,0xab,0x38,0x7e, - 0xb,0x8a,0x50,0x8f,0xf7,0x71,0x3,0x9a, - 0x41,0xaf,0x1e,0x13,0xea,0x30,0xfe,0xd2, - 0xba,0x76,0x9f,0x60,0xef,0x91,0x3e,0xb1, - 0x28,0x1f,0x1d,0xd1,0x3e,0x5b,0x93,0xc9, - 0xb9,0x7a,0x66,0x39,0x56,0xcf,0xbc,0xf9, - 0x5d,0xc5,0x9a,0x9c,0x27,0x89,0x71,0xa9, - 0xd7,0x8c,0xc6,0x8,0x2f,0xff,0x53,0x1, - 0x26,0x8d,0xbb,0xa8,0xb,0x36,0xc4,0x73, - 0x86,0xe,0x30,0x52,0x54,0x5d,0xc6,0xf8, - 0x34,0xce,0xb0,0x2d,0x4e,0xdb,0x81,0x92, - 0xcc,0x76,0x85,0x6d,0x38,0x9c,0xa2,0x66, - 0xe5,0x11,0x14,0x16,0x1a,0x46,0x4d,0x49, - 0x3a,0xdf,0x49,0x56,0xe5,0x89,0xa5,0x54, - 0xfb,0xee,0x61,0x83,0x7c,0xca,0x44,0xeb, - 0xb9,0x11,0xa6,0x54,0x9d,0xc6,0x64,0xdc, - 0xac,0x8f,0xe2,0x98,0x98,0x71,0x42,0x31, - 0x3,0xec,0x1,0xd5,0x40,0x46,0xc6,0xaa, - 0x77,0xc7,0x2a,0x8,0x82,0xb4,0xee,0xae, - 0x91,0x1e,0x84,0x78,0xd4,0xcc,0xcd,0x77, - 0xeb,0x6f,0xa7,0x93,0xbb,0x5b,0x62,0x44, - 0x5e,0xae,0xaa,0x89,0x35,0x28,0x2f,0x66, - 0xe5,0x74,0x55,0x19,0xac,0x6,0x50,0x70, - 0xcd,0x76,0x96,0xe5,0xf3,0x42,0x13,0x5a, - 0xcf,0x7c,0x4f,0xd3,0xe9,0x6c,0xba,0xa0, - 0x3c,0xe6,0xa4,0xca,0x2a,0xeb,0x79,0xb5, - 0xac,0x9c,0x95,0xb7,0x16,0x33,0xaa,0xdc, - 0x6c,0x9a,0xdd,0x66,0xcb,0x86,0x14,0xbf, - 0x7b,0x9c,0xac,0xf2,0x34,0x9b,0x50,0x8f, - 0xba,0xa5,0xd5,0xbc,0x34,0x9d,0x1d,0xeb, - 0x7c,0x8b,0xa5,0xc9,0x8a,0x94,0x75,0x39, - 0x4d,0x27,0x4d,0xf5,0xd0,0x43,0xb1,0x79, - 0x9e,0xce,0x12,0x52,0xb9,0xab,0xe9,0x6a, - 0x69,0x29,0xb7,0x5a,0xad,0x16,0x90,0xf, - 0x59,0xda,0x94,0x29,0xaf,0xd4,0x54,0xc6, - 0xb,0x9c,0xb3,0xd9,0xb4,0x4c,0x32,0xda, - 0xbf,0x66,0xcb,0xd2,0x7a,0xf0,0xb1,0x5a, - 0x2e,0x72,0x83,0x15,0x55,0x66,0x3e,0xc9, - 0xaa,0x64,0xd2,0x74,0x4f,0xf4,0x64,0x21, - 0xeb,0x3f,0x9,0xf5,0xc,0xcf,0x77,0xab, - 0xdb,0x72,0x5e,0x5a,0xaf,0x7f,0xe5,0xcb, - 0xc9,0x72,0x8e,0x39,0x51,0x25,0xce,0x8a, - 0xb4,0x98,0xa4,0xad,0x49,0x81,0x17,0xdf, - 0x66,0xd9,0x8c,0x75,0x1e,0xaa,0xc0,0x8a, - 0xff,0x6b,0x16,0x58,0xb2,0x7f,0x2b,0xc4, - 0x88,0x2a,0x6f,0xba,0xca,0x93,0xbc,0x35, - 0x53,0x10,0xf0,0x34,0x9d,0xa6,0xb3,0x94, - 0x92,0x8f,0xf5,0xca,0xac,0x34,0xdf,0x66, - 0x5e,0x2c,0x17,0xd5,0x62,0x5,0xf9,0x50, - 0xa5,0xa5,0x49,0x3a,0x49,0xa7,0xaf,0x7f, - 0xcf,0x46,0x88,0xc5,0xe7,0xf5,0x69,0xf4, - 0xb9,0x3a,0xaf,0xe,0xc5,0xa6,0x3a,0xe, - 0xf6,0x87,0xdd,0xe3,0x81,0xf5,0xb3,0x11, - 0x3f,0x87,0x72,0x3c,0x1d,0xd6,0xfb,0xea, - 0x78,0x49,0xde,0x5f,0x88,0xb,0xfb,0xa3, - 0x17,0x89,0xa3,0xbf,0xfe,0xfd,0xdb,0xb2, - 0x8f,0x75,0x26,0xbc,0x54,0xd1,0x1e,0x80, - 0xf,0x94,0x66,0x28,0x64,0xe4,0x42,0x48, - 0x80,0xdb,0x98,0x51,0x9b,0xd3,0x1d,0x50, - 0xcd,0x98,0x10,0x1d,0x74,0xec,0x36,0xab, - 0x5a,0x5d,0x7d,0x95,0x73,0xd6,0x6b,0xbf, - 0xcf,0x33,0xeb,0x8,0x16,0x20,0x9,0x89, - 0x95,0x8a,0xdd,0x4e,0xa5,0xbd,0x43,0x2f, - 0x5f,0x58,0x1a,0x3d,0x72,0xed,0x31,0x21, - 0x3e,0x4e,0xf3,0xb2,0x7a,0x1c,0x92,0x51, - 0x6a,0x7,0x93,0xfc,0xfd,0x10,0xb8,0x2f, - 0xeb,0xf7,0x3c,0x79,0xef,0xc8,0xe9,0x4e, - 0x99,0x1b,0x3c,0x8c,0xdf,0x6f,0xec,0xbd, - 0xd7,0xd6,0xd9,0x20,0x9,0x8b,0x2d,0x13, - 0xe8,0xc4,0x44,0xd4,0x1d,0x5e,0x7e,0xe0, - 0xa,0x49,0xf5,0x43,0x52,0x3,0x36,0xe0, - 0xad,0xb7,0xac,0x8d,0xc8,0x4e,0xfc,0xd0, - 0x39,0x47,0xaf,0xa6,0xf2,0xd5,0x54,0xac, - 0x5c,0xf0,0xaf,0xac,0x25,0xc1,0x11,0xa9, - 0xb7,0xc7,0x9a,0xa1,0xad,0xa5,0x2d,0x62, - 0xb4,0x7d,0xde,0x2c,0x2a,0x56,0xf3,0x4b, - 0xbb,0x73,0x20,0xf6,0xd6,0x54,0x8,0x35, - 0xd6,0x12,0x7c,0xa9,0xc5,0xa4,0xa9,0x4e, - 0xf7,0x47,0x59,0x34,0x99,0xff,0x53,0xbd, - 0x6e,0x76,0x4a,0x1a,0xa3,0x92,0xb9,0x8f, - 0x1f,0x55,0xc6,0xe1,0xe0,0xdd,0xf8,0xdd, - 0xd,0xfb,0x63,0xf0,0xae,0xe1,0xbc,0xde, - 0x2e,0x59,0x95,0x44,0xe4,0x1f,0x82,0xbb, - 0x8,0xf5,0x5b,0x88,0xef,0xe0,0xa8,0xc4, - 0x3,0xe,0x3,0x66,0x7,0x2f,0x77,0xf1, - 0xd0,0x47,0xf4,0x1c,0xa9,0x46,0xf4,0x57, - 0xaa,0x98,0x88,0x1d,0x11,0xf5,0x1a,0xa5, - 0xa3,0xc,0xbc,0xbb,0xe3,0x7a,0x71,0xae, - 0x89,0x72,0x6e,0x70,0x9,0x6e,0xe2,0xb8, - 0x3,0x6,0x42,0x14,0xb6,0xe7,0xbe,0x8e, - 0xbd,0x43,0x6f,0x54,0xcf,0x75,0x30,0xf, - 0xae,0x68,0x8c,0xb3,0x7e,0xd6,0x1a,0xc5, - 0xd5,0x84,0xee,0xe3,0x76,0x54,0x76,0xcf, - 0x92,0xca,0x55,0x0,0x88,0x7d,0x6d,0x16, - 0xdd,0x21,0xe8,0x20,0xa9,0x4a,0xbb,0x2c, - 0xd5,0xd,0xac,0xfd,0xa4,0x1e,0x5b,0x27, - 0x6,0xeb,0x1f,0xac,0x3e,0x63,0x9f,0x90, - 0xc,0x67,0xd2,0x15,0xf4,0x44,0xc4,0x53, - 0xf6,0xc8,0xd7,0x4c,0x20,0x33,0x78,0x31, - 0x8e,0xba,0xa4,0x45,0x52,0x7e,0x8a,0xe9, - 0x47,0xce,0xdd,0x14,0x5f,0x30,0xbe,0xc8, - 0xe2,0xec,0xae,0x15,0xb7,0xf3,0x62,0x1c, - 0xf2,0x88,0x2b,0x8d,0x50,0x6d,0x74,0xde, - 0x88,0xc6,0x5,0xad,0x24,0xaa,0x47,0x35, - 0x79,0x97,0x12,0x8c,0xea,0x36,0x7b,0x82, - 0x44,0x21,0xbc,0x2f,0xb8,0xcf,0x6e,0x91, - 0xe5,0x37,0x41,0x99,0x62,0xfa,0x89,0x88, - 0x46,0xfc,0x9b,0x76,0x15,0xb2,0xc4,0x6f, - 0xd9,0x5b,0xa8,0x2,0x3b,0x74,0x18,0x2a, - 0xfb,0xd5,0xfb,0x4c,0x54,0x21,0x1d,0xbb, - 0x8d,0x27,0x82,0x10,0x5d,0x7,0x1d,0x49, - 0x28,0xaa,0xdf,0x6c,0xca,0xdf,0xba,0xdf, - 0x50,0x25,0x7e,0xd3,0x7e,0x43,0x14,0xd8, - 0xa5,0xdf,0x10,0xd9,0xaf,0xdf,0x6f,0x62, - 0xa,0x79,0x7b,0xbf,0xd1,0x61,0x6f,0xe8, - 0x3a,0xe8,0xf0,0x37,0x51,0xfd,0x86,0x47, - 0x22,0xff,0x6d,0xfb,0xd,0x55,0xe2,0x37, - 0xed,0x37,0x44,0x81,0x5d,0xfa,0xd,0x91, - 0xfd,0xfa,0xfd,0x26,0xa6,0x90,0xb7,0xf7, - 0x9b,0x26,0x56,0xb,0x5d,0x89,0x97,0xe, - 0x13,0x1a,0x46,0xfc,0x5b,0x77,0x9c,0x97, - 0xdf,0x78,0x5a,0x43,0x15,0xd8,0xa5,0xe3, - 0xbc,0xfc,0x6,0x93,0x9b,0xa8,0x42,0xae, - 0xd0,0x71,0xa6,0xfe,0x8e,0xd3,0xad,0xe7, - 0xfc,0xe,0x5d,0xe7,0xb7,0xef,0x3b,0x6f, - 0xed,0x3c,0xbf,0x4d,0xef,0xf9,0x16,0xdd, - 0x7,0xe6,0x17,0xe7,0x67,0xec,0xd3,0x31, - 0x26,0xc5,0x27,0x97,0x64,0xaa,0xfe,0xfc, - 0xa4,0xa3,0xb1,0xa,0xa3,0xf3,0x5,0x6f, - 0xac,0xd9,0xbb,0x16,0xdd,0xb0,0x1d,0x67, - 0xfe,0x8e,0xfb,0x31,0x81,0x5c,0xf8,0x85, - 0x0,0x57,0x95,0xd8,0x97,0x5,0x87,0xfb, - 0xbb,0x31,0x1f,0x47,0xbd,0xa7,0xa5,0xca, - 0xc4,0xeb,0x71,0xf1,0xd1,0x2e,0xaf,0x2b, - 0x54,0xe5,0xe1,0xd0,0x51,0x8d,0xc1,0x7c, - 0x48,0x91,0xce,0x6a,0x2d,0x17,0xcb,0xe5, - 0xb2,0xea,0x5e,0xad,0x28,0x55,0xea,0x52, - 0x91,0x2a,0xe5,0x47,0xa2,0xc4,0x4e,0xe8, - 0x9b,0x33,0x7f,0x57,0x35,0xfa,0x73,0xe1, - 0xde,0xe8,0xaa,0xd2,0x62,0x59,0x26,0x1c, - 0xa6,0xea,0xc6,0x3c,0xae,0x37,0xaa,0x32, - 0x71,0x6f,0x14,0x1f,0xed,0xf2,0x3a,0x80, - 0x89,0x74,0xe6,0x8e,0xca,0xf3,0x65,0xc1, - 0x9a,0x73,0x55,0x66,0x51,0x94,0xcb,0x2a, - 0xeb,0x54,0x99,0x38,0xb5,0xa9,0x2,0xb1, - 0xda,0xc4,0x47,0xbb,0xb0,0x6e,0xa8,0xa8, - 0x33,0x7f,0x47,0xe5,0x5,0x72,0x21,0xfd, - 0x39,0xab,0x54,0xcd,0xca,0xc5,0xe2,0xae, - 0x6b,0x95,0xa2,0x54,0xa8,0xcb,0x44,0x2a, - 0x94,0x1f,0xed,0xf2,0x3a,0x81,0xbc,0xae, - 0xec,0x1d,0x15,0xe8,0xcf,0x84,0xf4,0xe7, - 0xac,0x50,0xb9,0x5a,0x4e,0x96,0xd3,0x8e, - 0x15,0x8a,0x52,0x9f,0x2e,0x12,0x9f,0xce, - 0x17,0x1f,0xed,0xe2,0xba,0x20,0xd6,0x8e, - 0xdc,0x1d,0x95,0xe7,0xcd,0x83,0xfb,0x9e, - 0xab,0x3a,0x55,0xce,0xff,0xed,0x56,0x9d, - 0xb8,0x9e,0xa7,0x4a,0xc4,0x3d,0x4f,0x7c, - 0xa4,0x5a,0x2a,0x1a,0x7c,0xa7,0x33,0x77, - 0xee,0x75,0xee,0x2c,0xf8,0x91,0x5b,0x57, - 0x65,0x16,0x95,0x4,0xfd,0x3b,0x70,0x8e, - 0x52,0x9b,0x2e,0x10,0xa9,0x4d,0x7e,0x7c, - 0x5,0xe7,0x82,0xc4,0xa1,0xd2,0xf5,0xaf, - 0x1c,0x48,0x52,0x58,0x9e,0x8,0x10,0xa1, - 0xa6,0xb1,0xe0,0x2a,0x52,0x1b,0x2,0x8d, - 0xaf,0x6,0xf8,0x81,0xb0,0x49,0xe,0xde, - 0xa8,0x4a,0xe0,0x78,0xe,0x43,0x79,0xd, - 0xbe,0xf5,0x55,0xb1,0x4,0x45,0x26,0xe1, - 0x17,0x8f,0xf8,0xb5,0x22,0xfe,0x7f,0xc1, - 0xe3,0x1b,0xb0,0x3c,0x69,0x3a,0x66,0xd3, - 0xc,0x71,0xe7,0x68,0x36,0xce,0x6f,0x19, - 0x83,0xa9,0x41,0x92,0x2a,0x12,0xf1,0xe7, - 0xcf,0x77,0xe2,0xe7,0xdb,0x7a,0xc6,0x29, - 0x6,0x33,0xc4,0x6a,0x4,0x9,0x6f,0x7, - 0x82,0xb4,0x1e,0xb9,0x29,0xe5,0x9f,0x3f, - 0xcb,0x72,0x6f,0x7,0x82,0x2e,0x1d,0xcf, - 0x93,0x79,0x43,0x97,0x48,0x12,0xfb,0xe6, - 0xd2,0x40,0x1e,0x3e,0xf8,0x91,0xa9,0x5e, - 0x44,0x69,0x18,0x80,0x7b,0x4b,0xbe,0x67, - 0x85,0x1e,0x76,0xfb,0x62,0xc9,0x63,0xae, - 0x8d,0x73,0xd0,0xd2,0x86,0xb,0x66,0xed, - 0x45,0xbf,0x39,0xa1,0xf3,0xce,0x51,0x66, - 0x79,0x78,0xb9,0xdf,0x59,0xe4,0x86,0x67, - 0xa,0x38,0x2,0x8,0xae,0x2d,0xa5,0x1, - 0xdf,0x28,0xb8,0x4d,0x83,0xea,0xcf,0x47, - 0xfe,0x5a,0x4d,0x55,0xb3,0x5,0xb6,0x4a, - 0xd8,0xec,0x7e,0xb5,0xbf,0x5a,0x1f,0x1a, - 0xc9,0x26,0x50,0xb2,0x91,0x38,0xda,0x71, - 0x61,0xdd,0x89,0xc7,0x45,0x58,0x6f,0xf9, - 0x11,0xc4,0x8f,0xe9,0xcd,0xe0,0xf1,0x50, - 0x9c,0x8f,0xcb,0xa2,0xae,0x3e,0x72,0x18, - 0xfa,0x66,0xb0,0x10,0xeb,0xe1,0x2d,0x9b, - 0xbf,0x7d,0x9c,0xf0,0xf,0xaf,0xe3,0xd3, - 0x8e,0x2d,0xb1,0x14,0x54,0x9d,0xe5,0x9, - 0x5b,0x7,0xf2,0x57,0x2d,0x0,0x74,0x6d, - 0xbf,0xbf,0x6c,0x88,0x25,0x43,0xcc,0x85, - 0x1f,0x12,0xbe,0xcd,0x6f,0xac,0x60,0x2e, - 0xed,0x53,0x2e,0xa1,0x68,0x2e,0x37,0xb8, - 0xb1,0x5a,0xb8,0xd8,0x7c,0x7f,0xdc,0x71, - 0x82,0x40,0xc8,0x29,0x22,0x1f,0xf1,0x59, - 0x91,0xd6,0x62,0xa2,0x12,0xe4,0x8d,0x51, - 0x9e,0x7a,0x63,0xbe,0xb5,0xb4,0x13,0x4b, - 0x50,0xfd,0x68,0x90,0xd2,0x94,0x6e,0x45, - 0xae,0x2b,0x35,0xe0,0xa8,0xc1,0x46,0x34, - 0xa3,0xfd,0x19,0x7e,0x31,0x14,0x4c,0xf4, - 0x12,0xab,0xd8,0x4f,0xf6,0x4d,0x7d,0x32, - 0x10,0x81,0xca,0x67,0x84,0x44,0x74,0xdd, - 0x8e,0xc6,0xd8,0xfb,0x98,0x7a,0x5d,0xfb, - 0x6a,0xed,0xea,0x8f,0x49,0x92,0xe4,0x37, - 0xdf,0x28,0x8,0xe,0x54,0x8,0x3c,0x49, - 0x6a,0xc4,0xe1,0x50,0x2f,0x7d,0xc2,0x4d, - 0x11,0xac,0x52,0x74,0xaf,0x4a,0xa9,0x8a, - 0x8a,0x62,0xf4,0x3a,0xde,0xec,0x4a,0xf8, - 0x12,0xf3,0x6a,0xfd,0x52,0x95,0xea,0x98, - 0xaa,0x3a,0xf3,0xd2,0x46,0x9a,0xcc,0xf3, - 0x7,0xd8,0xdd,0xe0,0x7d,0x75,0xed,0xb1, - 0xf8,0xcf,0xcd,0x55,0xf2,0x17,0x7d,0xce, - 0xcb,0x78,0x52,0xa6,0xbd,0x5f,0xa1,0xca, - 0x1f,0x95,0xeb,0xa2,0xde,0x3d,0x12,0xc7, - 0x2f,0xda,0x37,0x7c,0x95,0xb4,0x3a,0x32, - 0x28,0xd5,0xd,0x5,0xaf,0xf1,0x8a,0x29, - 0x6f,0x80,0xf9,0xd2,0x57,0x4b,0x33,0x75, - 0xa1,0x85,0xd5,0x6,0xdc,0x25,0x16,0x3f, - 0xf1,0xc7,0xfa,0x58,0x6b,0x8f,0xf8,0x10, - 0x73,0x13,0x7d,0x30,0x29,0xa6,0x7c,0x75, - 0xa,0x49,0x92,0xca,0x97,0xf9,0x6c,0x52, - 0x10,0x57,0x53,0x12,0x4a,0x12,0xf9,0xe0, - 0x94,0x33,0x83,0x1a,0x3a,0xc7,0xc9,0xe4, - 0x6,0xeb,0x55,0x45,0x46,0xe5,0xc3,0xbc, - 0x8e,0xb4,0x29,0x3a,0x1f,0x6f,0x2d,0xde, - 0xf5,0x98,0x42,0xdd,0x39,0x74,0x71,0x6a, - 0x3c,0x80,0xcf,0x8,0xa1,0xd6,0x56,0x6d, - 0x1d,0xe4,0x23,0xba,0xa6,0xf9,0xc6,0x10, - 0xce,0x24,0xd,0x9e,0xb9,0xa4,0xd0,0x90, - 0xc0,0x37,0x89,0x43,0x2,0xe9,0x7a,0xf7, - 0x8a,0x2,0xe6,0x1e,0xf8,0x68,0x3f,0x42, - 0xc6,0x0,0x8b,0x76,0x1b,0x13,0xcb,0x1d, - 0x88,0xeb,0x16,0x96,0xb5,0xf0,0x2,0x78, - 0xcc,0xdd,0x58,0xb3,0x4d,0x5a,0x39,0xbe, - 0x7c,0x5,0xa6,0xfa,0xe5,0x89,0x5a,0xb7, - 0x27,0x56,0x39,0xa2,0x4b,0x43,0x2f,0x64, - 0x24,0xf3,0x6e,0x7c,0x81,0x13,0x20,0x99, - 0x4e,0x8d,0xeb,0xf8,0x2,0x7e,0xdf,0x27, - 0xfc,0xc0,0x2d,0x81,0xc0,0x63,0xa3,0xfe, - 0x71,0x3a,0x8b,0x1e,0xa6,0x33,0x38,0x4a, - 0x43,0xf1,0xd0,0x79,0x7f,0xec,0xa1,0xc0, - 0x18,0xad,0x2,0x25,0xd,0xf0,0x5f,0xb0, - 0xeb,0x53,0x51,0xbf,0x8c,0xab,0x1d,0xad, - 0x66,0xe5,0xf0,0xee,0x7f,0xd8,0x1e,0xe9, - 0x4a,0x67,0x54,0x11,0xaf,0x7c,0xb7,0x42, - 0x3b,0xb7,0x90,0xc8,0x50,0x6d,0xcb,0x7, - 0xc3,0xdf,0x90,0x21,0xb2,0x8c,0x66,0x71, - 0x5f,0x69,0xce,0x3a,0xdc,0x68,0x26,0x1a, - 0x47,0xa,0xfa,0xe9,0xfb,0x8b,0xf6,0x1a, - 0x93,0x40,0xe8,0x23,0x34,0xa6,0xb6,0x73, - 0x9e,0x3c,0x91,0x93,0x4c,0xc1,0x24,0x55, - 0x97,0xba,0x88,0x21,0xcb,0x3f,0xc2,0x66, - 0xa2,0xbd,0x6f,0x5c,0xc3,0x9c,0x63,0x18, - 0x33,0x72,0x1d,0x37,0xa0,0x5e,0x19,0xaf, - 0x97,0xf,0x9e,0x97,0x79,0xf8,0x63,0x94, - 0xf2,0xa7,0x97,0x1a,0xe4,0xbe,0x75,0xe5, - 0x6e,0x40,0x5a,0x22,0x53,0x9a,0x4e,0x45, - 0x2e,0xad,0xe1,0xe7,0xba,0x66,0x52,0x33, - 0xab,0xbc,0xc0,0xd1,0xa5,0xa5,0x17,0x53, - 0x4,0xe8,0x29,0x94,0x16,0x13,0x9b,0x83, - 0xe9,0x63,0x60,0x2e,0x57,0xc4,0x1a,0x37, - 0x17,0x35,0xee,0x44,0xd3,0xfb,0x3c,0x92, - 0x4d,0x8d,0x63,0xfc,0x35,0xdc,0x1b,0x5d, - 0xb6,0x5d,0x67,0x9e,0x8f,0xef,0x6e,0x81, - 0x36,0x5b,0x5e,0xac,0x2d,0x47,0x3c,0x60, - 0xfa,0xdb,0x35,0xa7,0x39,0x5d,0x47,0x83, - 0x26,0xb7,0x58,0x4d,0x9a,0xf9,0xe2,0x34, - 0x6a,0xe6,0x72,0x68,0x96,0x50,0xed,0x7c, - 0x36,0x77,0xaa,0x76,0x53,0x5e,0x4b,0xb5, - 0x8a,0xd3,0x95,0x54,0x6b,0x70,0x8b,0x56, - 0xad,0x91,0x2f,0x52,0xb5,0x46,0xae,0x78, - 0xd5,0xde,0xdd,0xa5,0x4e,0xd5,0xd6,0x8f, - 0xd7,0x52,0xad,0xe2,0x74,0x25,0xd5,0x1a, - 0xdc,0xa2,0x55,0x6b,0xe4,0x8b,0x54,0xad, - 0x91,0x2b,0x5e,0xb5,0x69,0x7a,0x77,0xe7, - 0xd4,0xed,0x4b,0x7d,0x2d,0xdd,0x2a,0x4e, - 0x57,0xd2,0xad,0xc1,0x2d,0x5a,0xb7,0x46, - 0xbe,0x48,0xdd,0x1a,0xb9,0x3a,0xe8,0x36, - 0xf3,0xe9,0xf6,0x8a,0xca,0xbd,0xb2,0x76, - 0x7b,0xab,0xb7,0xa7,0x7e,0x23,0x15,0x3c, - 0x3e,0xed,0x76,0xf5,0x69,0xbd,0x27,0xae, - 0xb0,0xb6,0xeb,0x8a,0xdb,0xc4,0xb8,0x1d, - 0xa1,0xf5,0x26,0x77,0xe1,0x56,0xc5,0x66, - 0x5d,0x9f,0xdb,0x10,0x1d,0x72,0x6b,0x8e, - 0x2d,0x56,0x47,0xc7,0xea,0xb0,0x5e,0xdd, - 0xa8,0xbd,0x3a,0x15,0x4c,0xe3,0xb0,0x29, - 0x6a,0x74,0xb3,0x79,0x9a,0x58,0xd3,0x5f, - 0x2b,0xc6,0x1d,0xf8,0x5d,0xbc,0x69,0x42, - 0x6f,0xaf,0x8a,0x8f,0x6a,0x2f,0xae,0xfd, - 0x80,0x17,0xda,0x6c,0xd5,0x74,0xe2,0xab, - 0x3b,0xbe,0xdc,0xe0,0x73,0x58,0x55,0x21, - 0xb1,0x67,0x22,0xb6,0x4b,0xd0,0x17,0x93, - 0xa,0xdd,0x54,0x13,0x9f,0xe4,0x95,0x6e, - 0x91,0x51,0x4c,0xc6,0xed,0x7d,0x49,0x32, - 0xa8,0x34,0xda,0xe9,0x13,0x2d,0x60,0x2c, - 0xae,0xee,0x9a,0x84,0x81,0xfe,0x61,0x54, - 0x1c,0xe,0x8c,0xc4,0x6e,0x29,0xdc,0x38, - 0xb2,0xaf,0x8f,0x6f,0x41,0xa8,0xb3,0xf1, - 0x54,0x6d,0x19,0x51,0xc,0x9b,0xeb,0x46, - 0x36,0x63,0x18,0x9,0xd,0x42,0x1d,0xc4, - 0x6d,0x6c,0xd9,0xbc,0x62,0xee,0xff,0x3a, - 0x5e,0xf0,0xc7,0x3e,0x54,0x11,0x4c,0x29, - 0x7f,0xe6,0x0,0xc5,0x68,0xbf,0xdb,0xef, - 0x79,0xbc,0xd9,0x9a,0x69,0x8f,0x5f,0x54, - 0xfa,0x3f,0x7f,0x62,0x2b,0x86,0x5f,0x86, - 0x90,0x98,0xc7,0x7e,0x6c,0x16,0x17,0xbc, - 0xce,0x3c,0x82,0x6f,0x7,0x66,0x86,0x64, - 0x26,0x6f,0x53,0x93,0x6d,0x2c,0x9e,0xfe, - 0x65,0x68,0xed,0x5,0xca,0x6a,0x94,0x6c, - 0xde,0x0,0x51,0xad,0x25,0x84,0x55,0x22, - 0xc3,0x15,0x2a,0x5c,0xab,0x47,0x56,0x52, - 0xac,0xb1,0xb0,0x5e,0xab,0xf6,0xd1,0x77, - 0xbe,0x49,0x2d,0x7b,0x43,0x27,0x76,0x3e, - 0xcd,0x56,0xfc,0x7d,0x16,0xac,0x59,0xb5, - 0x35,0x1,0x84,0x6b,0xba,0xe2,0xed,0x9b, - 0xb,0x27,0x55,0x6e,0x57,0xa2,0x51,0xb9, - 0xda,0x4c,0xf5,0x2a,0xdd,0x50,0xbd,0x5c, - 0xa7,0xf6,0x50,0xbe,0xec,0x52,0x58,0xfb, - 0x2a,0xaa,0x68,0xdf,0x8e,0xad,0x58,0xfa, - 0x5a,0x40,0x92,0x98,0x8d,0xa0,0x8e,0xfe, - 0xbd,0xa9,0x18,0x52,0xd7,0x64,0x71,0x8d, - 0xba,0x75,0x38,0x6a,0x4b,0xdf,0x9,0xd4, - 0xb5,0xb1,0xd6,0xef,0xa1,0x6a,0xde,0xc7, - 0xb0,0xa2,0x85,0x6b,0xe8,0xdd,0xd1,0x5, - 0x3f,0x9f,0x96,0x5,0x7b,0x53,0xc9,0x3a, - 0xc4,0xc3,0x9b,0xbb,0x3a,0x55,0x3c,0xa9, - 0x7d,0xaa,0x1a,0x8d,0xf2,0xad,0x73,0x93, - 0xb0,0xab,0x93,0xd,0x20,0x76,0x59,0xa0, - 0xfa,0x35,0xe3,0xf5,0x76,0x2b,0x82,0x12, - 0xea,0xd9,0x93,0xd8,0x31,0x78,0x20,0xe3, - 0xba,0x78,0xaf,0x77,0x93,0x3b,0x8f,0xae, - 0xeb,0xe7,0xbb,0xbd,0x0,0x52,0x5d,0x1, - 0x35,0xac,0x2d,0xcf,0xb9,0x3d,0x35,0x69, - 0xea,0xcb,0x37,0x7c,0xfe,0x6b,0x86,0xd2, - 0x77,0x86,0xf2,0x9b,0x6c,0x79,0x37,0x2d, - 0x3e,0xd0,0x3f,0x74,0x9a,0xe4,0xa4,0xd0, - 0xda,0x72,0xf,0x3f,0x15,0x15,0x74,0xe8, - 0x4c,0x76,0x4e,0x81,0xcc,0xd8,0x6e,0xbd, - 0x27,0x44,0x4d,0x81,0x81,0xf9,0xc5,0x27, - 0x5c,0xb5,0x21,0xcc,0xcb,0xd2,0x8d,0x64, - 0x3d,0xda,0x8a,0xed,0x44,0xbd,0xe9,0xac, - 0x36,0x48,0xfb,0x17,0x8a,0xc6,0x1d,0x77, - 0xe1,0xe6,0x90,0x9f,0x18,0x83,0x4e,0x3b, - 0x42,0x50,0x93,0x1a,0xd4,0x3b,0xf2,0x37, - 0xd6,0x57,0x35,0x6f,0xa0,0xba,0x2a,0xde, - 0x72,0x3,0x21,0x74,0xaa,0xaf,0xbc,0x80, - 0x1c,0x59,0x49,0x39,0x71,0xf1,0xb5,0x25, - 0x9b,0xb0,0x98,0x6d,0x29,0x46,0x37,0xbb, - 0x25,0x1f,0x40,0xf5,0x60,0xf0,0x8f,0xb7, - 0x55,0x86,0x6c,0x63,0xbb,0x52,0xd8,0xb3, - 0x78,0x5a,0xd8,0xd0,0x1b,0x9c,0x41,0xf5, - 0x6d,0x69,0x47,0xbd,0xed,0xb6,0xa6,0xaa, - 0x2d,0xdb,0x5a,0x3e,0x6a,0xe2,0x6b,0x69, - 0x4f,0xbd,0x3b,0xb5,0xb8,0x9a,0x3f,0xf9, - 0x9a,0x5c,0x92,0x98,0xad,0xce,0x3d,0xdb, - 0x1b,0xcc,0x97,0x2e,0x97,0x6c,0x5d,0xb2, - 0x7c,0xb4,0x32,0x49,0xac,0x19,0x9b,0xa9, - 0x29,0x72,0xde,0xd6,0xb7,0x81,0x5d,0x75, - 0xb7,0x5b,0xd8,0x51,0x75,0x15,0xeb,0x59, - 0x22,0x4f,0xfd,0xea,0xde,0xa7,0x91,0x5b, - 0xf7,0xa1,0x9e,0xaa,0x71,0x6b,0xdb,0x45, - 0xea,0x9f,0xe2,0xe4,0xc9,0x7b,0xb7,0xc3, - 0x23,0x5e,0x78,0xb1,0xfd,0x92,0x8d,0x93, - 0xae,0x12,0xfe,0x6f,0xb4,0xa8,0x62,0x3e, - 0xea,0xeb,0xcd,0x62,0x9a,0x63,0x76,0xe6, - 0x43,0xb,0x6e,0x5d,0x77,0xc,0xa3,0xaa, - 0x43,0xaa,0x9d,0xaa,0x96,0xb1,0x14,0x24, - 0x47,0xb1,0x84,0xea,0x29,0x60,0x72,0xdc, - 0xb7,0x8f,0xd3,0x15,0xb7,0x7b,0x38,0x5d, - 0x6f,0xd9,0xc1,0x65,0xb5,0x1d,0xc3,0x58, - 0xa8,0xe2,0xb2,0x83,0xe3,0x5e,0x18,0xf3, - 0xaa,0x93,0xf1,0x8,0x5,0x31,0x1f,0x14, - 0x1d,0x2a,0xea,0x20,0xd5,0xe4,0xe6,0x9b, - 0xe0,0xf3,0x86,0x69,0x51,0xd1,0xa,0x5b, - 0x6b,0xb4,0x2,0x50,0x5b,0x41,0x5d,0xc4, - 0xf3,0x22,0xbb,0xe7,0x63,0x55,0xdb,0x98, - 0x7b,0x9b,0x36,0x46,0x7,0x44,0xd8,0xe0, - 0xf3,0xbc,0x7c,0xd2,0xa7,0x92,0xf7,0xc5, - 0x76,0x74,0x6e,0x49,0xd5,0x1a,0xca,0x75, - 0xda,0x89,0x3e,0x56,0x83,0x33,0xeb,0x2e, - 0x60,0xcc,0x43,0xeb,0xaa,0x38,0xdc,0x33, - 0x95,0x3f,0x1,0xd3,0x87,0x59,0xfd,0x31, - 0x6e,0xc4,0x32,0x3,0xc4,0x61,0x6,0xd5, - 0xc1,0x7,0xd0,0xc4,0x27,0x7d,0xaa,0x90, - 0xf7,0x80,0x15,0x3f,0xa4,0x1,0x5e,0x1e, - 0x56,0xe7,0xbe,0x3c,0x49,0xf4,0x91,0xac, - 0x59,0xbf,0x18,0xc3,0x58,0x40,0xfb,0xb4, - 0x15,0x4a,0x1f,0x6d,0xd9,0xe2,0x6a,0x68, - 0x7c,0x63,0x25,0x7c,0x31,0xbe,0xe9,0x13, - 0xdf,0x48,0xc5,0xaf,0xea,0xab,0x91,0x9d, - 0xcd,0x34,0x86,0x44,0x29,0xea,0x69,0xf, - 0xf4,0x5d,0x18,0xf4,0xcd,0x85,0x38,0x70, - 0xf6,0x3f,0xe5,0xb1,0x57,0x47,0x11,0x22, - 0x1f,0x55,0x6d,0xaa,0x10,0x56,0x1f,0x47, - 0x11,0x23,0x55,0x46,0x43,0x2f,0x8f,0xab, - 0x61,0xd,0x36,0xdb,0xd0,0xa0,0x99,0x58, - 0x59,0x3b,0x36,0x86,0xb1,0xaf,0x2a,0xd5, - 0x7a,0x2,0xda,0xc7,0x52,0xa8,0x23,0x20, - 0x11,0x95,0x8d,0xb,0xe8,0xd5,0x35,0x91, - 0xc9,0x8c,0xfe,0x93,0xc2,0xc3,0xd0,0x46, - 0xc6,0x88,0xd6,0xf4,0x10,0xca,0x9d,0x25, - 0x5d,0x4e,0xf2,0x40,0xe9,0x4d,0xab,0x6b, - 0x90,0x1c,0x79,0xff,0xee,0xde,0xa7,0xaf, - 0x57,0x51,0x8f,0x61,0xf0,0xe1,0xe2,0xb0, - 0xab,0x4d,0xdb,0xd0,0x9f,0x79,0x33,0x38, - 0xa7,0x26,0xf6,0x9b,0xe4,0xc1,0x97,0x8e, - 0x1c,0xf1,0x1,0xd5,0x80,0x93,0xbf,0x7, - 0xef,0x75,0x47,0x6e,0x22,0x89,0x28,0xf6, - 0xd,0xf2,0xd6,0x1e,0x46,0xa3,0x5a,0xa2, - 0xfb,0x53,0x42,0x9d,0xf4,0x14,0xa9,0x66, - 0x7d,0xbd,0x85,0x4e,0x14,0x37,0x7,0x1c, - 0x25,0x38,0x73,0x8a,0x44,0xf3,0x15,0x54, - 0xc7,0x9d,0x83,0xe6,0x5a,0x1,0xc4,0x96, - 0x68,0x81,0xc0,0x83,0x6c,0x76,0x4d,0xf5, - 0xe4,0xc9,0x91,0x2c,0x1e,0xcb,0x75,0x54, - 0x55,0x3e,0xa4,0x4b,0xc6,0x41,0x56,0x7b, - 0x75,0x60,0x5a,0x38,0x31,0x66,0x1b,0xbe, - 0x77,0x65,0x9a,0x9e,0xca,0x27,0xcc,0x56, - 0xcc,0x43,0x7e,0xba,0xaa,0x79,0x12,0xd0, - 0x55,0xab,0xdf,0xfa,0x89,0x1f,0xd6,0x50, - 0xe6,0x95,0x9a,0x34,0x1d,0x67,0x39,0xbf, - 0xf6,0x62,0x3c,0xe6,0x93,0x88,0x77,0x7a, - 0x7e,0xce,0xf9,0x8d,0x96,0xc1,0xad,0x78, - 0xcb,0x67,0x3e,0xc8,0xd,0xaa,0x11,0x78, - 0xcb,0x87,0x7a,0xb4,0xa7,0x36,0xbe,0xca, - 0x17,0x7e,0x7e,0x25,0x1e,0xf9,0x75,0x37, - 0xeb,0x5f,0x83,0x92,0xc4,0x53,0x47,0xb6, - 0x8e,0xd4,0x83,0x45,0xf8,0x19,0x23,0xa5, - 0x39,0xf2,0x75,0x23,0xf1,0xc7,0xcf,0xf2, - 0x79,0xa4,0xc1,0xad,0x7c,0x41,0x69,0x30, - 0xe1,0xd,0x10,0xf3,0xe0,0x11,0x9a,0x9e, - 0x95,0xeb,0x65,0x71,0xda,0x1d,0x8e,0xc4, - 0x80,0xe9,0x7a,0xfe,0xb2,0xd,0x54,0x87, - 0x46,0x4e,0xc7,0x30,0xd9,0xe,0x8e,0x68, - 0x5a,0xc6,0xc7,0x4d,0x22,0x68,0x36,0x7a, - 0xc7,0x95,0x91,0x58,0x6f,0x58,0x10,0x55, - 0x1f,0xc8,0x65,0xb,0x87,0x17,0x58,0xee, - 0xea,0xf4,0x8b,0xeb,0xce,0x9a,0x38,0x72, - 0x9a,0xe8,0x23,0xa7,0xfa,0x6c,0xe2,0xbe, - 0x89,0x46,0x9b,0x1,0x6c,0xc0,0xa8,0x6e, - 0xd6,0x1c,0xac,0x94,0x75,0xe3,0xbf,0x8b, - 0xa1,0x8a,0xab,0x82,0x9,0x3b,0xba,0xbb, - 0xbb,0x63,0x9f,0x96,0xcf,0x87,0x23,0x1b, - 0xc9,0xd4,0xec,0xba,0xff,0xfe,0x73,0x82, - 0xe,0xa4,0x26,0xbe,0x10,0xe2,0x5a,0x7b, - 0x34,0x51,0xc0,0xb7,0xcc,0xfa,0xba,0x16, - 0x9f,0xf6,0x7d,0x53,0xda,0x36,0x9b,0x9e, - 0xf8,0x50,0xd3,0x9d,0x65,0xb1,0x17,0x61, - 0x3e,0x5d,0x7d,0x92,0xf7,0xc,0x2d,0xb7, - 0xba,0xd2,0xd6,0xf4,0x18,0xad,0x4d,0xa1, - 0x39,0x95,0xd8,0x6a,0x18,0xe5,0xf1,0x79, - 0x6b,0x50,0x1b,0x19,0x67,0x39,0xca,0x61, - 0x38,0x48,0xdb,0x91,0xda,0x7f,0x8d,0xec, - 0xc6,0x5d,0xaa,0xb7,0xbb,0xd3,0xe7,0xe2, - 0x9d,0xb5,0x52,0xda,0x5,0xb4,0x44,0xac, - 0xe8,0xe3,0x5e,0xac,0xdd,0x46,0xb2,0x9b, - 0xb1,0x25,0xe2,0xc5,0x7a,0xc2,0x2e,0x9b, - 0xc9,0x17,0xec,0x60,0x8c,0xe8,0x2e,0xd9, - 0xc6,0x6,0x71,0x17,0xe7,0x6a,0xbc,0x4, - 0x30,0xe2,0x41,0x48,0xdb,0xa0,0xfb,0xf2, - 0x2,0xaa,0x34,0x7,0x66,0x93,0xdc,0x14, - 0xfe,0xc0,0xa5,0xa5,0x76,0x48,0xdd,0x61, - 0xf9,0x73,0xb0,0x70,0x6c,0x43,0xf3,0x8e, - 0xe7,0xb9,0x1d,0x23,0x18,0x4b,0xf2,0xd0, - 0x89,0xda,0xd4,0x3,0x3f,0x3c,0x6d,0x63, - 0x43,0xf0,0x2,0x81,0xda,0x3a,0x99,0xf0, - 0x43,0xe2,0xee,0x96,0x7b,0xe4,0x9b,0x59, - 0xc9,0x7b,0xeb,0xd2,0xd,0xeb,0x66,0x4c, - 0xb2,0xd6,0xf0,0xcc,0xb5,0x11,0xd5,0x9c, - 0xbd,0x79,0x8d,0x11,0x87,0x6b,0xb4,0xb0, - 0xd9,0xd9,0xc9,0xf6,0x6d,0x1b,0xb0,0x5d, - 0xe6,0x74,0x6c,0x4a,0x5e,0xe1,0x87,0xe, - 0xb4,0x58,0x54,0x77,0x23,0x46,0xf,0xb6, - 0xb8,0x57,0xc,0xb1,0x26,0x2d,0x61,0x46, - 0xe5,0xb3,0x9a,0x32,0xa7,0xe3,0x1c,0x44, - 0xb4,0xc6,0xdf,0x59,0x83,0xec,0x56,0xab, - 0x65,0xb1,0xfd,0x52,0x1c,0xcd,0x1b,0x39, - 0xf6,0xd2,0x28,0x99,0xe6,0x31,0x17,0x8f, - 0x8c,0x5b,0x97,0xf4,0xd6,0x4a,0x37,0x3f, - 0xd8,0xce,0xf8,0xfd,0xd7,0xe1,0x3a,0xee, - 0xbd,0xb4,0xb2,0xdb,0x4e,0xaa,0x49,0xeb, - 0x7a,0x65,0x69,0xda,0xfd,0xca,0x92,0x5d, - 0x96,0x75,0x6d,0x89,0x20,0xb1,0xae,0x2e, - 0xb5,0x34,0x91,0xd7,0x52,0x3b,0x5e,0x58, - 0xb2,0x4b,0x88,0xbb,0x41,0x24,0x63,0x4, - 0xa3,0x2f,0xc1,0x47,0xdf,0x61,0x59,0x91, - 0xf7,0x8b,0x80,0x8a,0xf8,0xce,0xa8,0xe8, - 0x9c,0xdc,0x38,0xd8,0x30,0x64,0xef,0x92, - 0x5a,0xe7,0x4d,0xdb,0xdc,0x6a,0xc3,0x1, - 0xb6,0xae,0x6c,0x50,0x11,0xcc,0xd,0xf9, - 0xc,0xf7,0xde,0xb0,0x77,0x3,0xab,0x2d, - 0x8b,0x1f,0x63,0xc3,0xf,0xab,0x10,0x45, - 0x69,0xc4,0xaf,0x43,0x49,0x56,0x41,0xfc, - 0x1c,0x22,0x2e,0x48,0x89,0xa6,0x27,0xbb, - 0xbc,0x7b,0x9a,0xf7,0x23,0x23,0xf7,0xc1, - 0x89,0x1a,0xfc,0x2f,0x42,0x56,0x75,0x68, - 0xac,0x7b,0xf9,0xf8,0x1a,0x56,0x4c,0xe1, - 0x66,0xd9,0xd2,0x56,0xcc,0x4d,0x3f,0x1, - 0x69,0x3c,0xed,0x6a,0xe7,0x64,0x3,0x5c, - 0x6e,0x4a,0x6d,0x17,0xb4,0x61,0xa3,0x59, - 0x5d,0xe9,0x49,0xfe,0xd7,0x62,0x7d,0xa, - 0x78,0x23,0x68,0xab,0xa0,0x6c,0x6e,0x43, - 0xd,0x9c,0x43,0xd6,0x3,0x6e,0x88,0x83, - 0x8c,0xa3,0x97,0x23,0xbc,0x7f,0x35,0x9e, - 0x89,0xd3,0x22,0x20,0x9d,0x5f,0xbb,0x2, - 0xe9,0xb7,0x66,0x7a,0xfd,0x8,0xd3,0x53, - 0x31,0x83,0x40,0x4,0x8f,0x35,0xbf,0xe4, - 0xb,0xf5,0x64,0x7b,0x4d,0x8b,0x1e,0x3f, - 0x7b,0xdb,0x78,0xc7,0x87,0xee,0x59,0xc8, - 0x47,0x4b,0x8c,0xbc,0x17,0x38,0xe1,0x18, - 0x4f,0xf0,0xb,0x25,0x21,0x5a,0x24,0xec, - 0xd7,0x82,0xad,0x3f,0xda,0x78,0x3,0xc7, - 0xcf,0x8e,0x97,0x31,0xd2,0x8c,0x4f,0x58, - 0x87,0x7c,0xe8,0x1e,0xe4,0xb9,0x7a,0xcf, - 0x42,0x76,0xc8,0x64,0x7c,0x2b,0x5f,0xb2, - 0x10,0x89,0x77,0xf9,0xfb,0x9b,0x87,0xab, - 0x31,0x42,0x35,0x13,0xbb,0x41,0x13,0xbd, - 0x1b,0xf4,0x40,0x7d,0xf3,0xb7,0x14,0x17, - 0x96,0xab,0xdd,0x98,0xc2,0x3c,0x74,0xa2, - 0xe,0xb5,0x8f,0xd0,0x28,0xaf,0xc,0x56, - 0x6b,0xe3,0x47,0x47,0xa2,0xb6,0xba,0xfe, - 0xd6,0x67,0x67,0x5b,0xbe,0x99,0xef,0x58, - 0xa0,0x4d,0xcc,0x8d,0x77,0xc2,0xa2,0xf8, - 0xab,0x3a,0x56,0xd8,0xc3,0x26,0xd4,0x7e, - 0x9b,0xd6,0x6,0xff,0x1,0xdf,0x70,0x38, - 0x15,0xf1,0x88,0xa3,0xca,0x65,0x45,0x1, - 0xd4,0xf,0x7b,0xe2,0x54,0xc4,0xb5,0xfd, - 0x8a,0xf8,0xe6,0xb3,0xbc,0x92,0x61,0x8e, - 0x38,0xd,0xe,0x89,0x97,0xde,0xdd,0xce, - 0x73,0x23,0xd,0xf3,0x54,0xdf,0x8c,0x38, - 0x44,0xb3,0xe5,0x34,0x53,0xb9,0x50,0x84, - 0xb8,0x72,0x59,0xac,0x12,0x90,0x80,0x78, - 0x89,0xf,0x88,0x51,0x56,0x96,0xf9,0x4a, - 0x33,0x32,0x62,0xa6,0xb1,0x61,0x3a,0x4d, - 0xe6,0x38,0xd,0xb1,0xd3,0xdf,0x8c,0xfd, - 0xe1,0x65,0x99,0xdd,0xa9,0x5c,0x38,0x84, - 0x58,0xb9,0xcc,0xf2,0x69,0x8e,0x92,0x10, - 0x3f,0xf5,0x9,0xb1,0x5b,0x24,0x93,0x22, - 0xd3,0x95,0x40,0x21,0xb5,0xda,0x77,0x3b, - 0x74,0xa,0x62,0x26,0xbf,0xe0,0xaa,0x31, - 0xfa,0xd5,0xa2,0x29,0xbf,0x8d,0x31,0xa5, - 0x51,0xd9,0x26,0xc1,0xa8,0xd6,0xe1,0xb3, - 0xa1,0xfe,0x22,0xad,0xf8,0xd3,0x54,0x62, - 0xce,0xee,0x45,0x5d,0x15,0x8d,0xe5,0x48, - 0xd0,0xe3,0x1f,0xc2,0x95,0x36,0x67,0x46, - 0x8b,0xe3,0x9e,0xcd,0xdc,0x47,0x22,0xdf, - 0xd,0xea,0xe9,0xe2,0xd3,0xa7,0xef,0x43, - 0x87,0x56,0xe9,0x20,0x1a,0x2a,0xfb,0x28, - 0x7d,0x49,0x2f,0x56,0x39,0x88,0x62,0xfa, - 0x92,0x11,0x14,0x6c,0xd8,0x6b,0x58,0xcc, - 0x5e,0xee,0x8,0x8a,0x7c,0xc6,0x56,0xf4, - 0xd,0xd1,0x24,0x25,0x89,0xa6,0x93,0xf1, - 0x6d,0x3e,0x4f,0xa7,0x13,0xfe,0x27,0x23, - 0x16,0x93,0x76,0x79,0x1f,0x83,0x9a,0xc7, - 0x1b,0xd3,0x92,0x76,0x3e,0x9f,0x25,0x3a, - 0xaf,0x3e,0xf5,0x8e,0xb3,0x87,0xf6,0x45, - 0x25,0x7,0x36,0xd1,0x5e,0x7e,0x3e,0xe3, - 0xe2,0xf5,0xe0,0x25,0xd3,0x1e,0x9a,0xef, - 0xea,0x77,0x59,0xaf,0x96,0xcd,0x24,0xf1, - 0xdc,0x1,0x57,0xfc,0x8f,0x9b,0xb7,0x16, - 0xe1,0x9,0xb7,0xaf,0xca,0xd8,0x94,0xdf, - 0xa0,0xc,0x7d,0xf7,0x5b,0x95,0x51,0x3f, - 0x7e,0x83,0x32,0x9a,0x1b,0xe2,0xaa,0x90, - 0x97,0xfa,0x5b,0x14,0x32,0x35,0xa,0xb9, - 0x42,0x29,0xe3,0x27,0xb6,0x26,0x59,0x7e, - 0xf6,0x3e,0xfa,0x24,0xb6,0x27,0xec,0x25, - 0x9e,0xfc,0x74,0xac,0xea,0x15,0x2b,0xe0, - 0x50,0x9d,0x96,0x4f,0xaf,0xe3,0x2f,0xe, - 0x6e,0x6d,0xfc,0x5,0x7a,0x61,0x4f,0xf2, - 0x5a,0x1f,0x9f,0x8b,0xba,0x3e,0x8f,0xe4, - 0xda,0x7e,0x68,0x7e,0x18,0x89,0xf1,0x8d, - 0x7,0x17,0x50,0xef,0xa,0xf3,0x5f,0x6f, - 0xc0,0xcf,0x4c,0x6d,0xa7,0xa7,0xf5,0xf6, - 0xc6,0x1e,0x6b,0xfe,0x6e,0xbd,0xd9,0xef, - 0xe,0xa7,0xa2,0x9,0xed,0xc4,0xd6,0x0, - 0xe0,0x9b,0x1e,0x71,0xd0,0xc7,0x66,0xbf, - 0x1e,0x7c,0xd3,0x61,0x2c,0x30,0xa5,0x71, - 0x48,0x5,0xa4,0x88,0xdd,0x7,0x2e,0xba, - 0x9e,0x8b,0xdd,0xc0,0x9a,0x58,0x2f,0xbb, - 0x81,0x44,0xbd,0x5d,0xdf,0x7e,0xe2,0x86, - 0x2f,0x34,0xc5,0x86,0xf,0xf1,0xaa,0xb3, - 0x9a,0x6f,0x84,0x9e,0xd7,0x74,0xe,0x26, - 0x68,0x98,0x56,0x47,0xed,0x9f,0xb7,0x4b, - 0xb6,0xea,0xb9,0x98,0x2f,0xd4,0x89,0xd4, - 0xe6,0x63,0x55,0x33,0xb1,0x8e,0xeb,0x23, - 0x21,0x1,0x6b,0x45,0xc7,0x2,0xc8,0x6e, - 0xf1,0xb6,0x29,0xcc,0xd5,0x51,0xe4,0xda, - 0x67,0x22,0xde,0x80,0xe4,0x6c,0xf5,0x73, - 0xad,0x17,0xc7,0x33,0xae,0x50,0x8b,0x32, - 0x7,0xb7,0x23,0x83,0x98,0x7d,0xb2,0xe9, - 0xe4,0xca,0xec,0x42,0xae,0xd7,0x6c,0x6a, - 0x35,0xac,0x9b,0xb5,0x10,0x5f,0x89,0x3a, - 0x70,0xad,0xd2,0x59,0x40,0x92,0x23,0x1f, - 0x25,0x80,0xfa,0xe,0x73,0x88,0x73,0x4c, - 0x6a,0x1f,0xa2,0x3d,0xd3,0x64,0x53,0xf0, - 0xdd,0x3,0x99,0x2e,0xfa,0x8d,0x4d,0xc0, - 0xd7,0xb9,0x8a,0x82,0xff,0x8,0x9,0x54, - 0x83,0x8c,0x92,0x76,0x97,0x89,0x4a,0x9e, - 0xe4,0x60,0xc1,0x94,0x53,0x14,0x79,0x2, - 0x36,0xa1,0x28,0x82,0x39,0x60,0x31,0x27, - 0x29,0xd8,0x9c,0xa0,0xdd,0x33,0x46,0x4, - 0x7a,0x97,0x86,0x8f,0x4a,0x6d,0x7,0xe7, - 0xbf,0x91,0x64,0xb2,0xe7,0x5f,0x9c,0xb6, - 0xd,0x48,0xc5,0xb6,0x64,0xd,0xac,0x46, - 0x7d,0x20,0x89,0x65,0x88,0x94,0x96,0x56, - 0xfe,0xe,0x49,0xcb,0x91,0x34,0x1c,0xc3, - 0x8e,0x28,0x12,0x69,0x5b,0xa4,0xc1,0x61, - 0x72,0x4c,0x47,0x10,0x3c,0x1e,0xd6,0x6d, - 0xa0,0x29,0xfe,0xb,0x4e,0x3e,0x89,0x98, - 0x2e,0x3a,0x5d,0xfc,0x46,0x10,0x8c,0xe0, - 0x4e,0x7c,0xf3,0x85,0x22,0x5c,0xb2,0x31, - 0xc4,0xa0,0xe4,0x9f,0x30,0x29,0x77,0x1d, - 0xc8,0xb5,0x90,0x2a,0x40,0x54,0xe0,0x1b, - 0x26,0x16,0xdd,0x17,0x9e,0xf0,0x43,0x3, - 0xab,0xb8,0x73,0x74,0x89,0xc,0x56,0x68, - 0xe7,0xe4,0xbb,0x23,0x38,0x73,0xaa,0x2e, - 0x80,0x81,0xd0,0x94,0x3a,0x6a,0xde,0x9c, - 0xe4,0x50,0x3f,0x62,0xe,0xa2,0xe0,0xcc, - 0x2a,0x9d,0xce,0x2c,0x84,0x3,0xd9,0x4d, - 0xf9,0x9a,0xb7,0x53,0x65,0xe8,0xb4,0xb, - 0x98,0x28,0xf0,0xdf,0x49,0x52,0xbd,0x2e, - 0xb0,0x57,0xa,0x24,0xb9,0x76,0x3e,0x3e, - 0xdf,0xb,0xc8,0xc5,0x7c,0xd7,0x98,0xfe, - 0x3a,0x6a,0xcc,0xa7,0x32,0xae,0x29,0xf, - 0x74,0xd7,0x78,0xf2,0x3,0x99,0xf1,0xc3, - 0xb2,0x89,0xdc,0xb2,0x34,0x3f,0xe7,0xf2, - 0x7b,0x9e,0xbc,0x37,0x53,0xf8,0x40,0x22, - 0x31,0x72,0x9c,0xa6,0x8e,0xc7,0x27,0xcd, - 0xb5,0x1e,0x22,0x31,0x6f,0x52,0x73,0x32, - 0x33,0xe7,0xdd,0xa0,0xeb,0x98,0x42,0x8c, - 0xd4,0x8c,0xbb,0x74,0xd6,0x76,0x4a,0xae, - 0x92,0x72,0x2a,0x1b,0xe7,0x2b,0x77,0x78, - 0xd,0xae,0x6c,0x74,0x67,0x3c,0xd5,0x8c, - 0xc0,0x4c,0xc8,0x75,0x4a,0x6e,0x67,0xe2, - 0x1c,0xf,0xcd,0x72,0xc,0xe9,0x48,0x6f, - 0x91,0x6a,0x17,0x49,0xc5,0xe,0x1c,0xf1, - 0x47,0x5a,0xf9,0x1f,0x37,0xbe,0xac,0xa3, - 0x17,0xc7,0x21,0xcd,0x60,0xc6,0xf3,0x85, - 0xde,0x30,0x36,0x33,0x2a,0x18,0xd8,0xba, - 0x83,0xa7,0xe2,0x70,0xd9,0xa4,0xa2,0x7d, - 0xed,0x19,0x58,0xbb,0x8b,0x7c,0xf1,0xc5, - 0xf5,0xa2,0xb3,0x34,0x3c,0x47,0x56,0x57, - 0x54,0xdf,0xb9,0x13,0x76,0x60,0x2,0x6e, - 0xce,0xb2,0x6d,0x51,0x36,0x8a,0xb7,0x9a, - 0x67,0x4,0x2,0xc5,0x39,0x33,0xb6,0x45, - 0xd0,0xfd,0x5e,0xdd,0xea,0xe3,0xd3,0xc, - 0x1a,0x6a,0x70,0x17,0xa0,0xbb,0x3c,0xcc, - 0x47,0x71,0xd7,0xdb,0x65,0xd4,0x3,0x95, - 0x14,0xdb,0x66,0x2f,0xcc,0x88,0xdf,0x2d, - 0xb6,0xc4,0xa8,0xc,0x6a,0x93,0xcb,0x88, - 0x5b,0x2d,0xf6,0xba,0x8,0x72,0xb1,0x83, - 0x65,0xd6,0x85,0x6f,0x64,0x11,0xb4,0x7a, - 0x93,0xca,0x7c,0xc7,0x9c,0xef,0x55,0x11, - 0xe4,0x6a,0x7,0xca,0x78,0x4d,0x5e,0x6c, - 0x44,0x11,0xd4,0x72,0x83,0xc9,0x60,0x2d, - 0xf6,0x99,0x48,0xd6,0x87,0xcf,0x6,0xad, - 0xdc,0x48,0xa2,0x6a,0x2d,0xe2,0x13,0x9b, - 0x75,0x5e,0x11,0x94,0x29,0x7e,0x2c,0x6, - 0x2d,0x8f,0x1a,0xa2,0x9,0x26,0x9a,0x90, - 0x44,0x19,0x26,0xca,0x48,0xa2,0x29,0x26, - 0x9a,0x92,0x44,0x39,0x26,0xca,0x31,0xd1, - 0x57,0x3e,0x1d,0x55,0x15,0xc9,0xdf,0xe3, - 0x14,0x36,0x20,0xea,0xb0,0x77,0x46,0xca, - 0x5c,0xe7,0x99,0x9b,0x79,0xf8,0x40,0xd9, - 0xee,0x61,0xe1,0x34,0x31,0xe3,0x6c,0x43, - 0xb8,0xc2,0xc4,0x8d,0xcc,0x89,0x71,0x6e, - 0x48,0xf0,0xc5,0x60,0xfd,0x5,0x4d,0xa7, - 0xf8,0xba,0x49,0x51,0x80,0x6d,0x3,0x93, - 0xea,0x89,0xcb,0xaa,0xf,0x40,0xe0,0x8a, - 0x3f,0x71,0x61,0x55,0x92,0x21,0xed,0x13, - 0x97,0x56,0x25,0xcd,0xcd,0x5c,0xbc,0x44, - 0xb0,0x4f,0x87,0x13,0x85,0xbc,0x2a,0xd5, - 0x12,0xf8,0xa9,0x11,0xd8,0x91,0xff,0x8b, - 0xc9,0xfd,0xcb,0x93,0x25,0xf2,0x53,0x23, - 0xb2,0x8b,0x4c,0x6c,0x3b,0xf0,0x13,0x93, - 0x17,0xb4,0x1d,0x61,0x91,0xf0,0x19,0xab, - 0xbd,0xfd,0x61,0x91,0xc9,0x6d,0x8b,0xb, - 0xb9,0x99,0x41,0xf1,0x64,0xd3,0x27,0x36, - 0xc1,0x3f,0x56,0x4,0x6f,0x9d,0xe4,0x28, - 0xc3,0x95,0x13,0xa7,0x5a,0x99,0xc5,0xc9, - 0x90,0x4,0x20,0xd5,0x9,0x4d,0x92,0x42, - 0x30,0xdb,0x22,0x91,0x1,0x2f,0x35,0x1f, - 0x1d,0xfe,0xd2,0x45,0x96,0x22,0x32,0x9b, - 0x1b,0xdf,0x10,0xb8,0xe0,0xb8,0x9a,0x16, - 0x8d,0xdc,0x36,0x0,0x54,0xe6,0x4e,0x8, - 0xe0,0x85,0x55,0xd3,0xf0,0xa4,0x74,0xf2, - 0x58,0x70,0x77,0xcb,0xfe,0xc4,0xb5,0xe7, - 0x9f,0x53,0xf1,0x59,0xce,0xcc,0xcd,0xb4, - 0x89,0x4c,0xa3,0x92,0x32,0x91,0x94,0x12, - 0x29,0x53,0x99,0x42,0xe6,0xca,0x45,0x5a, - 0x66,0xa4,0x18,0x87,0x25,0x94,0xdf,0x24, - 0x23,0x8a,0x8a,0x24,0x5f,0x5e,0x3e,0x67, - 0x70,0xc5,0x22,0xf5,0xe5,0x93,0x9b,0x7a, - 0x17,0xfa,0x6c,0xad,0x2f,0xa3,0x3a,0xd3, - 0x71,0xf1,0x9e,0xf8,0xf0,0x31,0x28,0xc4, - 0xce,0x8e,0x23,0xbf,0x4c,0xf4,0xa,0xfc, - 0xa5,0xda,0xd6,0x67,0x47,0x76,0x99,0x68, - 0x6f,0x99,0x88,0x8d,0x4c,0xa5,0x67,0xb8, - 0xb5,0x49,0xeb,0x18,0xe6,0xe1,0xfa,0xb5, - 0x72,0x18,0xba,0x85,0xf4,0x4a,0xaf,0xf6, - 0xfe,0xa9,0x2b,0x43,0xb3,0x77,0x5,0xb3, - 0xb8,0x37,0xae,0xb4,0x24,0x62,0xb,0xd, - 0xe5,0x51,0xdf,0xec,0x2c,0xb8,0x9b,0xa1, - 0x6f,0x5e,0x5,0xc0,0x2e,0x46,0xe4,0x22, - 0x95,0x60,0x74,0x2f,0x9c,0xcd,0xa5,0x8, - 0xb3,0x6b,0xe1,0x5c,0xce,0x8e,0x85,0x33, - 0xab,0x6e,0x45,0xe5,0xb5,0x3b,0x95,0xa9, - 0x18,0xa8,0xcd,0x26,0xaf,0x4b,0x9f,0x7c, - 0x13,0x53,0x3a,0x39,0xb0,0xa9,0x69,0x7a, - 0x17,0x40,0xa,0xf5,0x2e,0x68,0x7d,0x4a, - 0x17,0x39,0x5a,0x8d,0xb7,0xf4,0xa4,0xba, - 0x5,0x35,0xd2,0xb5,0xc8,0xe0,0x52,0xb4, - 0x20,0x37,0x3a,0x9c,0xc8,0xe0,0xee,0x6f, - 0x4a,0x2,0xa8,0x20,0xb8,0x89,0x8b,0xf6, - 0xb8,0xc4,0x74,0x4b,0x3c,0x23,0x79,0x91, - 0x8b,0xa7,0x51,0x6a,0xa7,0x27,0x17,0x62, - 0x61,0xa5,0xa7,0x91,0x6a,0x81,0x66,0x27, - 0x4d,0x54,0xd2,0xc4,0x4e,0xca,0x54,0x52, - 0x66,0x27,0x4d,0x55,0xd2,0xd4,0x4e,0xca, - 0x55,0x52,0x6e,0x27,0xf1,0x17,0x1b,0x54, - 0x2a,0x5a,0xaf,0xf0,0x45,0x90,0xe,0xee, - 0x87,0xbf,0xa7,0x38,0xc0,0x32,0x4e,0x9c, - 0x5c,0x60,0xcc,0x7e,0x9c,0x96,0xe9,0xb4, - 0xd4,0x4a,0x9a,0x36,0x49,0x44,0xbe,0x5c, - 0x27,0x66,0x56,0x92,0xe8,0x98,0x2a,0xd5, - 0x9a,0x7d,0xbd,0x34,0x22,0xd8,0x4b,0x45, - 0x74,0xd,0x21,0x31,0xb2,0xa5,0x38,0x9b, - 0x29,0x27,0x7e,0x84,0xc1,0x56,0xc2,0x4b, - 0xa3,0x5,0xcd,0xc0,0x97,0x9f,0xc8,0x9e, - 0xe1,0xec,0xa9,0x3b,0x77,0x6a,0x67,0x9e, - 0x1a,0x99,0x7d,0x85,0xa7,0x54,0xe9,0x39, - 0x66,0x90,0xb9,0xb3,0x67,0x76,0x66,0xd0, - 0x20,0x2a,0x3f,0x6e,0x16,0x94,0xdf,0x6a, - 0xb1,0x73,0xdb,0x62,0xc6,0xb6,0x81,0x79, - 0x27,0xdd,0xc8,0x96,0xc2,0x6c,0xae,0xf6, - 0xd2,0x2f,0x91,0xd8,0x2d,0x76,0x6e,0x5b, - 0x4c,0x30,0xf0,0xe7,0x27,0xb2,0x67,0x30, - 0x7b,0xea,0xcb,0x9d,0xda,0x99,0xa7,0x28, - 0xb3,0xbf,0xf0,0x94,0x2a,0x3d,0x87,0xc, - 0x32,0x5f,0xf6,0xcc,0xce,0xc,0x5b,0x8c, - 0xe7,0xa7,0xdb,0x4b,0xe5,0xb7,0x5a,0xec, - 0xe4,0x6c,0x31,0x91,0xe8,0x6d,0x17,0x41, - 0xe1,0x53,0xbc,0x20,0xf0,0xa8,0x56,0xa4, - 0x7b,0xb5,0x27,0x28,0x3c,0xea,0x11,0xe9, - 0x7e,0xd,0x30,0x92,0xca,0x33,0x90,0x88, - 0xe4,0xc0,0x80,0x21,0x68,0xfc,0x63,0x82, - 0x20,0xf1,0xda,0xbd,0xa0,0x8,0x18,0xb7, - 0xa0,0xf1,0xda,0xaf,0xa0,0x8,0x19,0x29, - 0x23,0x5a,0xb4,0x22,0x93,0x26,0xb7,0x68, - 0x65,0x76,0x9b,0xd5,0xa2,0x15,0xda,0x69, - 0x3b,0x8b,0x56,0x6a,0x97,0x85,0x2c,0x5a, - 0xb1,0xdd,0x56,0xb0,0x68,0xe5,0x76,0xf5, - 0xf5,0x5,0x12,0xdc,0xd5,0xa3,0x8f,0xad, - 0xe4,0x84,0x73,0x38,0xb6,0x72,0xbb,0x86, - 0xff,0x63,0x2b,0xb5,0x63,0x84,0x3f,0xb6, - 0x32,0xd3,0xa3,0xf8,0xb1,0x95,0xd8,0x35, - 0x4e,0x1f,0x5b,0x79,0xe9,0xb1,0xf8,0x88, - 0xa4,0x25,0xc7,0x5b,0xbe,0x6c,0x24,0x90, - 0x7f,0x9e,0x90,0x5e,0x70,0x78,0x3f,0x9c, - 0x3a,0xc1,0xa7,0xd6,0x71,0x62,0x86,0x82, - 0x6b,0xe0,0xb4,0x69,0x9b,0x46,0xe4,0xcc, - 0x9b,0x54,0x53,0x9a,0xfd,0x4b,0x5b,0x55, - 0xc2,0x99,0xeb,0x14,0xbb,0xc1,0xf6,0x2f, - 0xad,0x28,0x2e,0x77,0x8e,0x72,0x13,0xe2, - 0xbe,0xb4,0xf2,0x3a,0x1c,0x3a,0xe6,0x40, - 0x30,0xc8,0xc,0x6,0xa9,0x27,0x7f,0x6a, - 0x67,0x9f,0x9a,0xd9,0xbd,0x15,0x48,0xa9, - 0x1a,0xe4,0x6,0x8b,0xcc,0xc3,0xc0,0xd2, - 0xfe,0x19,0x68,0xdf,0x74,0xcc,0xc6,0xad, - 0xc0,0xc4,0xc8,0x98,0xa2,0x8c,0x4e,0xdd, - 0x3b,0x7,0x91,0xfd,0x19,0x68,0x9f,0x72, - 0xce,0x26,0x7,0x82,0x41,0x86,0x18,0xa4, - 0xde,0xfc,0xa9,0x9d,0x7d,0x8a,0xb3,0x7, - 0x2a,0x90,0x52,0x35,0xc8,0x11,0x8b,0xcc, - 0xcb,0xc0,0xd2,0xfe,0xc9,0xad,0x7d,0x91, - 0xea,0x57,0xb1,0x20,0xf1,0xaa,0x50,0x50, - 0xf8,0x74,0x24,0x8,0xfc,0x5a,0x10,0x24, - 0x3e,0x29,0x19,0x41,0xe5,0xb3,0x61,0x91, - 0x1e,0x32,0x55,0x41,0x14,0x30,0x46,0x41, - 0xe3,0xb7,0x37,0x41,0x12,0xb2,0x29,0x41, - 0xe4,0xb7,0x1a,0x46,0xb2,0x0,0x32,0x91, - 0x16,0xb0,0x0,0x42,0xb9,0x3b,0xf9,0x2, - 0x48,0xe5,0xec,0xc8,0xb,0x20,0x96,0xab, - 0xb7,0x2e,0x80,0x5c,0xee,0xe,0xb9,0x0, - 0x82,0xb9,0x7a,0xdd,0x11,0x48,0x46,0x8c, - 0xab,0x47,0x20,0x97,0x6b,0xe0,0x3c,0x2, - 0xa9,0x1c,0x43,0xe3,0x11,0xc8,0x44,0x8f, - 0x7e,0x47,0x20,0x91,0x6b,0x78,0x3b,0x2, - 0x79,0xc8,0x11,0x4c,0x44,0xb0,0xda,0xec, - 0xb6,0x3b,0xb1,0x47,0x72,0x71,0x87,0x82, - 0x6d,0x68,0x10,0xa4,0xba,0xe2,0xd2,0xb6, - 0x51,0xb0,0xe4,0x8b,0x3d,0xea,0x49,0xbe, - 0xc1,0xf,0x3,0x56,0xa3,0x2f,0x5f,0xcd, - 0xc,0x13,0x22,0xc3,0x44,0x65,0x18,0xdf, - 0xd9,0xf4,0x19,0x41,0xaf,0xa8,0x67,0x36, - 0xf5,0xd4,0xa6,0x9e,0xe8,0xea,0x8c,0x33, - 0x9b,0x3e,0x7,0xf4,0xa9,0xdd,0x54,0x8c, - 0x62,0x76,0xc1,0x61,0xbe,0x70,0xf2,0x69, - 0xb4,0x3e,0x15,0xf5,0x7a,0x79,0x1,0xf1, - 0x71,0xe5,0x17,0x93,0x4e,0xc6,0x9a,0xbd, - 0x58,0x71,0x74,0x11,0xdd,0x57,0x5,0xe4, - 0xc1,0xd8,0xba,0x59,0x92,0x50,0x34,0xd5, - 0x1,0x51,0xa9,0x6f,0x6,0x25,0x2c,0xb4, - 0xd,0xd5,0x6b,0x10,0x2d,0x76,0x75,0x89, - 0x48,0xe6,0x24,0x89,0x51,0xa0,0xfc,0x4, - 0xe9,0xea,0x27,0xd6,0x1b,0xd0,0x35,0x3a, - 0x23,0xf5,0xb8,0xc1,0xc9,0xc6,0x9,0x30, - 0x46,0xc1,0xb7,0xa0,0xc,0x1a,0x93,0xa4, - 0x7e,0x44,0x4,0x68,0x2f,0x48,0x6,0xf, - 0x96,0xf7,0xed,0x70,0xf4,0x61,0x8b,0x4a, - 0xdc,0x94,0x6b,0x69,0xac,0x3,0x6f,0x22, - 0x4d,0x6d,0xaa,0x59,0xd7,0xf7,0x2d,0xc2, - 0x36,0xa4,0x8c,0x3c,0x87,0x43,0xc5,0x99, - 0xf1,0x65,0x7a,0xde,0x32,0x5d,0x8a,0xfd, - 0x38,0x33,0x67,0x93,0xe2,0xcb,0x2e,0x14, - 0x72,0x7a,0x3a,0xec,0x9e,0x1f,0x9f,0x2c, - 0xe,0x30,0xd1,0x62,0x52,0xef,0xbe,0x56, - 0x87,0x25,0xd7,0xba,0x11,0x67,0xb9,0x49, - 0xb0,0xb2,0x3c,0xf3,0xf8,0x7d,0x54,0x96, - 0x26,0xc1,0xd6,0x63,0xb1,0x17,0x46,0xf1, - 0xab,0x95,0xa7,0x4d,0xb1,0x32,0x9,0x4c, - 0xc8,0x8e,0xd6,0x6c,0xd1,0x29,0xf4,0xc8, - 0x77,0x92,0x56,0x51,0x8a,0xd8,0xcd,0x17, - 0x2a,0x96,0x33,0x3c,0x91,0xdb,0x46,0x91, - 0xa6,0xd2,0x15,0x2b,0x7d,0xe,0x41,0x8c, - 0x90,0xf2,0x64,0x6c,0x73,0x49,0x1d,0x44, - 0x43,0x6c,0x6,0x51,0x45,0x3f,0x62,0x5f, - 0x6f,0x86,0xcd,0x57,0x98,0xf1,0xe6,0xc6, - 0xee,0xc9,0xcd,0xe9,0x85,0xd8,0x62,0x9a, - 0x1c,0x1d,0xb,0x52,0xa7,0x1e,0xa2,0x8b, - 0x91,0xf4,0xdd,0xa,0x11,0x67,0x25,0x62, - 0x4b,0xe0,0xc4,0xdd,0xd8,0xeb,0xe3,0x15, - 0xb1,0x25,0x28,0xfa,0x6e,0x85,0xa8,0x43, - 0x19,0xb1,0x65,0x48,0xf2,0x6e,0x45,0x48, - 0x7,0x10,0x5b,0x42,0x2d,0xe3,0x3f,0x76, - 0x93,0xe1,0xf0,0xb9,0x83,0x4,0x87,0xcf, - 0xdd,0xd8,0x2f,0x6a,0x7e,0x19,0x20,0x96, - 0xbf,0xa0,0xee,0xd8,0xd0,0xe2,0x44,0x4a, - 0x74,0x33,0x8b,0x61,0xa1,0x9b,0x4,0xfc, - 0xba,0x77,0xb4,0x0,0x8c,0x58,0x9e,0x8b, - 0xe9,0x56,0xc8,0xe6,0xf9,0x54,0x95,0x9e, - 0x52,0x88,0x23,0x4a,0xad,0x7a,0xf9,0x81, - 0x8d,0x40,0x5,0xd5,0x61,0xd1,0xdc,0xa1, - 0xbf,0x8,0xe,0xe8,0xad,0x68,0x82,0xcf, - 0xa1,0x3a,0x56,0xbe,0x8e,0xba,0xde,0x3e, - 0x55,0x87,0xb5,0xed,0x54,0xc1,0x51,0x70, - 0x3b,0x73,0x22,0xe,0xf4,0x23,0x3a,0xb2, - 0xa6,0xc9,0xd8,0x24,0x9b,0xd3,0xec,0xe6, - 0x26,0x1d,0x3f,0x34,0x42,0x54,0xfa,0x75, - 0xbc,0x78,0xc4,0xa3,0x3a,0xfb,0xbd,0x15, - 0x89,0x7e,0x4e,0x3b,0x30,0xbc,0xb7,0x1c, - 0x70,0x7,0x60,0xdf,0x8d,0xa1,0xbd,0x4b, - 0x59,0xae,0x31,0xde,0x57,0x1a,0x1c,0xdf, - 0x3b,0x95,0x45,0xe,0xf4,0x9e,0x92,0xda, - 0x41,0xbe,0x4b,0x31,0xc4,0x68,0xef,0x29, - 0x3,0x8d,0xf4,0x5d,0x8a,0xa1,0x87,0x7c, - 0x4f,0x49,0x70,0xb8,0xef,0x52,0x10,0x39, - 0xee,0x7b,0xca,0x1,0x63,0x7e,0x97,0x62, - 0xa8,0xc1,0xdf,0x2b,0x8d,0x1e,0xf8,0xbb, - 0xc9,0x62,0x79,0x0,0x4f,0x19,0x60,0xf4, - 0xef,0x52,0x8,0xe5,0x6,0x7c,0x3d,0xa0, - 0x75,0x1,0x9d,0xda,0x9f,0xf0,0x5,0x3e, - 0x59,0x1a,0x3f,0xd0,0x49,0x14,0xee,0x10, - 0x16,0x1d,0x3a,0x19,0x88,0x10,0x15,0x53, - 0x1a,0x20,0x37,0x18,0xb5,0x23,0x9c,0xc5, - 0x27,0x19,0xa7,0x88,0x44,0x8f,0xbd,0x88, - 0x84,0x8f,0xbc,0x80,0x26,0xa7,0xd8,0x60, - 0x92,0x39,0xc5,0x66,0x9e,0x1b,0xb5,0xb1, - 0xf9,0xc8,0xca,0xe8,0xc0,0x5,0x76,0xec, - 0xc4,0x46,0x6d,0x9a,0x4,0xe9,0xec,0xf9, - 0x28,0x4e,0xf6,0xd6,0xfc,0x6e,0x6e,0x51, - 0xd7,0xcd,0xa5,0x7d,0xf0,0xfd,0xbe,0x80, - 0xf7,0x48,0x1e,0x46,0x9b,0xdd,0xaf,0x9e, - 0x64,0x67,0x8a,0x51,0x16,0xc7,0xd,0xc8, - 0xc2,0x30,0x34,0x68,0x97,0x86,0xd3,0xdd, - 0x49,0xb8,0x3c,0xb1,0x92,0xa4,0xca,0xc3, - 0xab,0x49,0xbb,0x3c,0x23,0xdd,0x9d,0x24, - 0xf6,0xf2,0x44,0x31,0xc6,0x93,0xee,0x4, - 0x99,0x90,0x9e,0x78,0xf9,0x1d,0x92,0x89, - 0x36,0xac,0xca,0xb,0xf5,0x74,0x11,0x41, - 0x7,0x8e,0xac,0xab,0xe7,0x16,0x29,0xa2, - 0xd4,0x62,0xe7,0xe0,0x36,0x89,0x2e,0x37, - 0xbb,0x10,0x2f,0xed,0x50,0x84,0xcb,0xf5, - 0x61,0x59,0x57,0x17,0x2b,0xee,0x17,0x45, - 0xbb,0xe7,0x7,0x4d,0x4d,0x4a,0x7,0x5f, - 0x7c,0x79,0x0,0x85,0x7b,0xb7,0xa0,0x0, - 0x57,0xb4,0x77,0xb7,0x78,0xe0,0xa,0x41, - 0x30,0x97,0xef,0xf9,0x71,0x77,0x9,0xd4, - 0x45,0x82,0x4e,0xe5,0xf8,0x24,0x6e,0x8b, - 0x41,0x77,0x9,0x22,0x72,0x3e,0x44,0xea, - 0x54,0xdc,0x33,0x16,0xd7,0xf5,0x40,0x34, - 0x31,0xe2,0xc2,0xde,0x7a,0x4b,0xd0,0x59, - 0x97,0x0,0xdd,0xb7,0xe8,0xd5,0xc5,0xcb, - 0x4d,0xc4,0xdd,0xcb,0xe3,0x26,0x7c,0xfd, - 0x92,0xd1,0x78,0x6e,0x60,0x96,0x3c,0x3d, - 0xe2,0xd6,0x60,0x43,0x15,0x7d,0x71,0x90, - 0xe5,0x8,0xde,0x1d,0x64,0x34,0x81,0xeb, - 0x83,0x3c,0x96,0x40,0xe8,0x6,0xa1,0xa6, - 0x89,0xb9,0x44,0xd8,0xd0,0x46,0xdd,0x23, - 0x64,0xd4,0x81,0xab,0x84,0xad,0x5e,0xe2, - 0x6e,0x13,0xea,0xd6,0x70,0x5d,0x28,0x94, - 0x7,0xfc,0x36,0x31,0x7,0xd0,0x19,0x55, - 0xe4,0x19,0xf4,0xe3,0xa6,0xdb,0x31,0x74, - 0xc9,0xb9,0xcf,0x49,0xf4,0xa6,0xa4,0x9e, - 0x87,0xd1,0x45,0x87,0x8,0x9e,0x47,0xd7, - 0x54,0x81,0x23,0xe9,0x9b,0xe8,0x53,0xe9, - 0x9b,0xd8,0x83,0xe9,0x8c,0x32,0xe6,0x6c, - 0xba,0x68,0xe5,0xb8,0xe3,0xe9,0x8a,0x63, - 0xc7,0x13,0xea,0xc7,0x8d,0xeb,0x90,0xfa, - 0x71,0xe3,0x3d,0xa7,0x7e,0xdc,0xf8,0x8e, - 0xaa,0x1f,0x37,0x9e,0xd3,0xea,0xc7,0x8d, - 0xf7,0xc0,0xfa,0x71,0x13,0x7b,0x66,0x7d, - 0xf3,0xa6,0x63,0xeb,0x6a,0xcc,0xeb,0x73, - 0x72,0x9d,0xf7,0xce,0xbe,0x87,0xd7,0xf9, - 0x70,0xf6,0xd6,0xf3,0xeb,0x8c,0xc7,0x1b, - 0x8f,0xb0,0x73,0xe1,0xdf,0x70,0x8a,0x7d, - 0xd3,0xeb,0x20,0xbb,0xd2,0x78,0x97,0xb3, - 0xec,0xad,0xa6,0xe3,0x8f,0xb3,0x73,0xd, - 0xf7,0x3a,0xd1,0xbe,0xe9,0x79,0xa8,0x7d, - 0xd3,0xfb,0x5c,0x3b,0xd2,0x48,0xfc,0xd1, - 0x76,0x53,0x2b,0xb1,0xa7,0xdb,0x41,0xdf, - 0xeb,0x75,0xc0,0xbd,0xed,0x77,0xbd,0xce, - 0xb8,0x6f,0x7a,0x1d,0x73,0x3f,0x6e,0x3a, - 0x9d,0x74,0xdf,0xf4,0x38,0xec,0x8e,0x9a, - 0x21,0xe6,0xbc,0xbb,0xd9,0x0,0xe1,0x23, - 0xef,0x76,0xa7,0x8c,0x3a,0xf5,0xbe,0xe9, - 0x74,0xf0,0x5d,0xf8,0x7b,0xff,0xd9,0x77, - 0x31,0xe0,0x3b,0x8f,0xbf,0x8b,0x41,0xdf, - 0x79,0x2,0x5e,0x8c,0xf9,0xce,0x43,0xf0, - 0x62,0xcc,0x77,0x9e,0x83,0x17,0x83,0xbe, - 0xf3,0x28,0xbc,0x18,0xf3,0x9d,0xa7,0xe1, - 0x59,0xaa,0xfb,0x40,0xfc,0xd1,0x7d,0x26, - 0xfe,0x18,0x38,0x16,0x7f,0xf4,0x9f,0x8c, - 0x3f,0x7a,0xf,0xc7,0x1f,0x3,0xe7,0xe3, - 0x8f,0xde,0x23,0xf2,0xc7,0xe0,0x29,0x79, - 0x20,0x57,0xc7,0x83,0xf2,0x40,0xec,0xde, - 0x67,0xe5,0x81,0x6a,0x7a,0x1e,0x97,0x7, - 0xda,0xeb,0x75,0x62,0x1e,0xe8,0xb7,0xf7, - 0xa1,0x79,0xd0,0x6,0xbd,0xce,0xcd,0xe3, - 0x56,0xea,0x75,0x74,0x1e,0x36,0x63,0xb7, - 0xd3,0xf3,0xb0,0x19,0xfb,0x1e,0xa0,0x87, - 0xcd,0xd8,0xef,0xc,0x3d,0x6c,0xc6,0x3e, - 0xc7,0xe8,0x61,0x33,0xf6,0x3d,0x49,0xf, - 0x9b,0xb1,0xcf,0x61,0x7a,0xa3,0x19,0xfb, - 0x9c,0xa7,0xf7,0x34,0xa3,0x4e,0xf,0x9f, - 0xaa,0xf,0xb4,0x86,0xa6,0x9,0x9d,0xad, - 0xf,0xa9,0x54,0x13,0x85,0x4e,0xd8,0x7, - 0xd5,0x22,0x8e,0xa5,0x7b,0xc7,0x21,0x4d, - 0x11,0x73,0xd4,0x3e,0x38,0xa4,0x68,0xaa, - 0xf0,0x81,0xfb,0xf0,0xd8,0xa0,0xc9,0xc2, - 0xc7,0xee,0x23,0x6c,0x5c,0x9c,0x52,0x87, - 0x7a,0x70,0x1c,0xbe,0x87,0x8a,0xf0,0x9d, - 0xbf,0x87,0x9a,0xf0,0x1c,0xc1,0x87,0xaa, - 0x70,0x9f,0xc2,0x87,0xba,0xf0,0x1d,0xc4, - 0x87,0xca,0x70,0x9f,0xc5,0x37,0xb4,0xe1, - 0x3e,0x8e,0xf,0xd5,0x41,0x9e,0xc8,0x87, - 0xca,0x70,0x1f,0xca,0x87,0xaa,0x70,0x9e, - 0xcb,0x87,0x8a,0x70,0x1d,0xcd,0x87,0x6a, - 0x70,0x9f,0xce,0x87,0x4a,0x70,0x1d,0xd0, - 0x37,0x54,0xe0,0x38,0xa3,0x2f,0xe4,0x77, - 0x1c,0xd3,0x17,0xa2,0xfb,0x4e,0xea,0xb, - 0xa9,0x3d,0x87,0xf5,0x85,0xc0,0xee,0xf3, - 0xfa,0x42,0x56,0xdf,0x91,0x7d,0x21,0xa6, - 0xe7,0xd4,0x3e,0xac,0x7c,0xd7,0x83,0xfb, - 0x50,0xb8,0xfe,0x67,0xf7,0xa1,0x6,0xfa, - 0x1e,0xdf,0x87,0x5a,0xea,0x77,0x82,0x1f, - 0x2a,0xb2,0xff,0x21,0x7e,0xa8,0xed,0x7e, - 0xe7,0xf8,0x51,0x7b,0x74,0x3c,0xca,0x8f, - 0xda,0xa3,0xf7,0x69,0x7e,0xd4,0x1e,0x3d, - 0xf,0xf4,0xa3,0xf6,0xe8,0x75,0xa6,0x1f, - 0xb5,0x47,0xef,0x63,0xfd,0xa8,0x3d,0x7a, - 0x9d,0xec,0xf7,0xb5,0x87,0x26,0x88,0x38, - 0xdf,0x1f,0x52,0xaa,0x26,0xa,0x9e,0xf2, - 0xf,0xea,0x45,0x53,0x5,0xcf,0xfa,0xfb, - 0x2d,0x5f,0x93,0x44,0x9d,0xf8,0xf,0x9b, - 0xb0,0x26,0x8b,0x38,0xf7,0x1f,0x61,0x89, - 0x9a,0x2e,0xe2,0xf4,0x3f,0x92,0xd2,0x71, - 0x1,0x0,0x89,0xe9,0xbb,0x3,0x80,0xe4, - 0xf4,0x5c,0x3,0x40,0x82,0xba,0x6f,0x2, - 0x20,0x49,0x7d,0x97,0x1,0x90,0xa8,0xee, - 0xfb,0x0,0x48,0x56,0xf2,0x4a,0x0,0x92, - 0xd4,0x7d,0x2b,0x0,0xc9,0xe9,0xbc,0x18, - 0x80,0xa4,0x74,0xdd,0xd,0x40,0x32,0xba, - 0xaf,0x7,0x20,0x9,0xc9,0xb1,0x51,0x9e, - 0xf,0xdd,0x44,0x9e,0xaa,0x56,0xdb,0x38, - 0xc1,0x83,0xd5,0xed,0xee,0x8d,0xef,0x6c, - 0xb5,0x27,0x76,0xb4,0x4,0xc4,0x36,0x65, - 0x4,0xb2,0xb6,0x29,0xc3,0xc8,0xda,0xa6, - 0xf4,0x23,0x6b,0x9b,0xa8,0x78,0x9c,0x9b, - 0xce,0x21,0x39,0x37,0x11,0x51,0x39,0x37, - 0xc1,0xc0,0x9c,0x9b,0x88,0xd8,0x9c,0x9b, - 0xe,0xe1,0x39,0x37,0x9d,0x22,0x74,0x6e, - 0x82,0x41,0x3a,0x37,0x1d,0xe3,0x74,0x6e, - 0xca,0x8,0x64,0x8d,0x17,0x1b,0x46,0xd6, - 0x18,0x55,0x24,0xb2,0xb6,0x29,0xbb,0x21, - 0x6b,0x92,0x73,0x1f,0x64,0xad,0x29,0xa9, - 0x27,0xb2,0x26,0x3a,0x44,0x10,0x59,0xd3, - 0x54,0x7e,0x64,0x8d,0x5b,0x50,0x1c,0xb2, - 0xd6,0x52,0x86,0x90,0xb5,0x4d,0x19,0x85, - 0xac,0x89,0x56,0x8e,0x43,0xd6,0x14,0xc7, - 0x8e,0xc8,0xda,0xa6,0x74,0x21,0x6b,0x9b, - 0xd2,0x8b,0xac,0x6d,0x4a,0x1f,0xb2,0xb6, - 0x29,0x3d,0xc8,0x1a,0x4b,0xf4,0x21,0x6b, - 0x2c,0x39,0xe,0x59,0x6b,0x46,0xb6,0x7e, - 0xc8,0x9a,0x1a,0xf3,0xfa,0x20,0x6b,0xbc, - 0x77,0xf6,0x45,0xd6,0xf8,0x70,0xf6,0x56, - 0x64,0x8d,0xf1,0x78,0x23,0xb2,0xc6,0x85, - 0xef,0x8f,0xac,0x35,0x9a,0xef,0x86,0xac, - 0x29,0x8d,0x77,0x41,0xd6,0x5a,0x4d,0xc7, - 0x23,0x6b,0x5c,0xc3,0x7d,0x90,0x35,0x21, - 0x55,0xf,0x64,0xcd,0xd0,0x46,0x17,0x64, - 0xd,0x69,0x24,0x1e,0x59,0x33,0xb5,0x12, - 0x8b,0xac,0x81,0xbe,0xd7,0xb,0x59,0x6b, - 0xfb,0x5d,0x1f,0x64,0xcd,0xd2,0x6f,0x1c, - 0xb2,0xc6,0xb,0x8d,0x47,0xd6,0x8c,0xc6, - 0x88,0x43,0xd6,0x50,0x33,0xc4,0x20,0x6b, - 0x66,0x3,0x84,0x91,0x35,0xbb,0x53,0xc6, - 0x20,0x6b,0x96,0xca,0xfc,0xc8,0x9a,0xf0, - 0xf7,0x7e,0x64,0x4d,0xc,0xf8,0x4e,0x64, - 0x4d,0xc,0xfa,0x4e,0x64,0x4d,0x8c,0xf9, - 0x4e,0x64,0x4d,0x8c,0xf9,0x4e,0x64,0x4d, - 0xc,0xfa,0x4e,0x64,0x4d,0x8c,0xf9,0x4e, - 0x64,0x8d,0xa5,0xba,0x91,0x35,0x21,0x10, - 0x8d,0xac,0x9,0x69,0x3c,0xc8,0x9a,0x90, - 0xc7,0x8d,0xac,0x9,0x81,0x9c,0xc8,0x9a, - 0x10,0xc8,0x83,0xac,0x9,0x91,0x9c,0xc8, - 0x9a,0xee,0xd4,0x6e,0x64,0xd,0xc8,0xd5, - 0x11,0x59,0x3,0x62,0xf7,0x46,0xd6,0x80, - 0x6a,0x7a,0x22,0x6b,0x40,0x7b,0xbd,0x90, - 0x35,0xa0,0xdf,0xde,0xc8,0x1a,0x68,0x83, - 0x5e,0xc8,0x1a,0x6e,0xa5,0x5e,0xc8,0x1a, - 0x6c,0xc6,0x6e,0xc8,0x1a,0x6c,0xc6,0xbe, - 0xc8,0x1a,0x6c,0xc6,0x7e,0xc8,0x1a,0x6c, - 0xc6,0x3e,0xc8,0x1a,0x6c,0xc6,0xbe,0xc8, - 0x1a,0x6c,0xc6,0x3e,0xc8,0x9a,0xd1,0x8c, - 0x7d,0x90,0x35,0x4f,0x33,0xea,0xf4,0x30, - 0xb2,0x16,0x68,0xd,0x4d,0x13,0x42,0xd6, - 0x42,0x2a,0xd5,0x44,0x21,0x64,0x2d,0xa8, - 0x16,0x81,0x3c,0x79,0xc7,0x21,0x4d,0x11, - 0x83,0xac,0x5,0x87,0x14,0x4d,0x15,0x46, - 0xd6,0xc2,0x63,0x83,0x26,0xb,0x23,0x6b, - 0x11,0x36,0x2e,0x30,0x27,0xa8,0x7,0x7, - 0xb2,0x6,0x15,0xe1,0x43,0xd6,0xa0,0x26, - 0x3c,0xc8,0x1a,0x54,0x85,0x1b,0x59,0x83, - 0xba,0xf0,0x21,0x6b,0x50,0x19,0x6e,0x64, - 0xcd,0xd0,0x86,0x1b,0x59,0x83,0xea,0x20, - 0x91,0x35,0xa8,0xc,0x37,0xb2,0x6,0x55, - 0xe1,0x44,0xd6,0xa0,0x22,0x5c,0xc8,0x1a, - 0x54,0x83,0x1b,0x59,0x83,0x4a,0x70,0x21, - 0x6b,0x86,0xa,0x1c,0xc8,0x9a,0x90,0xdf, - 0x81,0xac,0x9,0xd1,0x7d,0xc8,0x9a,0x90, - 0xda,0x83,0xac,0x9,0x81,0xdd,0xc8,0x9a, - 0x90,0xd5,0x87,0xac,0x9,0x31,0x3d,0xc8, - 0x1a,0xac,0x7c,0x57,0x64,0xd,0xa,0xd7, - 0x1f,0x59,0x83,0x1a,0xe8,0x8b,0xac,0x41, - 0x2d,0xf5,0x43,0xd6,0xa0,0x22,0xfb,0x23, - 0x6b,0x50,0xdb,0xfd,0x90,0x35,0xd4,0x1e, - 0x1d,0x91,0x35,0xd4,0x1e,0xbd,0x91,0x35, - 0xd4,0x1e,0x3d,0x91,0x35,0xd4,0x1e,0xbd, - 0x90,0x35,0xd4,0x1e,0xbd,0x91,0x35,0xd4, - 0x1e,0xbd,0x90,0x35,0x5f,0x7b,0x68,0x82, - 0x8,0x64,0x2d,0xa4,0x54,0x4d,0x14,0x44, - 0xd6,0x82,0x7a,0xd1,0x54,0x41,0x64,0xcd, - 0x6f,0xf9,0x9a,0x24,0xa,0x59,0xb,0x9b, - 0xb0,0x26,0x8b,0x40,0xd6,0x22,0x2c,0x51, - 0xd3,0x45,0x20,0x6b,0x48,0x4a,0x7,0xb2, - 0x86,0xc4,0xf4,0x21,0x6b,0x48,0x4e,0xf, - 0xb2,0x86,0x4,0x75,0x23,0x6b,0x48,0x52, - 0x1f,0xb2,0x86,0x44,0x75,0x23,0x6b,0x48, - 0x56,0x12,0x59,0x43,0x92,0xba,0x91,0x35, - 0x24,0xa7,0x13,0x59,0x43,0x52,0xba,0x90, - 0x35,0x24,0xa3,0x1b,0x59,0x43,0x12,0xba, - 0x91,0xb5,0x66,0x4b,0x27,0x84,0xac,0xa9, - 0x6d,0x9c,0x20,0xb2,0xd6,0xee,0xde,0x74, - 0x44,0xd6,0xf4,0x8b,0xa9,0x12,0x10,0xab, - 0x1f,0x23,0x90,0x35,0x46,0x14,0x44,0xd6, - 0x18,0x8d,0x17,0x59,0xab,0x1f,0x63,0x90, - 0xb5,0x86,0x2a,0x1a,0x59,0xab,0x1f,0xc3, - 0xc8,0x5a,0xfd,0x18,0x42,0xd6,0xf8,0xbb, - 0xb1,0x21,0x64,0x4d,0xd3,0xc4,0x20,0x6b, - 0xd,0x6d,0x14,0xb2,0xc6,0xa8,0x3,0xc8, - 0x5a,0xab,0x97,0x38,0x64,0x4d,0xb7,0x86, - 0x17,0x59,0xe3,0xc5,0x86,0x91,0x35,0x46, - 0x15,0x89,0xac,0x31,0xca,0x4e,0xc8,0x9a, - 0xe4,0xdc,0x7,0x59,0x6b,0x4a,0xea,0x89, - 0xac,0x89,0xe,0x11,0x44,0xd6,0x34,0x95, - 0x1f,0x59,0xe3,0x16,0x14,0x87,0xac,0xb5, - 0x94,0x21,0x64,0x8d,0x51,0xc6,0x20,0x6b, - 0xa2,0x95,0xe3,0x90,0x35,0xc5,0xb1,0x23, - 0xb2,0xc6,0x72,0x39,0x90,0x35,0x96,0xe2, - 0x43,0xd6,0x58,0xb2,0x7,0x59,0x63,0xa9, - 0x6e,0x64,0x8d,0x25,0xfa,0x90,0x35,0x96, - 0x1c,0x87,0xac,0x35,0x23,0x5b,0x3f,0x64, - 0x4d,0x8d,0x79,0x7d,0x90,0x35,0xde,0x3b, - 0xfb,0x22,0x6b,0x7c,0x38,0x7b,0x2b,0xb2, - 0xc6,0x78,0xbc,0x11,0x59,0xe3,0xc2,0xf7, - 0x47,0xd6,0x1a,0xcd,0x77,0x43,0xd6,0x94, - 0xc6,0xbb,0x20,0x6b,0xad,0xa6,0xe3,0x91, - 0x35,0xae,0xe1,0x3e,0xc8,0x9a,0x90,0xaa, - 0x7,0xb2,0x66,0x68,0xa3,0xb,0xb2,0x86, - 0x34,0x12,0x8f,0xac,0x99,0x5a,0x89,0x45, - 0xd6,0x40,0xdf,0xeb,0x85,0xac,0xb5,0xfd, - 0xae,0xf,0xb2,0x66,0xe9,0x37,0xe,0x59, - 0xe3,0x85,0xc6,0x23,0x6b,0x46,0x63,0xc4, - 0x21,0x6b,0xa8,0x19,0x62,0x90,0x35,0xb3, - 0x1,0xc2,0xc8,0x9a,0xdd,0x29,0x63,0x90, - 0x35,0x4b,0x65,0x7e,0x64,0x4d,0xf8,0x7b, - 0x3f,0xb2,0x26,0x6,0x7c,0x27,0xb2,0x26, - 0x6,0x7d,0x27,0xb2,0x26,0xc6,0x7c,0x27, - 0xb2,0x26,0xc6,0x7c,0x27,0xb2,0x26,0x6, - 0x7d,0x27,0xb2,0x26,0xc6,0x7c,0xf7,0xb, - 0x2e,0x8f,0x1e,0x64,0x4d,0x8,0x44,0x23, - 0x6b,0x42,0x1a,0xf,0xb2,0x26,0xe4,0x71, - 0x23,0x6b,0x42,0x20,0x27,0xb2,0x26,0x4, - 0xf2,0x20,0x6b,0x42,0x24,0x27,0xb2,0xa6, - 0x3b,0xb5,0x1b,0x59,0x3,0x72,0x75,0x44, - 0xd6,0x80,0xd8,0xbd,0x91,0x35,0xa0,0x9a, - 0x9e,0xc8,0x1a,0xd0,0x5e,0x2f,0x64,0xd, - 0xe8,0xb7,0x37,0xb2,0x6,0xda,0xa0,0x17, - 0xb2,0x86,0x5b,0xa9,0x17,0xb2,0x6,0x9b, - 0xb1,0x1b,0xb2,0x6,0x9b,0xb1,0x2f,0xb2, - 0x6,0x9b,0xb1,0x1f,0xb2,0x6,0x9b,0xb1, - 0xf,0xb2,0x6,0x9b,0xb1,0x2f,0xb2,0x6, - 0x9b,0xb1,0xf,0xb2,0x66,0x34,0x63,0x1f, - 0x64,0xcd,0xd3,0x8c,0x3a,0x3d,0x8c,0xac, - 0x5,0x5a,0x43,0xd3,0x84,0x90,0xb5,0x90, - 0x4a,0x35,0x51,0x8,0x59,0xb,0xaa,0x45, - 0x20,0x4f,0xde,0x71,0x48,0x53,0xc4,0x20, - 0x6b,0xc1,0x21,0x45,0x53,0x85,0x91,0xb5, - 0xf0,0xd8,0xa0,0xc9,0xc2,0xc8,0x5a,0x84, - 0x8d,0xb,0xcc,0x9,0xea,0xc1,0x81,0xac, - 0x41,0x45,0xf8,0x90,0x35,0xa8,0x9,0xf, - 0xb2,0x6,0x55,0xe1,0x46,0xd6,0xa0,0x2e, - 0x7c,0xc8,0x1a,0x54,0x86,0x1b,0x59,0x33, - 0xb4,0xe1,0x46,0xd6,0xa0,0x3a,0x48,0x64, - 0xd,0x2a,0xc3,0x8d,0xac,0x41,0x55,0x38, - 0x91,0x35,0xa8,0x8,0x17,0xb2,0x6,0xd5, - 0xe0,0x46,0xd6,0xa0,0x12,0x5c,0xc8,0x9a, - 0xa1,0x2,0x7,0xb2,0x26,0xe4,0x77,0x20, - 0x6b,0x42,0x74,0x1f,0xb2,0x26,0xa4,0xf6, - 0x20,0x6b,0x42,0x60,0x37,0xb2,0x26,0x64, - 0xf5,0x21,0x6b,0x42,0x4c,0xf,0xb2,0x6, - 0x2b,0xdf,0x15,0x59,0x83,0xc2,0xf5,0x47, - 0xd6,0xa0,0x6,0xfa,0x22,0x6b,0x50,0x4b, - 0xfd,0x90,0x35,0xa8,0xc8,0xfe,0xc8,0x1a, - 0xd4,0x76,0x3f,0x64,0xd,0xb5,0x47,0x47, - 0x64,0xd,0xb5,0x47,0x6f,0x64,0xd,0xb5, - 0x47,0x4f,0x64,0xd,0xb5,0x47,0x2f,0x64, - 0xd,0xb5,0x47,0x6f,0x64,0xd,0xb5,0x47, - 0x2f,0x64,0xcd,0xd7,0x1e,0x9a,0x20,0x2, - 0x59,0xb,0x29,0x55,0x13,0x5,0x91,0xb5, - 0xa0,0x5e,0x34,0x55,0x10,0x59,0xf3,0x5b, - 0xbe,0x26,0x89,0x42,0xd6,0xc2,0x26,0xac, - 0xc9,0x22,0x90,0xb5,0x8,0x4b,0xd4,0x74, - 0x11,0xc8,0x1a,0x92,0xd2,0x81,0xac,0x21, - 0x31,0x7d,0xc8,0x1a,0x92,0xd3,0x83,0xac, - 0x21,0x41,0xdd,0xc8,0x1a,0x92,0xd4,0x87, - 0xac,0x21,0x51,0xdd,0xc8,0x1a,0x92,0x95, - 0x44,0xd6,0x90,0xa4,0x6e,0x64,0xd,0xc9, - 0xe9,0x44,0xd6,0x90,0x94,0x2e,0x64,0xd, - 0xc9,0xe8,0x46,0xd6,0x90,0x84,0x6e,0x64, - 0xad,0xd9,0xd2,0x9,0x21,0x6b,0x6a,0x1b, - 0x27,0x88,0xac,0xb5,0xbb,0x37,0x1d,0x91, - 0xb5,0x74,0x92,0x24,0x0,0x5a,0x7b,0xa9, - 0x23,0xa0,0x35,0x46,0x14,0x84,0xd6,0x18, - 0x8d,0x17,0x5a,0x63,0xe9,0x11,0xd0,0x5a, - 0x43,0x15,0xd,0xad,0xb1,0x1c,0x41,0x68, - 0x8d,0xd1,0x4,0xa0,0x35,0x46,0x11,0x84, - 0xd6,0x34,0x4d,0xc,0xb4,0xd6,0xd0,0x46, - 0x41,0x6b,0x8c,0x3a,0x0,0xad,0xb5,0x7a, - 0x89,0x83,0xd6,0x74,0x6b,0x78,0xa1,0x35, - 0x5e,0x6c,0x18,0x5a,0x63,0x54,0x91,0xd0, - 0x1a,0xa3,0xec,0x4,0xad,0x49,0xce,0x7d, - 0xa0,0xb5,0xa6,0xa4,0x9e,0xd0,0x9a,0xe8, - 0x10,0x41,0x68,0x4d,0x53,0xf9,0xa1,0x35, - 0x6e,0x41,0x71,0xd0,0x5a,0x4b,0x19,0x82, - 0xd6,0x18,0x65,0xc,0xb4,0x26,0x5a,0x39, - 0xe,0x5a,0x53,0x1c,0x3b,0x42,0x6b,0x2c, - 0x97,0x3,0x5a,0x63,0x29,0x3e,0x68,0x8d, - 0x25,0x7b,0xa0,0x35,0x96,0xea,0x86,0xd6, - 0x58,0xa2,0xf,0x5a,0x63,0xc9,0x71,0xd0, - 0x5a,0x33,0xb2,0xf5,0x83,0xd6,0xd4,0x98, - 0xd7,0x7,0x5a,0xe3,0xbd,0xb3,0x2f,0xb4, - 0xc6,0x87,0xb3,0xb7,0x42,0x6b,0x8c,0xc7, - 0x1b,0xa1,0x35,0x2e,0x7c,0x7f,0x68,0xad, - 0xd1,0x7c,0x37,0x68,0x4d,0x69,0xbc,0xb, - 0xb4,0xd6,0x6a,0x3a,0x1e,0x5a,0xe3,0x1a, - 0xee,0x3,0xad,0x9,0xa9,0x7a,0x40,0x6b, - 0x86,0x36,0xba,0x40,0x6b,0x48,0x23,0xf1, - 0xd0,0x9a,0xa9,0x95,0x58,0x68,0xd,0xf4, - 0xbd,0x5e,0xd0,0x5a,0xdb,0xef,0xfa,0x40, - 0x6b,0x96,0x7e,0xe3,0xa0,0x35,0x5e,0x68, - 0x3c,0xb4,0x66,0x34,0x46,0x1c,0xb4,0x86, - 0x9a,0x21,0x6,0x5a,0x33,0x1b,0x20,0xc, - 0xad,0xd9,0x9d,0x32,0x6,0x5a,0xb3,0x54, - 0xe6,0x87,0xd6,0x84,0xbf,0xf7,0x43,0x6b, - 0x62,0xc0,0x77,0x42,0x6b,0x62,0xd0,0x77, - 0x42,0x6b,0x62,0xcc,0x77,0x42,0x6b,0x62, - 0xcc,0x77,0x42,0x6b,0x62,0xd0,0x77,0x42, - 0x6b,0x62,0xcc,0x77,0x42,0x6b,0x2c,0xd5, - 0xd,0xad,0x9,0x81,0x68,0x68,0x4d,0x48, - 0xe3,0x81,0xd6,0x84,0x3c,0x6e,0x68,0x4d, - 0x8,0xe4,0x84,0xd6,0x84,0x40,0x1e,0x68, - 0x4d,0x88,0xe4,0x84,0xd6,0x74,0xa7,0x76, - 0x43,0x6b,0x40,0xae,0x8e,0xd0,0x1a,0x10, - 0xbb,0x37,0xb4,0x6,0x54,0xd3,0x13,0x5a, - 0x3,0xda,0xeb,0x5,0xad,0x1,0xfd,0xf6, - 0x86,0xd6,0x40,0x1b,0xf4,0x82,0xd6,0x70, - 0x2b,0xf5,0x82,0xd6,0x60,0x33,0x76,0x83, - 0xd6,0x60,0x33,0xf6,0x85,0xd6,0x60,0x33, - 0xf6,0x83,0xd6,0x60,0x33,0xf6,0x81,0xd6, - 0x60,0x33,0xf6,0x85,0xd6,0x60,0x33,0xf6, - 0x81,0xd6,0x8c,0x66,0xec,0x3,0xad,0x79, - 0x9a,0x51,0xa7,0x87,0xa1,0xb5,0x40,0x6b, - 0x68,0x9a,0x10,0xb4,0x16,0x52,0xa9,0x26, - 0xa,0x41,0x6b,0x41,0xb5,0x8,0xe8,0xc9, - 0x3b,0xe,0x69,0x8a,0x18,0x68,0x2d,0x38, - 0xa4,0x68,0xaa,0x30,0xb4,0x16,0x1e,0x1b, - 0x34,0x59,0x18,0x5a,0x8b,0xb0,0x71,0x1, - 0x3a,0x41,0x3d,0x38,0xa0,0x35,0xa8,0x8, - 0x1f,0xb4,0x6,0x35,0xe1,0x81,0xd6,0xa0, - 0x2a,0xdc,0xd0,0x1a,0xd4,0x85,0xf,0x5a, - 0x83,0xca,0x70,0x43,0x6b,0x86,0x36,0xdc, - 0xd0,0x1a,0x54,0x7,0x9,0xad,0x41,0x65, - 0xb8,0xa1,0x35,0xa8,0xa,0x27,0xb4,0x6, - 0x15,0xe1,0x82,0xd6,0xa0,0x1a,0xdc,0xd0, - 0x1a,0x54,0x82,0xb,0x5a,0x33,0x54,0xe0, - 0x80,0xd6,0x84,0xfc,0xe,0x68,0x4d,0x88, - 0xee,0x83,0xd6,0x84,0xd4,0x1e,0x68,0x4d, - 0x8,0xec,0x86,0xd6,0x84,0xac,0x3e,0x68, - 0x4d,0x88,0xe9,0x81,0xd6,0x60,0xe5,0xbb, - 0x42,0x6b,0x50,0xb8,0xfe,0xd0,0x1a,0xd4, - 0x40,0x5f,0x68,0xd,0x6a,0xa9,0x1f,0xb4, - 0x6,0x15,0xd9,0x1f,0x5a,0x83,0xda,0xee, - 0x7,0xad,0xa1,0xf6,0xe8,0x8,0xad,0xa1, - 0xf6,0xe8,0xd,0xad,0xa1,0xf6,0xe8,0x9, - 0xad,0xa1,0xf6,0xe8,0x5,0xad,0xa1,0xf6, - 0xe8,0xd,0xad,0xa1,0xf6,0xe8,0x5,0xad, - 0xf9,0xda,0x43,0x13,0x44,0x40,0x6b,0x21, - 0xa5,0x6a,0xa2,0x20,0xb4,0x16,0xd4,0x8b, - 0xa6,0xa,0x42,0x6b,0x7e,0xcb,0xd7,0x24, - 0x51,0xd0,0x5a,0xd8,0x84,0x35,0x59,0x4, - 0xb4,0x16,0x61,0x89,0x9a,0x2e,0x2,0x5a, - 0x43,0x52,0x3a,0xa0,0x35,0x24,0xa6,0xf, - 0x5a,0x43,0x72,0x7a,0xa0,0x35,0x24,0xa8, - 0x1b,0x5a,0x43,0x92,0xfa,0xa0,0x35,0x24, - 0xaa,0x1b,0x5a,0x43,0xb2,0x92,0xd0,0x1a, - 0x92,0xd4,0xd,0xad,0x21,0x39,0x9d,0xd0, - 0x1a,0x92,0xd2,0x5,0xad,0x21,0x19,0xdd, - 0xd0,0x1a,0x92,0xd0,0xd,0xad,0x35,0x5b, - 0x3a,0x21,0x68,0x4d,0x6d,0xe3,0x4,0xa1, - 0xb5,0x76,0xf7,0xa6,0x2b,0xb4,0x36,0xc5, - 0xd0,0x5a,0x1c,0xb6,0x16,0x5,0xae,0x5, - 0xd1,0xb5,0x48,0x78,0xad,0x7,0xbe,0x16, - 0x5,0xb0,0x45,0x20,0x6c,0x51,0x10,0x5b, - 0x27,0x8c,0xad,0x23,0xc8,0x16,0x81,0xb2, - 0x75,0x86,0xd9,0xe2,0x70,0xb6,0x48,0xa0, - 0xad,0x3,0xd2,0xd6,0x19,0x6a,0x7b,0x3, - 0xd6,0xf6,0x66,0xb0,0x2d,0x12,0x6d,0x8b, - 0x84,0xdb,0x3a,0xe0,0x6d,0x1d,0x0,0xb7, - 0x58,0xc4,0xad,0xb,0xe4,0xd6,0x13,0x73, - 0xf3,0x80,0x6e,0x21,0xd4,0x2d,0x0,0xbb, - 0xf9,0x71,0xb7,0x10,0xf0,0x16,0x8f,0xbc, - 0xbd,0x15,0x7a,0x7b,0xb,0xf6,0xf6,0x26, - 0xf0,0xed,0x2a,0xe8,0xdb,0x15,0xe0,0xb7, - 0x37,0xe2,0x6f,0x7d,0x1,0xb8,0x3e,0x8, - 0x5c,0x2f,0x8,0xae,0x37,0x6,0xd7,0x1b, - 0x84,0x7b,0xb,0xa,0xd7,0x17,0x86,0xeb, - 0x8d,0xc3,0xbd,0x19,0x88,0x7b,0x23,0x12, - 0xd7,0x17,0x8a,0xeb,0x88,0xc5,0xf5,0x3, - 0xe3,0xba,0xa3,0x71,0x3d,0xe0,0xb8,0x9e, - 0x78,0x5c,0x57,0x40,0x2e,0x6,0x91,0xb, - 0x40,0x72,0x1,0x4c,0x2e,0x0,0xca,0x5, - 0x50,0xb9,0x0,0x2c,0x17,0xc0,0xe5,0xfc, - 0xc0,0x9c,0xf,0x99,0xb,0x42,0x73,0x21, - 0x6c,0x2e,0x0,0xce,0x5,0xd1,0xb9,0x0, - 0x3c,0x17,0x81,0xcf,0xbd,0x1,0xa0,0xbb, - 0xa,0x42,0x77,0x5,0x88,0xee,0xcd,0x18, - 0xdd,0x55,0x40,0xba,0x37,0xa3,0x74,0xd7, - 0x80,0xe9,0xde,0x80,0xd3,0x5d,0x5,0xa8, - 0xbb,0x2,0x52,0xf7,0x66,0xa8,0xee,0x2a, - 0x58,0xdd,0x9b,0xc1,0xba,0x6b,0xa0,0x75, - 0x41,0xb8,0x2e,0xe,0xaf,0x8b,0x2,0xec, - 0x62,0x10,0xbb,0x38,0xc8,0x2e,0x6,0xb3, - 0x8b,0x4,0xed,0x22,0x50,0xbb,0x58,0xd8, - 0x2e,0x12,0xb7,0x8b,0x3,0xee,0x62,0x91, - 0xbb,0x38,0xe8,0x2e,0x1a,0xbb,0x8b,0x1, - 0xef,0xa2,0xd1,0xbb,0x58,0xf8,0x2e,0x12, - 0xbf,0x8b,0x6,0xf0,0x22,0x11,0xbc,0x78, - 0x8,0x2f,0x8c,0xe1,0x45,0x82,0x78,0x71, - 0x28,0x5e,0x14,0x8c,0x17,0x89,0xe3,0x45, - 0x1,0x79,0x91,0x48,0x9e,0x17,0xca,0xb, - 0x63,0x79,0x41,0x30,0x2f,0x84,0xe6,0x85, - 0xe1,0xbc,0x20,0x9e,0xf7,0x26,0x40,0xef, - 0x4a,0x88,0xde,0x55,0x20,0xbd,0x2b,0x60, - 0x7a,0x57,0x2,0xf5,0xae,0x80,0xea,0xbd, - 0x9,0xd6,0xbb,0x12,0xae,0x77,0x15,0x60, - 0xef,0xa,0xc8,0xde,0x95,0xa0,0xbd,0x2b, - 0x60,0x7b,0x61,0x70,0x2f,0x12,0xdd,0x8b, - 0x83,0xf7,0xa2,0xf0,0xbd,0x48,0x80,0x2f, - 0xa,0xe1,0x8b,0x81,0xf8,0xa2,0x31,0xbe, - 0x58,0x90,0x2f,0x12,0xe5,0x8b,0x86,0xf9, - 0x22,0x71,0xbe,0x28,0xa0,0x2f,0x1e,0xe9, - 0x8b,0x86,0xfa,0x62,0xb1,0xbe,0x78,0xb0, - 0x2f,0x16,0xed,0x8b,0x80,0xfb,0x62,0xf1, - 0xbe,0x48,0xc0,0x2f,0xe,0xf1,0x8b,0x85, - 0xfc,0x62,0x31,0xbf,0x78,0xd0,0x2f,0x1a, - 0xf5,0xeb,0xf,0xfb,0x35,0x37,0xea,0x8e, - 0x1c,0x67,0xd8,0x6d,0x4f,0xa3,0xe3,0xfa, - 0xd7,0xea,0x7e,0x62,0x49,0xc8,0x8,0x26, - 0x90,0xc0,0x4e,0xce,0x40,0x72,0x3a,0x9e, - 0x13,0xc,0xa6,0x88,0xc2,0x20,0xd0,0xb5, - 0xdb,0x1f,0xd6,0xdb,0xd3,0x65,0x5c,0x8e, - 0xc4,0xf,0x31,0xc8,0x20,0x24,0x8c,0xc6, - 0x6,0x65,0xa6,0x20,0x3a,0x28,0xc9,0x2, - 0xf8,0xa0,0x24,0xa,0x22,0x84,0x80,0x2c, - 0x6,0x23,0x84,0xe4,0x51,0x28,0xa1,0xcc, - 0x10,0xc0,0x9,0x91,0xb2,0xe2,0x90,0x42, - 0x99,0xc5,0x87,0x15,0xbe,0xfe,0xb7,0x1f, - 0xbf,0xff,0x6e,0x70,0xdc,0x3d,0x1f,0x96, - 0xd5,0x1f,0x8b,0xfd,0x9e,0x59,0xc0,0xbf, - 0xfd,0xcb,0xcf,0x3f,0x2d,0x76,0xbb,0xd3, - 0xf1,0x74,0x28,0xf6,0x63,0xd6,0xe3,0xc6, - 0xcb,0xe3,0x71,0xbc,0x29,0xf6,0x83,0xef, - 0x7f,0xfc,0xff,0x1,0x97,0x39,0xd6,0xd7, - 0x21,0x80,0x2,0x0,}; - -const uint PAGE_css_bootstrap_size = 23700; diff --git a/src/sensesp/net/web/index.h b/src/sensesp/net/web/index.h deleted file mode 100644 index 03bb2b367..000000000 --- a/src/sensesp/net/web/index.h +++ /dev/null @@ -1,153 +0,0 @@ -#include -const uint8_t PAGE_index[] PROGMEM = { - 0x1f,0x8b,0x8,0x0,0x62,0x38,0x8f,0x64, - 0x2,0xff,0xdd,0x58,0x4f,0x6f,0xeb,0x36, - 0xc,0xbf,0xf7,0x53,0x70,0xda,0x65,0x3, - 0xa6,0x3a,0x76,0x52,0x37,0xe9,0xec,0x1c, - 0xd6,0xed,0x96,0x0,0x3,0x7a,0xeb,0x4d, - 0xb1,0x95,0x58,0xad,0x6d,0x19,0x92,0xdc, - 0x34,0xfb,0xf4,0x23,0x25,0xbb,0x2f,0xc9, - 0x7b,0x1d,0x5e,0xb0,0x5d,0x96,0xd6,0xa1, - 0x49,0x89,0x92,0xa8,0x1f,0x49,0xfd,0x71, - 0x56,0xb9,0xa6,0x5e,0xde,0xdc,0x64,0x95, - 0x14,0xe5,0xf2,0x6,0xf0,0x2f,0x6b,0xa4, - 0x13,0xd0,0x8a,0x46,0xe6,0xec,0x4d,0xc9, - 0x7d,0xa7,0x8d,0x63,0x50,0xe8,0xd6,0xc9, - 0xd6,0xe5,0x6c,0xaf,0x4a,0x57,0xe5,0xa5, - 0x7c,0x53,0x85,0xe4,0x5e,0xf8,0x5,0x54, - 0xab,0x9c,0x12,0x35,0xb7,0x85,0xa8,0x65, - 0x1e,0xb3,0xa1,0x23,0xa7,0x5c,0x2d,0x97, - 0x4f,0xb2,0xb5,0x7f,0x3c,0xfd,0x9,0xbf, - 0xfb,0x26,0x59,0x14,0x4a,0x83,0x46,0xad, - 0xda,0x57,0x30,0xb2,0xce,0x99,0x75,0x87, - 0x5a,0xda,0x4a,0x4a,0x1c,0xab,0x32,0x72, - 0x9b,0xb3,0xc2,0xda,0x68,0xa3,0xb5,0xb3, - 0xce,0x88,0xee,0xb6,0x51,0xed,0x2d,0x96, - 0x8c,0x5d,0xdb,0xc2,0xa8,0xce,0x81,0x35, - 0x45,0xce,0xa2,0x17,0x8b,0x8f,0x6e,0x65, - 0xa9,0x9c,0x36,0x5e,0xf3,0x5,0x15,0xb3, - 0x28,0x28,0x7d,0xd2,0xc2,0xa2,0x59,0xd2, - 0x76,0x67,0xaa,0x59,0x14,0x80,0xc8,0x36, - 0xba,0x3c,0x80,0x6e,0x6b,0x2d,0xca,0x9c, - 0xd,0xf3,0x53,0x7f,0xc9,0x9f,0x7e,0x1e, - 0x2d,0xf8,0x81,0x73,0x50,0x88,0x8a,0x85, - 0xad,0xd1,0xd,0x54,0xce,0x75,0xf6,0x21, - 0x8a,0x76,0xca,0x55,0xfd,0xe6,0xb6,0xd0, - 0x4d,0x54,0x8a,0xf6,0xb5,0x16,0x4d,0x23, - 0x4d,0xb4,0x39,0x38,0x69,0xb1,0x39,0xf, - 0x2d,0x38,0x1f,0x8d,0x7a,0xdb,0xc1,0x7b, - 0x53,0xb7,0x36,0x67,0xd4,0x1,0xb6,0xdf, - 0xef,0xf7,0xb7,0xfb,0xe9,0xad,0x36,0xbb, - 0x28,0x99,0x4c,0x26,0x11,0x6a,0x30,0xf0, - 0xe0,0xe4,0xac,0x54,0xb6,0xab,0xc5,0xe1, - 0x1,0x5a,0x9c,0xec,0xaf,0x83,0x21,0xa1, - 0x9f,0x43,0xb3,0xd1,0x35,0x28,0xb2,0x95, - 0xeb,0xce,0x29,0x1c,0x85,0x7d,0x4f,0xcf, - 0xe4,0xe0,0xdf,0xf4,0x7b,0xce,0x26,0x30, - 0x81,0x69,0x82,0xf,0x83,0xe0,0x61,0x46, - 0x6c,0x25,0xd5,0xae,0x72,0x81,0xdf,0xaa, - 0x1a,0xfd,0x44,0x43,0x93,0x41,0x46,0xbf, - 0xa2,0x45,0x45,0x6f,0xc,0x46,0x45,0xa1, - 0x6b,0x6d,0xc6,0x52,0x8e,0x4e,0x95,0x85, - 0xe8,0x72,0x66,0x74,0xdf,0x96,0x27,0xc5, - 0x2f,0x5a,0xb5,0xe7,0xe5,0xc3,0x70,0xc9, - 0xd1,0x7c,0xfc,0x9c,0x3a,0xe1,0x2a,0xc0, - 0x9,0xad,0x93,0x39,0xa4,0xb0,0x9a,0x21, - 0x21,0x36,0xf6,0x7c,0x1c,0x84,0xc4,0xb, - 0x9,0x9,0x33,0x98,0xc2,0xa,0xe9,0x2, - 0xd6,0xa8,0x84,0x3c,0x52,0xe4,0x93,0x9, - 0x24,0x54,0x81,0xaf,0x5,0x83,0xe8,0x8, - 0xb3,0x28,0x80,0xf6,0x19,0x8a,0x56,0x3a, - 0xa7,0xda,0xdd,0xf5,0xc0,0x88,0x98,0x24, - 0xb0,0x42,0x9a,0x42,0x1c,0xc3,0x3d,0xcc, - 0x61,0x86,0xff,0x73,0xe4,0x50,0x4c,0xc1, - 0x57,0x7,0xb2,0x20,0x71,0x81,0x15,0x49, - 0x8c,0x1a,0x9,0x29,0x11,0xf0,0x31,0x24, - 0x77,0x5e,0xc3,0x2b,0x4f,0x27,0xa4,0x13, - 0x28,0x96,0x24,0xbe,0x16,0x75,0x13,0xaf, - 0x4c,0xcc,0x9d,0x2f,0x4c,0xbf,0xa8,0x11, - 0x1d,0x9b,0x53,0x57,0x31,0x69,0x7a,0xdd, - 0x19,0xa9,0xde,0x7f,0x8c,0x9c,0xc0,0xf3, - 0x89,0xaf,0xfc,0x44,0xa,0x65,0x8a,0x5a, - 0x42,0x81,0x28,0xc7,0x29,0x2e,0x48,0x87, - 0xf0,0x36,0x39,0x9b,0x5d,0xe4,0xd8,0x4a, - 0x37,0xf2,0x7a,0x9c,0x9a,0x0,0x86,0xf6, - 0xa,0x5f,0x8,0xee,0x2c,0x10,0x14,0x30, - 0x3d,0x12,0xef,0x33,0x4f,0xb1,0x14,0x95, - 0x2,0xc5,0xe7,0xf9,0x22,0xb8,0x70,0xf5, - 0xb5,0xd5,0x95,0xad,0x25,0x29,0x92,0x0, - 0x8b,0x87,0x2c,0x21,0xd9,0xaf,0x2f,0x88, - 0x5b,0x4c,0x49,0x92,0x52,0xcd,0x1a,0x63, - 0x92,0xa4,0xc4,0xeb,0xad,0xe3,0x20,0x11, - 0xa4,0x24,0x25,0xd4,0xd1,0x98,0x2f,0xde, - 0xb,0xe9,0x45,0xb8,0xd6,0x84,0x46,0x8b, - 0x2b,0xcc,0xf5,0xc4,0x62,0x58,0x77,0x69, - 0x31,0x0,0xcf,0xc6,0xb3,0x90,0xd1,0x1, - 0x68,0x64,0x2f,0x8b,0x3c,0xda,0xcf,0xaf, - 0x6,0x1c,0xc4,0xe0,0x1e,0xb1,0xc1,0x35, - 0x11,0xf0,0x87,0x36,0xe2,0x7e,0x4,0x31, - 0x2,0x73,0xf,0xcf,0x3e,0xd2,0x52,0x8f, - 0x1c,0x6,0x19,0x8a,0x5e,0x63,0x35,0xd4, - 0x5e,0x84,0x19,0x9e,0xbf,0xcc,0xf5,0x80, - 0x86,0x79,0x88,0x1,0x45,0xe1,0xe3,0x53, - 0x6c,0x41,0xd8,0xc4,0x1e,0x24,0x4a,0x51, - 0xda,0xde,0x29,0x53,0xa7,0x21,0x61,0xef, - 0x2e,0x2,0x4a,0xb5,0x5b,0x7d,0x4d,0x38, - 0x61,0xae,0xad,0x2,0x18,0x24,0xcd,0x3, - 0x40,0x93,0x4b,0x76,0xd1,0xf8,0xb2,0x6d, - 0x14,0x4f,0xed,0x78,0x36,0xbe,0x9e,0x8d, - 0x61,0x41,0x9b,0xe6,0x23,0x5,0x9a,0x5f, - 0xe0,0x83,0x8c,0x74,0x4e,0x64,0x1a,0x52, - 0xd6,0xc7,0x23,0xa6,0xe5,0x7c,0xe4,0x31, - 0x6f,0xfd,0x51,0x26,0xa5,0x4c,0xd,0xa7, - 0x4d,0xac,0x5e,0x79,0x81,0x4e,0x41,0x17, - 0x21,0xba,0x95,0xf2,0x7f,0x8f,0xe7,0x51, - 0x78,0xd,0xd1,0x95,0x84,0xe8,0xfa,0xb0, - 0x65,0x18,0xfd,0x31,0x8c,0x1e,0x7d,0xe6, - 0xf,0xdc,0x2f,0xee,0xe0,0x91,0xf6,0x5c, - 0x3c,0x28,0xfa,0x93,0x28,0xd1,0x39,0xac, - 0x69,0x9f,0x7e,0x44,0x3e,0xf5,0x7,0xc9, - 0x3b,0x7f,0xf6,0x9c,0xff,0x3,0xce,0x19, - 0x61,0x86,0x37,0xdc,0x70,0xb5,0x15,0xaa, - 0x3d,0x52,0x2c,0xd5,0x1b,0x14,0xb5,0xb0, - 0x88,0x37,0xdd,0x6f,0xb1,0x52,0x9a,0x93, - 0x19,0xf9,0x6b,0xb1,0x34,0xa3,0x52,0xc9, - 0xb7,0xb5,0x7c,0x7,0x22,0x7c,0x8f,0xb7, - 0x52,0x78,0xe9,0xad,0x53,0xdb,0x3,0x1f, - 0x6e,0xc7,0xbc,0x40,0x82,0xea,0xdd,0x81, - 0x4f,0xa1,0xd9,0xf0,0x19,0x6c,0xb4,0xc1, - 0xf6,0x7c,0xa3,0x9d,0xd3,0xcd,0x39,0x58, - 0x62,0xb8,0xe9,0xfe,0x18,0x16,0xa3,0xd3, - 0x41,0xf0,0xba,0xb9,0x6b,0xb9,0x72,0xb2, - 0xb1,0x63,0xb7,0xd8,0xa3,0xef,0xb6,0x29, - 0xf9,0x4,0x1a,0x49,0x6f,0xd1,0x3b,0xd, - 0x4e,0xbe,0x3b,0x5e,0xa,0xf3,0x3a,0x70, - 0xb2,0xd0,0x46,0xd0,0x1d,0x90,0x7b,0xc7, - 0x9f,0x8e,0x3a,0xdc,0x3a,0x7,0x7,0xce, - 0x26,0x27,0xf1,0xb2,0xcc,0x7a,0x2b,0xe1, - 0x9d,0xae,0xe5,0xf,0xa3,0x6d,0xe1,0xc0, - 0x1c,0x2d,0x7,0x20,0xcf,0xfb,0xea,0x44, - 0xeb,0xe3,0x37,0x7c,0x11,0xa0,0xcf,0x6, - 0x1f,0x33,0xd9,0x5a,0x44,0x0,0xed,0x9c, - 0xb2,0x65,0x39,0x5c,0xfe,0x49,0xfd,0xc, - 0x85,0x48,0x9c,0x15,0xf4,0x21,0x21,0xc8, - 0x57,0x8d,0x6c,0xfb,0x8f,0xee,0x5a,0xf1, - 0x6,0xf8,0xe3,0x1d,0xc6,0x91,0xfd,0x7a, - 0x56,0xb5,0x3a,0x52,0xf4,0xc0,0xe1,0x74, - 0x3e,0x20,0x66,0x50,0xa,0x27,0xb8,0x13, - 0x66,0x27,0x1d,0x7d,0x6e,0x10,0xae,0xb7, - 0xc7,0x5d,0x53,0xa8,0xbf,0x32,0x10,0x46, - 0x9,0x3e,0xc4,0x68,0xce,0x3a,0xb1,0x43, - 0xfc,0x9e,0xbc,0x32,0x19,0x9a,0x45,0xb5, - 0xfa,0x77,0x3,0x63,0xa4,0x6c,0xd5,0xae, - 0xf,0xfe,0xf9,0xce,0xf1,0x1f,0x8f,0xdb, - 0xfc,0x67,0x66,0x60,0x22,0xd7,0x5f,0x1b, - 0x40,0x83,0x51,0xcd,0xb7,0x87,0xc9,0xa2, - 0xbe,0x3e,0xc9,0x8f,0x28,0x24,0xc8,0x71, - 0xf2,0x61,0x52,0x8d,0x99,0xf7,0x85,0xa5, - 0x4c,0x23,0xa7,0xe,0x89,0xc2,0xbe,0x95, - 0x76,0xc7,0x8d,0xb2,0x88,0x3e,0xc0,0xf8, - 0xef,0x31,0xfe,0x3,0xd5,0xdf,0x54,0xbd, - 0x2c,0x6c,0xa8,0x12,0x0,0x0,}; - -const uint PAGE_index_size = 1190; diff --git a/src/sensesp/net/web/js_jsoneditor.h b/src/sensesp/net/web/js_jsoneditor.h deleted file mode 100644 index b8455e681..000000000 --- a/src/sensesp/net/web/js_jsoneditor.h +++ /dev/null @@ -1,4713 +0,0 @@ -#include -const uint8_t PAGE_js_jsoneditor[] PROGMEM = { - 0x1f,0x8b,0x8,0x0,0x62,0x38,0x8f,0x64, - 0x2,0xff,0xec,0xbd,0xe9,0x7a,0x1b,0x57, - 0x76,0x28,0xfa,0xbf,0x9f,0x2,0xac,0x24, - 0x74,0x95,0x59,0x4,0x41,0xd9,0x9d,0x1, - 0x50,0x9,0xd7,0x96,0xed,0xd8,0xe7,0xb3, - 0xda,0x7d,0x6c,0x75,0x72,0xf2,0xd1,0x68, - 0x7e,0x35,0x1,0x28,0x9,0x4,0x68,0xc, - 0x92,0xd8,0x24,0xf2,0xdd,0x3f,0xe7,0x1d, - 0xce,0x7d,0xbd,0xf3,0x24,0x77,0xad,0xb5, - 0xe7,0xa9,0x50,0xa4,0x28,0xb7,0xd3,0x91, - 0x93,0x16,0x51,0x7b,0x1e,0xd6,0x5e,0x7b, - 0xcd,0xfb,0xec,0xd3,0x4f,0x7f,0xd7,0xfb, - 0xb4,0xf7,0xff,0x2c,0xf3,0xab,0xba,0xf7, - 0x3f,0x7e,0xfa,0xe1,0xf,0xbd,0xaf,0xab, - 0x66,0xbb,0x5a,0x53,0x62,0x55,0x6f,0xca, - 0x75,0x73,0xbd,0x6d,0x56,0x4b,0x96,0xf7, - 0x53,0x39,0xaf,0xaf,0xf2,0xde,0x97,0xf9, - 0xa6,0xae,0xb4,0x82,0x2f,0xe7,0xcd,0xa6, - 0xb7,0x68,0x8a,0x75,0xbe,0xbe,0xe9,0xc1, - 0xcf,0xed,0xbc,0xee,0x95,0xab,0xe5,0xb6, - 0x59,0xee,0x72,0xaa,0xbc,0x9a,0xf6,0x5e, - 0x55,0xab,0xf5,0xf2,0x93,0x4d,0x6f,0xb6, - 0xae,0xf3,0x6d,0xef,0xed,0x6a,0xfd,0xba, - 0x17,0x6f,0xea,0xba,0x97,0x2f,0x36,0xab, - 0xde,0x7c,0xbb,0xbd,0xde,0xc,0xcf,0xce, - 0x66,0xcd,0x76,0xbe,0x2b,0xfa,0xe5,0xea, - 0xea,0x8c,0xca,0x9f,0xbd,0xda,0xac,0x96, - 0xa7,0x35,0x75,0x74,0xd6,0x6c,0x36,0xbb, - 0x7a,0x73,0xf6,0xcf,0x83,0x41,0x42,0xa3, - 0x7b,0x53,0xaf,0x37,0xd8,0xf8,0x79,0xff, - 0xb3,0xfe,0xef,0x29,0x25,0xdf,0x6d,0xe7, - 0xab,0x75,0xef,0x7f,0xd4,0xeb,0xfa,0xea, - 0xa6,0xf7,0x15,0x34,0x40,0xc9,0xd8,0x4d, - 0xa7,0x1e,0x5a,0x4b,0x6b,0xe5,0xb4,0xdf, - 0x54,0x65,0xd1,0x94,0xf5,0x72,0x53,0xf7, - 0x5e,0x7c,0xf7,0x92,0xbe,0xeb,0x77,0xf9, - 0xd5,0xf5,0xa2,0xee,0x61,0x53,0x3f,0x7e, - 0xfd,0xc5,0x57,0x2f,0xbe,0xee,0x5f,0x55, - 0xbd,0x7c,0x59,0xf5,0xaa,0x55,0xb9,0x39, - 0xeb,0x4d,0x61,0x90,0xeb,0xfa,0x97,0x5d, - 0x3,0xe3,0xac,0x97,0xdb,0x4d,0xda,0xe3, - 0x35,0x36,0x54,0x68,0xb7,0xc9,0x67,0x75, - 0xaf,0x59,0x4e,0x57,0xd0,0xda,0xd9,0xef, - 0x8e,0xa6,0xbb,0x65,0x89,0xcb,0x18,0xe7, - 0x69,0x91,0xdc,0x46,0x3b,0xe8,0x69,0xb3, - 0x5d,0x37,0xe5,0x36,0x1a,0xbd,0xc9,0xd7, - 0xbd,0x32,0x2b,0xe2,0x3c,0x19,0x45,0xab, - 0xe2,0x55,0xd,0x69,0x59,0xb6,0xbd,0xb9, - 0xae,0x61,0xc5,0xaf,0x56,0xd5,0x6e,0x51, - 0x1f,0x1f,0x2f,0x77,0x8b,0xc5,0x51,0x26, - 0xbe,0xd8,0xdf,0x7e,0xfd,0xee,0x7a,0xb5, - 0xde,0x6e,0xc6,0xe6,0x67,0x56,0xe,0x23, - 0xd1,0x9b,0x6a,0xa8,0xaa,0xa7,0xcd,0x12, - 0xaa,0xb2,0xbf,0xfd,0xfc,0xaa,0x1a,0xb3, - 0x9f,0xb1,0x1c,0x59,0x72,0xbb,0xae,0xb7, - 0xbb,0xf5,0xb2,0x57,0xee,0x93,0x61,0xde, - 0x47,0x60,0x61,0xe0,0x91,0x95,0xfb,0x38, - 0xda,0x2d,0x59,0xf9,0x2a,0x3a,0x12,0x6d, - 0xbe,0x6d,0x96,0xd5,0xea,0xed,0x98,0xfd, - 0x19,0x6e,0x1,0x80,0x52,0x73,0x9a,0x34, - 0xb3,0xd1,0x91,0xd6,0x3,0xa6,0xe4,0xd9, - 0xd1,0x79,0x5a,0x64,0x67,0xef,0x6e,0xfe, - 0x72,0xd6,0xdf,0xd6,0x9b,0xad,0x3e,0x4, - 0xd6,0x58,0xff,0x7a,0xb5,0xd9,0xbe,0xa8, - 0x37,0xb8,0x88,0x71,0x4,0x5,0xa3,0x64, - 0x9f,0x8c,0xcf,0x7e,0x2e,0x2e,0x37,0xbb, - 0xeb,0x7a,0xfd,0x73,0x71,0x36,0x3c,0xeb, - 0x7f,0x7a,0x36,0x12,0x3,0xce,0xb4,0x16, - 0xf6,0x69,0x9,0x4b,0xb1,0xad,0x97,0x95, - 0x4c,0xed,0x55,0x71,0x99,0xdc,0xca,0xaf, - 0x1a,0x4a,0x1d,0xe5,0xc7,0xc7,0x38,0xe2, - 0x7e,0xb3,0x6c,0xb6,0xda,0xcf,0x7e,0x7e, - 0x7d,0xbd,0xb8,0x89,0x69,0x32,0xf9,0x7a, - 0xb6,0xa3,0xbd,0x4d,0xf6,0x38,0xee,0x69, - 0x46,0xa5,0xae,0xd7,0xab,0xed,0xa,0x57, - 0x60,0x4,0x13,0x19,0xd0,0xee,0xcd,0xb2, - 0x65,0xfd,0xb6,0x87,0xb9,0x98,0x76,0x3e, - 0x2,0xd8,0x88,0x31,0x7d,0xe,0x0,0xd0, - 0x2b,0x93,0xd9,0xc5,0x7c,0x92,0x79,0xf6, - 0xa4,0x84,0xf4,0xe3,0x63,0x4f,0xc6,0x94, - 0x32,0xa,0xb6,0x38,0x58,0x2a,0x19,0x9b, - 0xb,0xcb,0xe7,0x6d,0x2d,0x6c,0xc9,0x6, - 0xc8,0xd6,0x68,0xa4,0xfd,0xce,0xa6,0x17, - 0xf9,0x84,0x46,0x5a,0x65,0x85,0x7f,0x86, - 0x62,0x29,0xf5,0x5a,0x65,0x5a,0xed,0xf7, - 0xf1,0x3c,0xa5,0x11,0xc,0xf1,0x5f,0x51, - 0xaa,0x56,0xab,0x90,0xcd,0x52,0xed,0xb, - 0x8e,0xd9,0x12,0xe0,0x7a,0x57,0x22,0xd8, - 0xd4,0x69,0x2d,0x76,0xa2,0x4a,0x6b,0xd8, - 0x97,0x7d,0x9c,0xa4,0xda,0x98,0xe5,0x86, - 0xe4,0x30,0x2b,0xd8,0xa0,0x32,0x2b,0xef, - 0xee,0x6e,0x8b,0x5d,0x51,0xc0,0x29,0x1a, - 0x2,0x90,0x94,0xf9,0xb2,0xac,0x17,0x39, - 0x7c,0xe2,0x57,0x55,0x6f,0xf3,0x66,0x31, - 0x2c,0xf6,0x7c,0x26,0x70,0xe,0x69,0xf0, - 0xfd,0x12,0xd1,0x51,0xfd,0xf5,0x1b,0xf8, - 0x1d,0x47,0xcf,0x77,0x9b,0xed,0xea,0x8a, - 0x3e,0x22,0x39,0xab,0x8a,0xf6,0x56,0xcb, - 0xc2,0xe,0xfb,0xbc,0x27,0xf8,0xa5,0x3a, - 0x82,0xf,0xd6,0x4f,0x2,0x93,0xcf,0xb5, - 0x69,0x72,0xc0,0xa4,0xda,0x2a,0x39,0xe5, - 0xc9,0x5a,0xd3,0x59,0x6e,0x4f,0x93,0x43, - 0x43,0x9e,0xd,0x0,0xec,0x2f,0xa2,0xab, - 0x4d,0x94,0x46,0x57,0xab,0xbf,0xc0,0xbf, - 0x6f,0xeb,0xe2,0x75,0xb3,0x85,0x1f,0xab, - 0x68,0x92,0x96,0xd9,0x60,0x54,0x3e,0x2d, - 0xfa,0x8b,0x7a,0x39,0xdb,0xce,0x8f,0x8f, - 0x8f,0x78,0xdb,0x88,0x65,0x0,0x10,0xbe, - 0x58,0x36,0x57,0x84,0x89,0xbf,0x59,0x3, - 0x9e,0x1f,0x9d,0x9c,0x94,0x49,0x5b,0x1, - 0x3e,0xe0,0x8b,0xe2,0xa2,0x9c,0x9c,0x44, - 0x3f,0xfa,0x8a,0x40,0x9f,0xbc,0x5,0x36, - 0xff,0xb6,0x6,0x9e,0x7b,0x4a,0x44,0x93, - 0xbb,0x3b,0x4f,0xa1,0x40,0x5f,0xa3,0xb6, - 0xd1,0xde,0xdd,0xc5,0xad,0x93,0x91,0xcb, - 0x59,0x20,0xa0,0xb0,0xfd,0x8f,0xf1,0xd0, - 0x7d,0x5,0x3b,0x9f,0xf4,0x67,0xf5,0xf6, - 0x65,0x73,0x5,0xe7,0x3a,0xad,0xb3,0x17, - 0xf9,0x76,0xde,0xbf,0xca,0xdf,0xc5,0x83, - 0xf4,0xfc,0x1f,0x4f,0xe3,0xea,0x34,0x4f, - 0x60,0x3b,0xc4,0xfe,0x6d,0x58,0xc9,0xd5, - 0xce,0xc0,0x3a,0x45,0x5c,0x9d,0xd4,0xc9, - 0x3e,0xad,0x25,0xc4,0xe4,0x19,0xa4,0xa4, - 0xd3,0x7d,0xd2,0xb6,0x44,0x6a,0xd4,0xde, - 0x5,0x54,0x67,0x16,0x60,0x7b,0x51,0xe7, - 0x6b,0xd1,0x73,0xe,0xd8,0xcc,0x2,0x92, - 0x2f,0xd6,0xeb,0xfc,0xa6,0xdf,0x6c,0xe8, - 0x2f,0xb4,0x6b,0x7c,0x1b,0x2d,0xb1,0x1, - 0x46,0x17,0xec,0xaa,0xe8,0x51,0x81,0x9, - 0xe0,0x8e,0xec,0x7,0x4a,0xd0,0xce,0xe2, - 0x76,0xf5,0x13,0x5c,0x31,0xcb,0x19,0x8c, - 0x6e,0xb1,0x10,0x9d,0xf2,0xc3,0xe3,0xb6, - 0x78,0x14,0x8b,0xdb,0x47,0x22,0xf8,0xfc, - 0xee,0x2e,0xef,0x2f,0x57,0x55,0xfd,0x12, - 0xbe,0xef,0xee,0xd8,0x25,0x94,0x1,0xe6, - 0xcc,0xa1,0xbb,0xbc,0xcf,0xe6,0x9e,0x0, - 0xa4,0xc6,0xb9,0x7e,0xf0,0x21,0xc1,0x19, - 0xcb,0x3c,0xdf,0xfc,0xf0,0x76,0xf9,0xc7, - 0xf5,0xa,0x10,0xcb,0xf6,0x86,0x8f,0x48, - 0xaf,0xa4,0x9d,0xa9,0xa8,0xd9,0xfc,0x51, - 0x7c,0xfc,0x30,0x8d,0x12,0xdc,0x18,0x63, - 0xc0,0x38,0x5,0x0,0x84,0x74,0x4a,0x98, - 0xb6,0xcc,0xce,0xe1,0xdc,0x48,0x54,0xc6, - 0xcf,0xcf,0xa8,0x3c,0x39,0x81,0x8d,0xcd, - 0x64,0x3a,0x40,0x28,0x15,0x9f,0x22,0x52, - 0x2e,0x92,0xc2,0x1a,0x52,0x3c,0x85,0x89, - 0xc4,0xc5,0xc5,0x14,0x30,0x6f,0x45,0x7f, - 0x93,0x31,0x8c,0xd0,0x29,0x4,0x7b,0x93, - 0x43,0x66,0x76,0xb,0xa0,0x51,0xd3,0xcf, - 0x94,0xa,0xc3,0x95,0x89,0xc9,0xf4,0x7b, - 0x2f,0x80,0x68,0xf,0x80,0x67,0x62,0xee, - 0x66,0x1a,0xc3,0xfa,0x39,0xf7,0x7c,0x2e, - 0x2e,0x4b,0xc8,0x37,0xb6,0x1e,0xa6,0x7b, - 0x77,0x17,0x2d,0x77,0x57,0x45,0xbd,0xd6, - 0x8a,0x4b,0x24,0x21,0x7e,0x3d,0x1b,0xa8, - 0xdf,0xa7,0xe7,0x38,0xc5,0x9c,0x61,0x1e, - 0x86,0x55,0x72,0x7d,0x55,0xa0,0x8f,0x22, - 0x2e,0xd3,0x1c,0x56,0x24,0x81,0x8d,0x3c, - 0x3a,0x4f,0xd8,0x78,0xf7,0xf5,0x2,0xc8, - 0x12,0xc8,0xe5,0xbb,0xf7,0xba,0xbe,0xd9, - 0x88,0xc3,0xa6,0x25,0x21,0xa1,0xa2,0x5a, - 0xae,0x9c,0x96,0x2b,0x68,0x17,0x1a,0xc7, - 0x3f,0xbe,0xf6,0xa9,0x2a,0x1b,0x20,0x2e, - 0x86,0xbd,0xc2,0x25,0x6c,0x83,0x7f,0x74, - 0xfb,0x74,0x96,0x79,0xe8,0x8b,0xc0,0x3d, - 0xf0,0xed,0xcb,0x17,0xdf,0xd3,0xcf,0xd, - 0x5c,0x3,0x25,0xe1,0x7f,0x96,0x53,0xa4, - 0x47,0x3,0xf8,0xff,0x24,0xcd,0xfb,0x55, - 0xb3,0xb9,0xce,0xb7,0xe5,0x9c,0x65,0x94, - 0x0,0x67,0x73,0x77,0xbb,0x0,0xb8,0x61, - 0xb4,0x9b,0x2d,0x9e,0x70,0x58,0xfa,0xaf, - 0x17,0x44,0xef,0x25,0xc9,0x76,0xbe,0x5e, - 0xbd,0xed,0x21,0xe,0xfa,0x7a,0xbd,0x86, - 0x39,0x45,0x35,0xcb,0xe9,0x6d,0xe6,0xab, - 0xdd,0xa2,0xea,0x15,0x40,0x17,0x2f,0x65, - 0xcd,0x9e,0xaa,0xa,0xe3,0x29,0xb2,0x3a, - 0x6,0x42,0x65,0xe,0x77,0xcd,0x34,0xdf, - 0x2d,0x0,0x68,0x57,0x44,0xa1,0x6f,0xd2, - 0x2,0x6e,0x40,0x80,0x2c,0xba,0x86,0x79, - 0x83,0x59,0xce,0x3e,0x79,0x91,0xac,0x48, - 0x25,0xb5,0x12,0x27,0xfb,0xd1,0x5c,0xbb, - 0xa4,0x6e,0xb5,0x3,0x35,0x9c,0xa7,0x58, - 0x64,0xe8,0x50,0x5f,0x44,0xa7,0x50,0x13, - 0xb0,0x5e,0xd5,0xd,0x52,0x63,0xf4,0x55, - 0xae,0xae,0x6f,0x9e,0x2f,0x9a,0xeb,0x62, - 0x95,0xaf,0xab,0xc,0xf,0x7b,0xca,0x4b, - 0x4d,0x37,0x97,0x6f,0x81,0x8a,0xbe,0x44, - 0x72,0x16,0x0,0x5f,0x4b,0xbe,0x86,0x7f, - 0x9b,0x77,0x59,0xf4,0x77,0x67,0xe5,0x6a, - 0xb7,0xdc,0xd6,0xeb,0xb3,0x48,0xcb,0xe5, - 0x69,0x70,0x3e,0xe9,0xc4,0x66,0xda,0x7c, - 0x81,0xbd,0xb8,0xaa,0x37,0x17,0xfa,0xc4, - 0x58,0xda,0xdd,0x9d,0x5d,0x6a,0x82,0x87, - 0xe2,0xa8,0x60,0xb,0x1e,0xfd,0x69,0xf9, - 0x7a,0xb9,0x7a,0x8b,0x84,0xa,0x64,0xf5, - 0xa2,0x93,0xb8,0x4b,0x13,0x9,0x9b,0xef, - 0x86,0x58,0x9f,0xcc,0xa8,0xc1,0xd2,0xd8, - 0xa0,0xa9,0x2c,0xd1,0x72,0x7c,0x8d,0xb7, - 0x35,0x50,0xf4,0x0,0x53,0x66,0x15,0x91, - 0xaa,0x66,0x6a,0xe6,0x63,0xa,0x6e,0x23, - 0xcb,0xdf,0xed,0x9a,0xa,0x6e,0x7e,0x46, - 0x58,0x5d,0x56,0xf9,0x36,0x87,0x25,0xe4, - 0x44,0xbf,0x36,0xce,0x6,0xb6,0xe,0xd8, - 0x2f,0x6b,0x49,0x78,0xaa,0x31,0x23,0x9e, - 0x36,0x19,0x95,0x80,0xb0,0x18,0x28,0xb0, - 0x14,0x1a,0x79,0xc9,0x81,0x67,0xbd,0x5a, - 0x6d,0x2f,0x91,0x81,0xcb,0x81,0x68,0x5f, - 0x67,0x6a,0x7e,0x78,0x59,0x3e,0x17,0xe9, - 0xb1,0x9,0x6a,0x48,0x1b,0x2,0xb9,0xf6, - 0x7c,0xde,0x2c,0xaa,0xd8,0xd3,0xc,0x2f, - 0xbd,0x5d,0xe7,0xcb,0x8d,0x67,0x5d,0x44, - 0xb2,0xb9,0x1,0x22,0xd5,0x26,0xdb,0x16, - 0xab,0x92,0x2e,0x4b,0x79,0x4f,0xd1,0xf5, - 0xcd,0xd6,0x9,0xc6,0xf8,0x4d,0xb3,0xa8, - 0x91,0x49,0x8d,0xf9,0xe6,0x5d,0x2e,0x56, - 0x79,0xf5,0x35,0x90,0x93,0xeb,0x65,0xe, - 0x34,0xc6,0x74,0x13,0x6b,0x7b,0xaa,0x5f, - 0xa5,0x39,0x55,0xff,0xa,0xb9,0x95,0x86, - 0x6,0x6,0x48,0x86,0x97,0xaa,0x4e,0x0, - 0x52,0x2b,0x95,0x73,0x16,0x25,0x1c,0x34, - 0x61,0x4b,0x72,0x39,0x91,0x92,0xa8,0xb9, - 0xcb,0x37,0xf9,0xa2,0x81,0xfd,0x5a,0xad, - 0x37,0x78,0x33,0xb8,0xa9,0x59,0x4b,0xd, - 0x44,0x2f,0xf2,0x8b,0x36,0x66,0xde,0xff, - 0x37,0xf1,0xd,0xb8,0x85,0x8e,0x57,0x91, - 0x70,0x38,0xc8,0x91,0x79,0x3,0xb6,0x91, - 0xa6,0x25,0x46,0x8b,0xab,0x91,0xe3,0x6e, - 0x31,0x2e,0xec,0xf9,0x22,0xdf,0x6c,0x0, - 0x49,0xc1,0x38,0x71,0x53,0x20,0x8b,0xe3, - 0x3b,0xca,0x8d,0xeb,0xf4,0x16,0x59,0x5a, - 0xc6,0xd1,0xe,0xf3,0x94,0xb5,0x31,0x2c, - 0x53,0xce,0xa4,0x56,0x43,0x40,0x7b,0x72, - 0x23,0x87,0xb9,0xb5,0xb3,0x7b,0x1c,0x30, - 0x26,0x1,0x36,0xa9,0xbf,0xdc,0xe1,0xfe, - 0xcb,0x94,0xc2,0xfc,0x44,0xde,0x4c,0x95, - 0x10,0x2b,0x60,0xa1,0xf1,0x8,0xd0,0xde, - 0x7a,0xb,0x2b,0x10,0x25,0x78,0x31,0x51, - 0x45,0xa0,0xbd,0x60,0x9,0x76,0x70,0x6b, - 0xaa,0xd3,0xc7,0x4b,0x69,0xcb,0x5,0xe9, - 0x97,0xeb,0x7a,0x83,0xb0,0x93,0x69,0x6b, - 0x28,0x7e,0x61,0x6d,0x6a,0x6d,0x26,0x5a, - 0x4b,0xe4,0xc8,0x0,0xf3,0xbe,0xfd,0x37, - 0xd9,0xa,0xa1,0x65,0x5c,0x4e,0xb7,0x61, - 0xaa,0xc1,0x90,0xdf,0x20,0x6d,0x23,0x3c, - 0x63,0x3,0xae,0xa8,0xa,0xc0,0xc2,0xaf, - 0x3e,0x56,0x38,0x1e,0xb3,0x19,0x9c,0xd6, - 0x88,0x46,0x10,0x19,0x49,0xe5,0x3c,0x5f, - 0xce,0x6a,0xa4,0x92,0xe0,0xfe,0x2,0x3e, - 0xb,0xfe,0x15,0xdd,0xe9,0xb8,0x1f,0x71, - 0xa8,0x42,0xfa,0x1c,0x99,0x6a,0xc2,0xa2, - 0xde,0x72,0xb5,0xed,0x51,0x5e,0xef,0xa6, - 0xde,0xf6,0x7b,0xbd,0xef,0x9b,0xd,0xb0, - 0x6e,0x24,0xe7,0xf8,0x84,0xd2,0x3f,0xe9, - 0xd5,0x78,0x4f,0xc2,0xc5,0x6,0x69,0x75, - 0xf,0x3a,0xd9,0xc2,0xa1,0x25,0x41,0xd1, - 0x1b,0xec,0x2d,0x32,0x78,0x48,0x6b,0xde, - 0xfb,0x74,0xe3,0xc,0x2a,0xff,0x0,0xa3, - 0xda,0x74,0x18,0x95,0x82,0x43,0x86,0xcf, - 0xf6,0xa9,0xd8,0xaf,0xf,0x3b,0x36,0xb1, - 0xb7,0xcb,0x99,0x1c,0xd4,0x39,0x12,0xd2, - 0x16,0xe5,0x3a,0xa6,0x4e,0x7d,0xc0,0x94, - 0xc,0xf5,0x2c,0xd,0x46,0x60,0xe3,0x1, - 0x74,0xd7,0xab,0x1b,0x7d,0xc7,0xa9,0x2c, - 0x4f,0xaf,0xab,0xbb,0x3b,0x35,0x17,0x71, - 0x6f,0xf0,0xfb,0x50,0x5d,0xf5,0x82,0xc4, - 0xd0,0x2e,0x7f,0x5c,0x30,0xde,0x48,0xac, - 0x5d,0x2d,0x56,0x11,0xed,0xa6,0x51,0x19, - 0x1a,0xfe,0xb3,0xd3,0xf4,0x83,0xa3,0x32, - 0xf9,0xfd,0x2b,0xbf,0xe5,0xbd,0xa6,0x4a, - 0x88,0xb,0x59,0x25,0xf1,0x3b,0x55,0xa7, - 0x57,0x74,0xaa,0x46,0xdc,0x6c,0xcd,0x12, - 0x6,0x87,0x44,0x61,0x16,0x71,0x12,0x45, - 0x2e,0xd,0x20,0x1,0x80,0xcf,0xd5,0x72, - 0xe8,0x15,0xb2,0x30,0xda,0x8,0xf8,0x95, - 0x22,0x2f,0x5f,0xf3,0x9b,0x5e,0x7e,0xaa, - 0x6b,0x5e,0x26,0x5d,0xe4,0x93,0xcc,0x49, - 0xb9,0xbb,0xbb,0x98,0xb8,0xe5,0xfa,0xd7, - 0xbb,0xcd,0x3c,0x2e,0x4,0x14,0xae,0xa6, - 0xd3,0xa1,0x8f,0x5b,0x28,0xf8,0x5e,0x3e, - 0xc6,0x20,0xa4,0x6c,0xaa,0xcc,0x60,0x44, - 0x40,0x98,0x8c,0xaa,0xa7,0xee,0xb8,0x38, - 0x49,0x5f,0x1,0x49,0xef,0x64,0x5e,0x54, - 0x13,0x60,0x2,0x8b,0xe3,0xe3,0x92,0xd, - 0xdf,0x57,0x80,0x5f,0xd9,0xc6,0x70,0x4a, - 0x46,0xfe,0xe7,0xe3,0xf8,0x21,0x93,0xb9, - 0x98,0x70,0xe0,0x57,0xf5,0xe0,0xca,0xd6, - 0xb6,0x8,0x2a,0x31,0x8c,0x68,0x9f,0x61, - 0xb3,0x16,0x17,0xf5,0xe9,0x6d,0x7b,0x92, - 0xf8,0x2,0x24,0x62,0xb1,0xa,0x58,0xa7, - 0x22,0xbc,0x4e,0x85,0x77,0x9d,0x8a,0x89, - 0x2e,0x6a,0x83,0x9,0x98,0xc3,0x5,0x2c, - 0xf4,0x3,0x1d,0x37,0x77,0xcf,0x23,0xbc, - 0x1c,0x2e,0x6b,0xba,0x13,0x22,0xe4,0xb8, - 0x39,0xf2,0x61,0xe5,0x81,0xe8,0xcd,0x4f, - 0xa2,0xde,0x15,0x90,0x1c,0xc8,0x64,0x40, - 0x3b,0xbd,0x6a,0x87,0xf4,0x13,0x67,0x36, - 0xb6,0xd,0x13,0xd8,0xa3,0x18,0xba,0xcc, - 0x97,0x88,0xa5,0xa0,0x18,0xbb,0x26,0xaa, - 0x1e,0x9e,0x9e,0xb5,0x89,0x14,0xe5,0x65, - 0xac,0x7a,0x15,0x4c,0xc6,0x6a,0xf9,0x9c, - 0xea,0xc5,0x2,0x46,0x4d,0x72,0x64,0xe8, - 0x70,0xe5,0x48,0xab,0x73,0xa,0x9b,0x91, - 0x34,0x4c,0xdd,0x80,0xa8,0x76,0x1a,0x6b, - 0x54,0x21,0x1c,0xfe,0xd5,0x2,0xa5,0xff, - 0x8a,0x72,0x2b,0xd3,0x8a,0x35,0x52,0x67, - 0x15,0xf2,0x98,0xd0,0x52,0x7d,0x7c,0xac, - 0xd5,0x61,0xb4,0xcd,0xe6,0xa2,0x9e,0x70, - 0x96,0x10,0xf6,0xa5,0x4e,0x8f,0xce,0x81, - 0x76,0x71,0xd8,0x3,0x56,0x96,0x70,0x31, - 0xc3,0x72,0xb0,0x6a,0x88,0xbb,0xfb,0x1b, - 0x22,0x35,0x9b,0xe9,0xd,0xef,0xe2,0xc8, - 0xd3,0x41,0x31,0xf1,0xb7,0x16,0x9d,0x14, - 0x62,0xe1,0xbc,0xb5,0xf6,0xa9,0x4e,0x92, - 0xf9,0xd1,0x9,0x67,0xfd,0x24,0x9,0x44, - 0xf0,0xe,0x28,0x0,0x49,0xc4,0x1c,0x70, - 0x1,0x22,0x22,0xb6,0xe6,0xd6,0xed,0xad, - 0xa3,0x6f,0x76,0x2f,0x4d,0x1b,0x9c,0xca, - 0x25,0xdb,0x59,0x8e,0x23,0x8c,0x34,0x21, - 0x9f,0xe6,0x3c,0x1f,0x1f,0x41,0x77,0x7a, - 0xc7,0x6a,0xec,0x3c,0x7d,0x24,0x12,0x28, - 0x5a,0xc2,0xbd,0xb8,0x26,0xc8,0xf6,0x1, - 0xdf,0xf8,0xde,0x24,0xd2,0xb0,0xad,0x6, - 0x9c,0xbc,0x0,0xbd,0xc4,0x60,0x1a,0x76, - 0x6d,0x75,0x75,0xd,0xdc,0xc6,0x4b,0x7e, - 0xb9,0x58,0x1b,0x57,0x64,0x26,0xff,0x25, - 0xee,0xa0,0x91,0x94,0xd8,0x44,0xc,0xa8, - 0x94,0x7c,0x86,0x4b,0xe,0x3c,0x95,0x3c, - 0xc0,0x25,0xb2,0x7a,0x80,0x4c,0xe0,0x6, - 0x25,0x28,0x83,0xda,0x6,0x77,0xa8,0x57, - 0x87,0xb3,0x78,0x54,0xf2,0x36,0x5e,0xba, - 0x75,0x11,0x35,0x34,0x9b,0xd,0xe2,0x3, - 0x41,0xfa,0xb,0xbd,0x5e,0x3f,0x62,0x38, - 0xb8,0xcc,0xa8,0x7,0xd9,0xca,0x1f,0x56, - 0xce,0x20,0x0,0xab,0x44,0xac,0x4c,0x9f, - 0xaf,0xe,0x2f,0xfb,0xdd,0x92,0xd6,0xdf, - 0x5f,0x41,0xe8,0x63,0x44,0x1d,0x14,0x3a, - 0xa6,0x74,0x3f,0x1b,0x6b,0x8a,0x32,0x5c, - 0x68,0xfb,0xb3,0x23,0x97,0xf8,0x11,0x27, - 0x9b,0xe4,0x42,0x5f,0x6c,0x61,0x5d,0x8b, - 0x1d,0x0,0x51,0x84,0x6d,0x9c,0x2a,0x6, - 0xe7,0x14,0x26,0x9a,0x8c,0xb5,0xfb,0xff, - 0x82,0x38,0xa5,0x3,0x15,0x26,0x43,0xa4, - 0x12,0x18,0x1f,0x3a,0xea,0xd4,0x43,0x95, - 0x75,0x69,0x77,0x18,0x57,0x99,0xe4,0xf5, - 0x4f,0x4e,0x0,0xda,0x36,0x87,0xea,0x0, - 0xae,0x4b,0x74,0xfa,0x5,0x2e,0x4d,0xb8, - 0x21,0x81,0x59,0x9b,0x21,0x11,0xb9,0x76, - 0x30,0x88,0x49,0x8e,0x70,0x94,0x93,0xe9, - 0x1f,0xea,0xe2,0x14,0x8,0x29,0xef,0x5f, - 0xe7,0xdb,0xf9,0x84,0xcb,0x8f,0xf6,0xe9, - 0x6e,0xf9,0x41,0x9a,0x97,0x94,0x97,0x76, - 0x3b,0x78,0x2f,0x61,0x5e,0x31,0xf1,0x74, - 0x5,0xf7,0xe5,0x3e,0x7d,0x8b,0xb2,0xb8, - 0x16,0x22,0x8c,0xf2,0x17,0x30,0x81,0xcc, - 0xfc,0x54,0x43,0x93,0x49,0x92,0xfe,0xd1, - 0x53,0x14,0x11,0xa6,0xa7,0x5a,0x44,0xd8, - 0x6e,0xe9,0x1b,0x86,0xe4,0x5,0xb4,0x4e, - 0x8f,0x9c,0xa6,0xf4,0x99,0x71,0xa1,0x95, - 0x77,0xfc,0x38,0x3a,0xb9,0x6a,0x41,0x8a, - 0xcc,0x18,0xa4,0x4d,0x91,0xe9,0x99,0x5e, - 0x8a,0xcc,0x2a,0x60,0x2a,0xf8,0x8c,0x91, - 0x94,0x82,0xef,0x28,0x87,0xda,0x56,0x2, - 0xd9,0x0,0x97,0xe4,0xbf,0x63,0x41,0xb8, - 0xa5,0xfd,0x8c,0x51,0xf7,0xc5,0xf0,0x10, - 0x52,0xbe,0xe9,0x15,0xde,0xe9,0x21,0xca, - 0xdb,0xa7,0xcd,0xe6,0xeb,0x25,0x6a,0xe8, - 0xaa,0xa1,0xa3,0xb1,0x3e,0x92,0x7c,0x88, - 0xe0,0x72,0xf0,0x32,0x90,0x15,0xb0,0x76, - 0x4d,0x3f,0x1d,0xf6,0x88,0xa,0xb2,0x3c, - 0x2c,0x55,0x35,0x9b,0x70,0x31,0x9e,0x89, - 0xe5,0x2c,0x1,0x93,0x87,0x6a,0xef,0x6b, - 0x52,0x26,0x49,0x46,0x32,0xb1,0xb7,0x91, - 0x65,0x7c,0xf9,0x64,0xe1,0xb1,0x14,0x32, - 0x5e,0x14,0x27,0x25,0x1c,0x66,0xbd,0x2, - 0x49,0xda,0xad,0x4,0xfd,0x93,0x93,0xb6, - 0xae,0x3c,0xcc,0x6a,0x3,0x5a,0x3e,0x89, - 0x2c,0xc1,0x18,0x9f,0xa6,0x2e,0x71,0x1b, - 0xfa,0xc4,0xef,0x70,0xf6,0x4c,0x75,0x92, - 0xdc,0x6b,0x26,0xe4,0x77,0x24,0xfc,0x5, - 0xce,0xaa,0x84,0x5d,0x25,0xbe,0x8b,0x8, - 0xc6,0xfe,0xdf,0xc3,0x4,0x95,0x5a,0x44, - 0x29,0xa0,0x28,0x43,0x50,0x85,0xb6,0xd8, - 0xf9,0xc4,0x91,0x34,0x9f,0x9c,0x8c,0xa2, - 0xbf,0x8b,0x48,0x39,0x85,0x15,0xfb,0x9b, - 0x5d,0x1,0x57,0x33,0x6a,0x2,0x13,0xc9, - 0xff,0x4e,0x11,0x73,0x61,0x2e,0xe0,0x3, - 0x18,0x6,0xff,0x8d,0x63,0xf1,0x89,0xbb, - 0x81,0xd8,0xcc,0x6e,0xa7,0x35,0x40,0xe3, - 0x9f,0xd6,0x8b,0x61,0x91,0x62,0xe1,0x21, - 0xab,0x83,0x44,0x1c,0xfe,0xcd,0xea,0xbd, - 0x98,0xf2,0x34,0xac,0xd7,0x40,0xf5,0x52, - 0x4e,0xda,0x25,0x57,0xf9,0x83,0x3a,0x23, - 0x57,0xf1,0x43,0x5a,0x25,0xd1,0xf2,0xc, - 0xe,0xce,0xec,0x29,0xa6,0x89,0xb3,0x32, - 0x83,0xb3,0x82,0xdf,0x17,0xb3,0x50,0x9b, - 0x94,0xc3,0xe5,0xb8,0xf6,0x56,0xc6,0xbc, - 0x0,0xec,0x63,0x32,0x22,0xa2,0xa0,0xad, - 0x20,0x95,0x92,0xd6,0x21,0xa9,0x2e,0x9e, - 0xf5,0xeb,0x17,0x24,0x59,0x97,0xbf,0xca, - 0xdf,0x61,0x31,0x5e,0x5b,0x33,0x23,0x51, - 0x43,0x45,0x72,0xd2,0x95,0xfb,0x7e,0xb3, - 0x5e,0x5d,0xe1,0xef,0xef,0xb9,0x98,0x38, - 0x6e,0x13,0x1c,0xa3,0x5c,0xcd,0x1c,0x97, - 0x5d,0xdd,0x65,0x55,0x0,0x48,0x36,0xd7, - 0x8b,0x66,0x1b,0x47,0x67,0xca,0x52,0xa0, - 0xe8,0x5f,0xaf,0xae,0x81,0xc2,0x2a,0xfa, - 0xaf,0x56,0xcd,0x92,0xb2,0xe0,0x64,0x44, - 0xd0,0xb6,0x2d,0x7e,0xb6,0x28,0x1a,0xc5, - 0xbc,0x10,0xbb,0x37,0xcb,0x2,0xab,0x9, - 0xb4,0x4f,0x3a,0xcf,0x6,0x69,0x3,0xff, - 0x7b,0x45,0xc6,0x22,0xf1,0x2c,0xb5,0xb1, - 0x6b,0xcd,0xe1,0x74,0x22,0x3e,0xf5,0xe5, - 0xe4,0x84,0xd8,0xb,0xe4,0xff,0x90,0xf9, - 0xc3,0xb4,0x1e,0x2b,0xd0,0xdb,0x2,0x25, - 0xb7,0xde,0xd5,0xf8,0x17,0xc7,0xdb,0xab, - 0x79,0xdf,0x40,0xa,0x4e,0x91,0x6f,0x1c, - 0xc9,0x96,0xb3,0x8,0xb,0x20,0xd5,0x9a, - 0x36,0x70,0x6c,0xb8,0x1c,0x7a,0x54,0x1d, - 0xe1,0xb2,0x88,0x63,0x23,0x94,0x7b,0x0, - 0xbb,0x11,0xda,0x53,0x45,0x46,0xee,0xe7, - 0x98,0x7c,0x66,0xa6,0x9d,0xd3,0xe1,0xce, - 0xaa,0x93,0x9c,0xc9,0xb6,0xa7,0x24,0xfb, - 0xfe,0x5f,0x2f,0xbe,0xff,0x16,0xaa,0x73, - 0xcb,0x80,0xd1,0xb4,0xbf,0x2,0xfa,0x7f, - 0xdd,0x54,0xf5,0x8b,0xe6,0x8a,0x94,0xcb, - 0x71,0x84,0xac,0x72,0xc3,0xb6,0x8a,0x6c, - 0xb3,0x22,0x60,0x18,0x61,0xda,0x35,0xec, - 0xc1,0xbf,0x7e,0xfd,0x32,0x82,0x5,0xc6, - 0x13,0x6a,0xae,0xc4,0x73,0xa0,0x6d,0x6b, - 0xe4,0x77,0x17,0x28,0xa1,0x9f,0xf6,0xf1, - 0xd4,0x6a,0x69,0x59,0xb0,0x34,0xb5,0xbd, - 0x24,0x5e,0x6,0x38,0xe6,0x6d,0xcd,0x39, - 0x1c,0x93,0xe1,0xfa,0x3c,0xcb,0xa6,0x8c, - 0xdf,0xf9,0x9,0xcb,0x50,0xda,0x93,0xc1, - 0xe0,0x8,0x93,0xb1,0xd6,0x6e,0xc3,0x75, - 0x80,0xc2,0x6,0x0,0x3a,0x5a,0x2d,0x6a, - 0x0,0xcf,0x19,0x9c,0xf6,0x34,0xfa,0x26, - 0x7,0xf0,0xab,0x70,0x2b,0x8,0x7f,0xd0, - 0x16,0xbc,0x69,0x72,0xda,0xaf,0x53,0xda, - 0xc,0x46,0x88,0x6e,0xd7,0x37,0xb7,0x55, - 0x46,0xcc,0xe9,0x75,0xbe,0xde,0x0,0xf, - 0x86,0xdc,0xf1,0x35,0xb4,0x6,0x1c,0xc9, - 0xbb,0x6d,0xb2,0x2f,0xf1,0x32,0x8c,0x67, - 0x78,0x17,0x5,0xba,0x9b,0x19,0xdd,0x51, - 0x2b,0xf6,0xd6,0x97,0x7b,0x64,0x54,0x8a, - 0x15,0x54,0xc9,0x97,0xa,0xc3,0x56,0x1e, - 0xac,0x5b,0x31,0x55,0x3f,0xa0,0x51,0xf8, - 0x65,0x22,0xa5,0x8a,0xeb,0x3d,0xa3,0xaf, - 0xf5,0xd6,0xab,0x55,0xbd,0x21,0x69,0x28, - 0x97,0x2,0xf6,0x72,0x26,0xeb,0x14,0xac, - 0x37,0xce,0xb6,0xd4,0x40,0xaf,0xa2,0x99, - 0xbf,0x86,0xfd,0x69,0x3d,0xf0,0x25,0x60, - 0x26,0xe7,0xee,0xaa,0xd2,0xd2,0x55,0xe2, - 0x0,0x5c,0xb8,0xea,0xa1,0x4a,0x57,0xa, - 0xcd,0x81,0x2c,0x9f,0x3f,0xcb,0x1a,0xe0, - 0x9d,0x5f,0x1,0xac,0xbc,0x42,0xc1,0x7f, - 0x11,0xe3,0x25,0x57,0xa6,0xaf,0x13,0xe0, - 0x1,0x61,0x4f,0xeb,0x25,0x92,0xa,0xc0, - 0x16,0x36,0x77,0x77,0x5,0x11,0xd,0x52, - 0x29,0x33,0xb4,0x2f,0xb8,0x9c,0xb3,0xf1, - 0xa8,0x8e,0xc1,0x4b,0x60,0x24,0x90,0x8a, - 0xef,0xe,0xe1,0x77,0xcc,0xa8,0xaa,0x17, - 0x35,0x70,0x4c,0xbc,0x6,0x3b,0x72,0x51, - 0x34,0x2a,0xf8,0x65,0x85,0xba,0x90,0xcd, - 0xbf,0x43,0xad,0x18,0x2e,0x31,0x76,0x8e, - 0x8a,0xbe,0xb8,0x7b,0x84,0xe1,0x46,0x79, - 0xc2,0x8a,0x8f,0xd4,0x75,0x56,0xe1,0x4d, - 0x86,0x39,0x55,0x5d,0xae,0xaa,0xfa,0x4f, - 0x3f,0x7e,0xf7,0x1c,0xd8,0x2f,0xe0,0x36, - 0x50,0xdb,0xcd,0x6e,0x50,0x40,0x8f,0x42, - 0x28,0x83,0xf6,0x58,0x4c,0x28,0x83,0xd8, - 0x88,0x66,0xa1,0x37,0x95,0xe8,0xd6,0xb, - 0xba,0x8,0xc7,0x77,0xf9,0xa7,0x95,0xc0, - 0x76,0x62,0x35,0x10,0xc8,0x9c,0xbb,0xa8, - 0x8f,0x3f,0x60,0x3e,0xd6,0x5,0x47,0xc9, - 0xc9,0x78,0xca,0x7f,0xa5,0xa6,0x91,0x8f, - 0xd3,0x4c,0x49,0x62,0x7,0xfc,0x40,0xda, - 0xa1,0x32,0xe5,0x4b,0x25,0xf2,0xf3,0x43, - 0x96,0x6d,0xe7,0xf1,0x8e,0xe0,0x8c,0xb8, - 0x23,0x43,0xa2,0x6e,0xb1,0x58,0xbd,0xf5, - 0x8c,0x4e,0x64,0xb1,0x11,0x8a,0xaf,0x6e, - 0xa3,0x14,0xa5,0x5b,0x46,0x2a,0x8a,0xb8, - 0xa3,0x95,0x1d,0xa3,0xdc,0x22,0x5f,0xde, - 0xfc,0x0,0xa4,0x11,0xe,0x81,0x7e,0x5a, - 0xfd,0xf3,0x54,0x6f,0x3f,0xa4,0xd3,0xab, - 0x6a,0xd4,0xe8,0xd6,0xcb,0xb2,0xa9,0x37, - 0xac,0x19,0x3d,0x25,0x30,0x1b,0x89,0xa, - 0x4a,0x1b,0x1,0x94,0x64,0x0,0x63,0xb4, - 0x11,0x9a,0x63,0x8a,0xb6,0x43,0x5b,0x5a, - 0xe,0xf8,0xeb,0x93,0x9,0x62,0x3a,0x9b, - 0xe4,0x62,0xf1,0xc3,0xd4,0xb4,0x57,0xa1, - 0x24,0xdd,0xb6,0x64,0xe6,0x3,0xe0,0x59, - 0xea,0x6b,0x96,0xea,0xa2,0xfd,0x48,0x22, - 0x8e,0xdc,0x8c,0xa5,0x21,0xe,0xcc,0x2f, - 0x22,0xd6,0xc6,0x26,0x62,0xd7,0xab,0x4d, - 0x76,0x69,0xd9,0x89,0x36,0x22,0x2d,0xfd, - 0x61,0xc3,0xd2,0x1a,0x60,0x63,0x23,0xb2, - 0xeb,0x41,0xf5,0xb5,0x89,0x69,0xa9,0x34, - 0x3b,0xb8,0xd7,0xea,0x1f,0x38,0xc9,0x3c, - 0x67,0xc7,0x72,0xc6,0xec,0x75,0x78,0x8d, - 0x39,0x2b,0x91,0x8a,0x85,0xa6,0x2f,0x63, - 0x46,0x2c,0x9,0xc6,0xe8,0x1b,0x9a,0x6f, - 0xbd,0x45,0x79,0xa0,0x6c,0x24,0xf6,0xd0, - 0xca,0x11,0x36,0x9e,0x11,0x3e,0xd5,0x5a, - 0xb2,0xf0,0x89,0x44,0xa8,0x29,0x97,0x90, - 0x4a,0xe5,0x38,0x61,0x98,0x4a,0x13,0xf7, - 0xc3,0x2c,0x75,0x43,0xe3,0x1a,0xed,0xa9, - 0x5d,0xeb,0xe4,0x2,0x6e,0x9a,0x71,0x24, - 0x44,0x60,0x11,0x33,0x5c,0x8b,0xb8,0x44, - 0x8d,0x93,0xe5,0x0,0xbd,0x94,0x71,0x77, - 0xe7,0x40,0x7e,0xd,0x3c,0xad,0x9,0x19, - 0x80,0xaa,0x22,0xcc,0x14,0x35,0xb8,0xd0, - 0x4f,0xd5,0x80,0xbb,0xc5,0xad,0x61,0xe3, - 0x7,0x28,0xe5,0x14,0xaa,0xf0,0x52,0xac, - 0xfb,0xd3,0x66,0x1,0xd7,0x97,0x12,0xc1, - 0x96,0x4a,0x68,0x8c,0x3c,0x32,0x5c,0xfb, - 0xf5,0xbb,0x1f,0xa6,0x90,0xc,0x3,0x38, - 0x3d,0x7,0x24,0xe2,0x6b,0x9c,0x1b,0xe9, - 0xd5,0xac,0xd1,0xd2,0xda,0xbd,0x3a,0xc5, - 0xa6,0x92,0x21,0xeb,0x71,0xe8,0x4a,0x2e, - 0x11,0x4d,0xd7,0x19,0x8a,0xd8,0x53,0x57, - 0xaa,0x29,0xf0,0x38,0xfb,0x91,0x5d,0xb0, - 0xbf,0x13,0xa4,0x96,0x59,0xe,0xfb,0x2b, - 0xe4,0x9,0x15,0x2b,0xe6,0x4e,0x4c,0x89, - 0x9b,0x78,0x5,0x31,0xb5,0x5c,0x4e,0x4d, - 0xd4,0x4d,0x51,0x43,0x5a,0xe9,0xcd,0xc2, - 0x26,0xda,0x3,0x63,0xf9,0x17,0x83,0x89, - 0xe8,0x52,0x26,0xc,0x7,0x6e,0x75,0x7e, - 0xe,0x58,0xaa,0x58,0xa,0x24,0xa7,0x80, - 0xec,0x88,0x69,0x79,0xe0,0x2e,0xac,0x76, - 0xa5,0x26,0xc,0xd7,0x45,0x51,0xb9,0x1c, - 0x6d,0x91,0x3c,0x25,0xab,0x3b,0x21,0x40, - 0x82,0xb,0xf3,0x42,0xae,0xed,0x1e,0x15, - 0x1e,0x85,0x8d,0x5f,0x7d,0xec,0xf,0xe0, - 0x4f,0x58,0xd3,0xa,0xd1,0x28,0xe1,0xec, - 0x8a,0x74,0x43,0xcf,0x75,0x6b,0x2c,0xb4, - 0xd7,0x41,0x21,0xa9,0x41,0x86,0x78,0x8c, - 0xb6,0x72,0x12,0xc1,0x1d,0xa8,0x6a,0x69, - 0x36,0xf5,0xc2,0x7b,0xdd,0x26,0x2d,0xbb, - 0x65,0x46,0x5a,0x43,0xa4,0x10,0x84,0xfc, - 0x19,0x3f,0x84,0xa9,0x12,0xfe,0xe6,0xf2, - 0x3b,0xfc,0xb9,0x0,0x1a,0x7a,0x97,0xcf, - 0x58,0x19,0xa9,0xdf,0x19,0x5e,0x4c,0x52, - 0xc7,0x3a,0x6,0x12,0xb1,0x27,0x69,0x10, - 0x23,0xe1,0x34,0xbe,0x35,0x6d,0xd6,0xb8, - 0xb0,0x98,0x46,0xaa,0x4,0xa8,0xc2,0x22, - 0x8e,0xeb,0xaf,0xb,0xce,0xdb,0xab,0x2, - 0x86,0x55,0x97,0x50,0x6a,0x97,0x4a,0x4e, - 0x68,0x19,0x30,0x69,0x15,0xf,0xd8,0x30, - 0x5,0x4c,0x5,0xc,0xe3,0x79,0x51,0x82, - 0xa3,0x47,0xdd,0x4a,0x89,0xc4,0xe1,0x66, - 0xbe,0x3e,0x57,0xc9,0x44,0xce,0xd2,0x26, - 0x7d,0x95,0xbe,0x66,0xa8,0x6f,0x81,0x72, - 0xc1,0xab,0xcc,0xd2,0x5e,0x95,0x44,0x6b, - 0x55,0x48,0xa2,0x47,0x28,0x9e,0x8a,0x52, - 0x8e,0x41,0xed,0x19,0xe9,0x96,0x45,0x48, - 0x3,0x79,0x40,0xb0,0xe4,0xb2,0x3a,0xaf, - 0x97,0x47,0xde,0x17,0x38,0x94,0xc,0x79, - 0xf8,0x6f,0xb4,0xcc,0x1c,0x40,0xd7,0x3e, - 0x80,0xd6,0x2a,0xd8,0x83,0x51,0x26,0x72, - 0xac,0xc4,0x65,0x71,0x73,0xc9,0x57,0x99, - 0x5a,0x4,0xaa,0x77,0xc1,0xce,0xd3,0x2d, - 0xa,0x97,0x87,0x55,0x7a,0xcd,0x5,0x28, - 0x43,0x85,0xca,0xd3,0x2b,0xe6,0x19,0x32, - 0x34,0xf7,0x32,0x8e,0x48,0x7d,0x74,0x9, - 0x44,0x5,0x2a,0x23,0xf0,0x28,0x2d,0x46, - 0xfc,0xc2,0x5f,0xee,0xae,0xf0,0xb6,0xc7, - 0x6b,0x70,0x86,0x8a,0x2c,0xe0,0xbe,0x47, - 0xcd,0x53,0x99,0x23,0xae,0x3f,0xe0,0x84, - 0x93,0x2b,0x18,0x88,0xad,0x29,0x14,0xe5, - 0x2e,0x9a,0x9,0xd2,0xe5,0x33,0x1c,0xe9, - 0x68,0x76,0x77,0x17,0x1c,0x2b,0x15,0x3f, - 0x30,0x4e,0x2a,0x83,0x56,0x3b,0x36,0x51, - 0x82,0xa3,0x54,0x3,0xb4,0x89,0xe,0x1c, - 0xe3,0x22,0x5b,0x8,0x84,0xe5,0x85,0x39, - 0x83,0xd6,0x68,0x26,0x4,0x58,0x9,0x93, - 0xb4,0x31,0x52,0x4b,0xeb,0xc2,0xa4,0xb4, - 0x3a,0xb5,0xce,0x9,0x2c,0xab,0x61,0xa4, - 0x43,0xdd,0x25,0x66,0xe9,0x7a,0xf3,0x52, - 0x7c,0xec,0x69,0x97,0x68,0x59,0xde,0xae, - 0x90,0x3d,0xdc,0xe2,0x72,0x8f,0xa,0xe0, - 0xc4,0x5f,0xef,0xdb,0xd6,0x9c,0x2a,0x1f, - 0x5a,0x74,0x56,0x48,0xac,0xba,0x20,0x96, - 0x50,0xba,0x86,0xe7,0x6e,0x99,0x71,0xb, - 0x9,0x31,0x78,0x83,0x38,0xc2,0xc1,0xd3, - 0xf1,0x5c,0x65,0x81,0xf1,0x33,0x42,0x88, - 0x8f,0x9f,0x1a,0x5a,0xf1,0xca,0x77,0x77, - 0x33,0xe0,0x40,0x5f,0x41,0xb3,0xaf,0x9e, - 0x8a,0xb4,0xd1,0x2b,0x68,0x70,0x75,0xf1, - 0x6a,0x42,0x8a,0x94,0xac,0x3a,0x89,0x78, - 0x3,0xd1,0x49,0x73,0x12,0x4d,0xa2,0x13, - 0x99,0x27,0xe4,0x2b,0x52,0x1e,0x33,0x5a, - 0x66,0x4b,0xb1,0x47,0xab,0x64,0x7f,0xe, - 0xd7,0xe6,0xc,0x0,0x33,0xb8,0x36,0xd4, - 0xee,0xa1,0xb5,0xe1,0x85,0x2e,0x66,0x13, - 0x3a,0x3b,0xa,0xa,0x96,0x9,0x5f,0x2e, - 0x46,0xcf,0x7,0x26,0xf,0x99,0xfa,0xbe, - 0xb5,0xec,0xd4,0x12,0xd1,0xd5,0xc1,0x43, - 0x8c,0xbb,0x44,0x9a,0x5b,0xbc,0xa6,0x5d, - 0x3a,0x9d,0x33,0x75,0x2e,0xc0,0x69,0x97, - 0xbd,0x80,0x37,0x36,0x62,0x18,0x68,0xf9, - 0x9a,0xa4,0x4d,0x9c,0x8d,0xc4,0x8d,0x4a, - 0x3a,0xc3,0x17,0xd1,0x7e,0x7,0x86,0x8d, - 0x65,0x2e,0x77,0x4b,0xf4,0xe6,0x42,0x18, - 0x43,0xa,0xff,0x2,0xd5,0x7f,0x50,0x31, - 0xda,0x36,0x57,0xf8,0x7,0xbf,0xf0,0xe7, - 0x29,0x8a,0x31,0x17,0x91,0xa2,0xeb,0xf2, - 0x3e,0x4c,0xe5,0x2a,0xdf,0x2,0xd,0x74, - 0x7a,0xe,0x54,0x4e,0x3,0x17,0xf7,0x8c, - 0xac,0xfe,0xd9,0x70,0xc7,0xf6,0x2c,0x4, - 0x1d,0x94,0x46,0xd1,0x9,0xf2,0x65,0xef, - 0x3d,0x72,0xd8,0x7b,0x31,0x8,0x4,0x81, - 0xa1,0x7f,0xd9,0xd2,0xc7,0xeb,0x8b,0x91, - 0x8f,0x7b,0x8e,0x41,0x24,0xdf,0xeb,0xd9, - 0x6c,0xc5,0x13,0x8b,0xd,0x1f,0xc8,0xd, - 0x17,0x79,0x7,0x37,0x5d,0x72,0xe5,0x6a, - 0xe3,0xcf,0x3b,0x6c,0xbc,0xa8,0x76,0x68, - 0x5a,0xa2,0x9c,0x5,0x0,0xbd,0xf0,0x40, - 0xd2,0xb2,0xed,0xc2,0xbb,0x6f,0xbf,0xb4, - 0xa4,0xe2,0x43,0x2c,0xab,0xe3,0x3b,0x52, - 0x72,0x5,0xd5,0x15,0xdc,0xb9,0xcd,0xf5, - 0x2,0x8e,0x3c,0x7a,0xf9,0x54,0xcd,0x9b, - 0x66,0xd3,0x14,0x8b,0xfa,0xcb,0x1b,0x86, - 0xe3,0xae,0xb3,0x96,0x22,0xa3,0x59,0x56, - 0x9e,0x5d,0xc3,0x45,0x49,0xce,0x56,0xd3, - 0xc5,0xa,0xd9,0xe4,0xb3,0x6b,0xe9,0x2c, - 0x5,0x0,0x34,0x1f,0xcf,0x32,0xed,0xab, - 0x7f,0xb5,0xaa,0x62,0xfd,0xbb,0x68,0x66, - 0x6c,0x64,0x40,0xc9,0xa4,0xfe,0x8c,0xeb, - 0x24,0xe9,0xc3,0x9d,0x9f,0x2f,0x36,0xf1, - 0x20,0x19,0xf2,0x32,0x5f,0xd5,0x65,0x73, - 0x95,0x2f,0xe8,0x16,0x46,0xd1,0xb2,0x99, - 0xc,0x8d,0x51,0x4f,0x9e,0x1c,0xa3,0xb5, - 0x24,0x6d,0xd9,0x70,0x7d,0xe2,0xe3,0x48, - 0xfd,0x8e,0x70,0x4b,0xe4,0x1a,0x1c,0xda, - 0x15,0xad,0x5e,0x7a,0x71,0x8d,0xdb,0xb1, - 0x77,0x94,0x42,0xd1,0x55,0xfe,0xae,0xb9, - 0x42,0x32,0x80,0xe6,0x83,0x66,0xe0,0xe5, - 0x62,0xb7,0x69,0xde,0xd4,0x2f,0x58,0xc6, - 0x18,0x39,0x74,0x5e,0x68,0x58,0x3e,0xcd, - 0xe4,0x47,0x78,0xa5,0x2f,0x3c,0xad,0x44, - 0x1b,0x58,0x81,0x5,0x40,0xc1,0x50,0xfc, - 0xfa,0xfa,0x97,0x68,0x72,0xdf,0xfd,0x90, - 0x9d,0x27,0xdd,0x77,0xc3,0x3b,0x9a,0xc5, - 0x16,0x6,0x2,0x2c,0x21,0xc,0xc1,0x53, - 0x49,0xeb,0xa6,0x75,0x9b,0xe4,0xe2,0x85, - 0x36,0xc2,0xd7,0x35,0xdf,0x1b,0xf6,0x79, - 0x89,0xf9,0x30,0x14,0x33,0xb1,0x59,0x42, - 0x22,0x1e,0x25,0x9e,0x30,0xe1,0xf7,0x90, - 0xb3,0x77,0xc0,0xaa,0xf8,0xf7,0x8e,0x65, - 0x8c,0xcb,0x67,0xd0,0x6,0xfb,0x3d,0x2c, - 0x9f,0x65,0xf2,0xa3,0xe3,0xde,0xf1,0x56, - 0xa2,0x45,0xbe,0x9e,0xd1,0xd6,0xb1,0x1f, - 0xf,0xdc,0x39,0xd6,0xda,0x43,0x77,0x4e, - 0x8c,0x65,0x86,0x3b,0x37,0x6b,0xd9,0x39, - 0xd1,0xcd,0x81,0x9d,0xe3,0x4b,0xd7,0x65, - 0xe7,0x44,0xd7,0x7c,0x93,0xd8,0xa7,0xb5, - 0x73,0x3c,0x51,0xed,0x1c,0x4b,0xa0,0x9d, - 0x93,0x5e,0x6d,0x8e,0xd8,0xa0,0x4c,0x68, - 0x8f,0xbf,0xe7,0x72,0x81,0xb8,0x3c,0x89, - 0x22,0x41,0xbd,0x3c,0x33,0xb2,0xda,0x40, - 0x90,0x95,0x39,0x88,0xd,0x54,0xc1,0xb, - 0xad,0xe9,0x9,0x93,0x93,0xc2,0x78,0xbd, - 0xa3,0x78,0x6a,0x64,0xb5,0x2d,0xe7,0x81, - 0x51,0x90,0x9d,0xb9,0x6a,0x6b,0xac,0xa8, - 0x2c,0x60,0xec,0xb7,0x37,0xfa,0x4a,0xea, - 0xc3,0x14,0x5f,0x7c,0x98,0xd0,0x31,0xea, - 0x57,0x60,0x90,0xb8,0xf9,0x3f,0xd6,0xb3, - 0xaf,0xdf,0x5d,0xc7,0x32,0x39,0xe1,0xfe, - 0xea,0x6d,0xd4,0x1,0x2f,0x7a,0x68,0xb5, - 0x64,0xb1,0xb,0xd9,0x3a,0xed,0xe5,0x48, - 0xee,0xa5,0x47,0xec,0xce,0x25,0x5f,0xa5, - 0x2d,0x60,0xc3,0x9b,0x9e,0x6e,0xbc,0x6, - 0x26,0xbb,0xf1,0x11,0x17,0x2c,0x43,0x63, - 0x8a,0x4a,0x8b,0x94,0xe0,0x45,0x90,0xfd, - 0x3b,0xcc,0x1c,0x89,0xa2,0x69,0x89,0xff, - 0x20,0x55,0xf,0xf4,0x3c,0x1f,0x3b,0x1b, - 0x48,0x5e,0x55,0xa4,0xba,0xca,0x17,0xdf, - 0x61,0x59,0xc6,0xf9,0x12,0x1d,0x42,0x56, - 0x43,0x4e,0x81,0x24,0x58,0xed,0x3c,0xb9, - 0xd,0xf3,0x43,0x66,0xf1,0x83,0x9c,0x91, - 0x55,0x1c,0xe9,0x7,0x46,0x1b,0xb1,0x7f, - 0x3b,0x70,0x85,0x66,0xb,0xd6,0xfc,0x95, - 0xf7,0xa7,0x67,0x8d,0x3b,0xae,0xaa,0xbd, - 0xa4,0x8c,0x90,0xc9,0xdf,0x51,0x7f,0x68, - 0xff,0xa4,0x1f,0x5e,0x9e,0xd8,0x76,0x76, - 0x3b,0x2d,0x8c,0x2a,0x77,0xa1,0xda,0x55, - 0x7,0xd7,0xea,0xfb,0xa9,0x9e,0xd8,0x76, - 0x62,0xbb,0xf5,0x2d,0xcb,0x5d,0xa8,0x76, - 0x79,0xdf,0x40,0x65,0xfe,0xb2,0xab,0x39, - 0x80,0x20,0xc9,0xf6,0xb,0xca,0xc8,0x3, - 0xb,0x8c,0x10,0x34,0x73,0x64,0x48,0x8, - 0xd0,0xe9,0x2f,0xc8,0xf0,0x85,0xc1,0x48, - 0xeb,0xe6,0xd0,0x68,0xf5,0xa2,0xa,0x7c, - 0xb0,0x7d,0x0,0xf0,0xfd,0x7e,0xdf,0xe5, - 0xf4,0xa,0xea,0x34,0x7f,0xa7,0x64,0xf4, - 0x8c,0x41,0xa7,0x99,0xb1,0x88,0x1a,0xa5, - 0x7d,0x19,0x37,0x70,0x9,0x3,0x83,0x3d, - 0x9a,0x3d,0xb3,0xaa,0xb6,0xef,0xbf,0xa6, - 0x6,0x38,0xc,0x4,0x7a,0xe1,0xb,0xab, - 0x9b,0x89,0x94,0x28,0xc0,0x26,0x3d,0x68, - 0xe0,0x4f,0xad,0xaa,0xed,0xc0,0x73,0x8f, - 0x81,0x9b,0x85,0x2f,0xac,0x6e,0xc4,0xc0, - 0xf,0x49,0xfe,0x6c,0x94,0x29,0x72,0x12, - 0x43,0x94,0x24,0x52,0x75,0xc8,0xf3,0xa, - 0x1c,0x2f,0x54,0x59,0x80,0xc1,0xc9,0x23, - 0x48,0xfd,0x54,0x39,0xab,0x6d,0x4,0x44, - 0x3c,0x1d,0x6b,0x79,0x3a,0x98,0x15,0xde, - 0xb5,0xda,0x25,0xfd,0xc3,0xb7,0x41,0xf1, - 0x1a,0x1a,0x42,0x8e,0xf3,0x30,0x9a,0x52, - 0xd,0xb9,0x37,0x0,0xc7,0x57,0xfc,0x42, - 0xd3,0xa0,0x44,0x1f,0x95,0x93,0xe9,0xaf, - 0xe3,0xe,0x93,0xe1,0x80,0x4d,0xa6,0x5d, - 0xcd,0xd,0x93,0x41,0xbd,0xa,0xc0,0xde, - 0x2b,0x98,0xda,0x86,0x5d,0xda,0xaf,0xd8, - 0x2c,0x5f,0x75,0x9d,0xa5,0x3d,0x1c,0x36, - 0xd9,0x57,0x62,0xb2,0xaf,0x92,0xa4,0x5, - 0xaa,0xd4,0x3d,0xa1,0x1a,0x10,0x16,0xa4, - 0x1e,0x59,0xf1,0x72,0xa5,0xdd,0x4d,0x97, - 0xd7,0x5a,0x15,0x2e,0x70,0xc3,0x1f,0x24, - 0xd7,0x23,0xd5,0xb4,0xaf,0x75,0xbc,0x28, - 0xd3,0xee,0x83,0x49,0xb4,0x13,0x8b,0x96, - 0xf8,0x3e,0x98,0x38,0x42,0x98,0x60,0xe6, - 0x59,0x81,0x46,0xba,0xdc,0xcc,0xdd,0xcf, - 0xb1,0x77,0x9,0x0,0xd8,0x9b,0x89,0xc2, - 0xb4,0x16,0x95,0xa0,0xcd,0x5f,0xa3,0x30, - 0xee,0x73,0x8f,0xab,0x16,0xec,0xcb,0xbc, - 0xb1,0x2d,0x9,0x74,0x20,0x36,0xd2,0x9d, - 0x92,0xbe,0xd5,0xf4,0xed,0xd,0xdd,0x4e, - 0x3e,0x51,0x90,0x6e,0x7b,0xd0,0x70,0x25, - 0x3d,0x93,0xac,0x3a,0x99,0xba,0xa4,0x35, - 0x84,0x88,0xac,0x2a,0x0,0xc5,0x6d,0xf8, - 0x48,0x2f,0x7d,0x50,0x30,0x23,0xca,0xde, - 0x30,0xd1,0x8c,0xdb,0x11,0xee,0x1d,0xdd, - 0x8a,0x87,0x77,0xc5,0xaa,0xcd,0x44,0xef, - 0xb8,0xf,0xf,0x13,0x30,0x32,0x74,0xb1, - 0xcd,0x6e,0x49,0x99,0x75,0xf6,0xe7,0xf8, - 0xe7,0xea,0xf6,0xf3,0xfd,0xcf,0x5f,0xc1, - 0x9f,0x27,0xe2,0x4f,0x32,0xfe,0xfb,0xb3, - 0x14,0x9b,0xe2,0xf9,0x4f,0xf6,0x43,0xfa, - 0x37,0x1e,0xf,0x87,0xbc,0x0,0x15,0xb1, - 0xbb,0xc,0x34,0xd7,0xb,0x37,0xb1,0x4f, - 0x77,0x7c,0x24,0x9f,0x44,0xff,0x1,0xff, - 0x9d,0xbe,0x78,0x71,0xfa,0xd5,0x57,0xd1, - 0x27,0xac,0xf7,0x4f,0xa2,0x6f,0xbf,0x1d, - 0xbe,0x78,0x1,0x9f,0x4e,0x4f,0x7a,0xf1, - 0x1e,0x2f,0xb5,0x4f,0xdf,0x38,0x7a,0x3d, - 0xe9,0x99,0x10,0x57,0xc0,0x24,0x67,0x6f, - 0xfa,0x53,0xd8,0xa8,0xeb,0xa6,0x7c,0xbd, - 0x1e,0x6b,0xbf,0x71,0xb,0xa6,0xcd,0xac, - 0x8f,0xbd,0x7c,0x43,0x6b,0x35,0xdc,0x5d, - 0xbc,0x11,0x22,0x51,0x12,0xa7,0xd9,0x52, - 0xd9,0xe4,0xfc,0xd3,0xf2,0xe9,0xf9,0x38, - 0x8,0x2f,0xac,0xee,0x21,0x48,0x69,0x98, - 0x57,0xcd,0x65,0x7d,0xbd,0x2a,0xe7,0x48, - 0x3b,0xd,0xcb,0x23,0x26,0x5c,0xcb,0x8b, - 0x4d,0x4c,0x6,0x7d,0xdf,0x51,0x88,0x92, - 0x36,0x79,0x61,0xb7,0xae,0xa2,0x13,0x31, - 0x21,0xb8,0x26,0xaf,0x17,0x79,0x59,0xc7, - 0x67,0xa7,0x67,0xb3,0x34,0xba,0x8c,0x92, - 0xf4,0xe2,0xad,0x2,0x49,0x98,0xad,0xb6, - 0x34,0xcc,0x31,0x31,0x62,0x24,0x1a,0x82, - 0xce,0x3b,0xe6,0xf9,0x4,0xa4,0xe4,0x2, - 0x4d,0x22,0x3c,0xab,0x78,0xb5,0xaa,0x6a, - 0x56,0xf6,0x26,0x8b,0xd6,0xe4,0x75,0x95, - 0x85,0xca,0x19,0xbb,0xb0,0x38,0x1f,0x2c, - 0xfb,0x54,0xe1,0xa7,0x1a,0xe6,0x8e,0x1a, - 0xe2,0x61,0x94,0xf6,0xa2,0xf4,0x2f,0x46, - 0xf5,0x4d,0xbd,0x0,0x2a,0xb2,0xae,0x30, - 0x6,0xd4,0x6,0xe8,0xb1,0x6b,0x9f,0x85, - 0x81,0x5e,0x81,0x4d,0xfb,0x2b,0x92,0x30, - 0xa4,0xad,0xdb,0x8e,0x8b,0xf0,0x2e,0xfb, - 0xb,0x33,0x2,0xbe,0x49,0xf6,0x68,0xa3, - 0x9,0xd3,0x7d,0x47,0xab,0xf0,0xee,0x28, - 0xe3,0x9e,0x53,0xbd,0xc0,0x6c,0x98,0xf, - 0xd6,0x15,0xda,0x6d,0x46,0x7b,0xcf,0x62, - 0xea,0x23,0xd1,0x93,0x69,0xa3,0x29,0xb5, - 0x3c,0x30,0xbe,0x3,0xd9,0x72,0x84,0x91, - 0x1a,0x7,0x33,0x23,0xfd,0x82,0xed,0xc8, - 0x97,0xbe,0x8d,0x20,0x0,0xf9,0x4a,0xb6, - 0x82,0x4e,0x25,0xe3,0xc3,0xc5,0x86,0xad, - 0x43,0x19,0x7d,0x50,0x70,0xfd,0x92,0xe8, - 0x57,0xce,0x59,0x6c,0xd5,0x51,0xed,0x20, - 0x8a,0x78,0x8c,0xee,0x35,0xe4,0x40,0x3, - 0x91,0x6,0x4a,0x9a,0xed,0x80,0x63,0xfc, - 0xa0,0xdb,0x84,0xc0,0xf9,0xd0,0x30,0x7f, - 0xcd,0xe2,0x62,0xbd,0x4e,0x73,0x8e,0xdd, - 0x13,0xc3,0x82,0xc1,0x17,0x97,0x64,0x1a, - 0xb7,0x97,0xb8,0x57,0x67,0x8b,0x7d,0xaa, - 0xd4,0x14,0x5e,0x47,0x2c,0x47,0x86,0x96, - 0x8f,0x55,0x52,0xa6,0x7f,0x8,0x9b,0xa1, - 0xa1,0x52,0x40,0x60,0xbe,0xad,0x8d,0x80, - 0x7c,0x85,0x51,0xbd,0x5,0x8e,0x8f,0xb, - 0x53,0xd1,0x50,0x24,0x43,0x69,0xc7,0xcc, - 0xea,0xa8,0x2f,0xd5,0x6a,0x8e,0xd4,0x2, - 0xcb,0x37,0x9,0x88,0x42,0xb7,0x9b,0x82, - 0x5c,0xce,0x78,0x16,0x8e,0xf5,0x16,0xfa, - 0xa9,0x38,0x9c,0x2a,0xcd,0x67,0xb1,0xe0, - 0x36,0x60,0xdc,0x4c,0xba,0x18,0x6,0x14, - 0xda,0xb0,0x70,0x9c,0x2,0x41,0xb3,0xe2, - 0x79,0xff,0xb,0xd4,0xe2,0xe6,0xe5,0x56, - 0xc4,0xd5,0x94,0x56,0x2f,0xe8,0xf3,0xdb, - 0x2c,0x2a,0xee,0x5a,0x6d,0xb9,0xff,0xa, - 0x5b,0x1f,0xe9,0x8c,0x4d,0xf1,0xa,0x98, - 0x83,0x96,0xe3,0xaa,0x84,0x70,0xee,0xda, - 0x5d,0x98,0xde,0x5c,0xb1,0x2c,0x89,0xf6, - 0xcf,0x8e,0xb3,0x31,0xcf,0x5d,0xd7,0xcb, - 0xed,0x58,0xfb,0xdd,0xf7,0xc,0x92,0x5a, - 0xe2,0x8a,0x42,0xd5,0x9d,0xc7,0xee,0x43, - 0xfa,0x91,0xfb,0xfc,0x9b,0xc5,0x4,0xd9, - 0x28,0x45,0x98,0x9,0xf2,0x1,0xbb,0x5c, - 0x50,0x50,0x8d,0x5a,0xb4,0x69,0x26,0x62, - 0x4,0x1a,0xe1,0xbe,0x2f,0xdb,0x17,0x4e, - 0x8e,0xce,0x94,0xb4,0xf1,0x98,0x8e,0x90, - 0x6c,0x16,0xb6,0xc7,0xbb,0xee,0x30,0xd9, - 0xd2,0x96,0x3b,0x59,0xdb,0xcf,0x92,0x35, - 0x4f,0xa6,0x59,0x7f,0xd8,0x5d,0x3d,0x5f, - 0x2d,0x76,0x57,0x4b,0x9f,0x3d,0xd6,0xf9, - 0x93,0xbd,0x15,0xb2,0x2b,0xf7,0x98,0x3e, - 0x69,0x1f,0x7a,0xd4,0xc,0xc7,0x90,0x9, - 0x53,0xcd,0xa0,0x19,0x97,0xcc,0x55,0xd7, - 0x2d,0x6a,0xc4,0xb3,0x12,0x41,0x37,0xec, - 0x52,0x3c,0xfd,0x3d,0xd,0xa8,0xf8,0x22, - 0xaf,0x1b,0x18,0x9,0xb0,0x32,0xdc,0x82, - 0x2b,0x37,0xc,0xb6,0xf4,0x30,0x5d,0x8e, - 0x21,0x93,0x6e,0x55,0x65,0x35,0x63,0x62, - 0x4b,0xcd,0x1a,0x4a,0x77,0xb5,0xd7,0x7a, - 0x30,0xd2,0x73,0x6f,0x22,0x97,0x7a,0xcf, - 0xb9,0x85,0x19,0x2f,0xd2,0x54,0xc0,0x69, - 0x9a,0x9,0x19,0x33,0xc2,0xe2,0x43,0x20, - 0x7b,0xe,0x51,0x93,0x9b,0x67,0x31,0xf7, - 0x7c,0xb8,0x2c,0x30,0x4c,0x73,0x96,0xcb, - 0x9f,0xbc,0x69,0x32,0xf3,0x90,0x57,0xcc, - 0xcf,0xfd,0xf8,0xe2,0xcf,0xfd,0xc9,0x49, - 0x82,0x57,0xcd,0xc5,0xdf,0x9f,0x4f,0x44, - 0xcb,0x1e,0xfe,0x18,0x1b,0xba,0xc4,0x96, - 0x2e,0xb1,0x23,0x61,0x9f,0x21,0x7b,0x32, - 0xbe,0x54,0xf,0x7f,0xc6,0xc2,0x3f,0x5f, - 0x9c,0x75,0x6c,0xf6,0x24,0xba,0x88,0x84, - 0xc7,0xf2,0xeb,0xfa,0x26,0x53,0x63,0xe6, - 0x3e,0x54,0xfd,0x28,0xe1,0xae,0x53,0x1a, - 0xca,0xa0,0x35,0xc0,0x1f,0x2c,0x71,0xd1, - 0x2c,0x5f,0x5f,0xbe,0xe5,0x48,0x8,0xad, - 0xda,0x28,0x2,0x24,0x8b,0x1b,0xc3,0x8f, - 0xd1,0x46,0xf,0x4e,0xa6,0x65,0x4b,0xe7, - 0x3c,0x76,0xb0,0xbe,0xd2,0x98,0x21,0xfd, - 0xcc,0xeb,0xe9,0x9e,0x58,0x38,0x2a,0xf3, - 0x9b,0xdd,0x62,0xda,0x2c,0x16,0x14,0xfc, - 0x65,0xe4,0xf1,0x5b,0xd3,0xcb,0x92,0xd8, - 0x46,0xf7,0xef,0x18,0x99,0xd1,0x10,0x71, - 0xa9,0xbe,0xce,0x81,0xb6,0xd2,0x2d,0x77, - 0x45,0xb4,0x5d,0x6b,0x8d,0x46,0xd5,0x45, - 0x25,0xc3,0x34,0x4e,0x30,0xc4,0x6e,0x56, - 0x71,0x57,0xb3,0x3e,0xf,0x46,0x6,0xc0, - 0x81,0xb1,0x2a,0xb,0x7d,0x53,0x68,0xd1, - 0x4c,0x8f,0x96,0xa2,0x4f,0x57,0xb5,0x9c, - 0xf1,0x4d,0x4c,0xc1,0x9f,0x88,0x1e,0x4a, - 0xad,0x2c,0xc3,0xc8,0x50,0x8c,0x8d,0x9b, - 0x7f,0x2e,0xb7,0xeb,0xd5,0x82,0x3,0xa1, - 0x5c,0xee,0x91,0xb0,0x9f,0xc0,0xe1,0x33, - 0xd3,0x69,0xd3,0xbf,0x6d,0xda,0xc2,0x61, - 0xc1,0xa9,0x99,0x65,0xd3,0xf1,0x54,0x8b, - 0xf9,0x30,0x2c,0xd2,0x79,0x16,0xde,0x84, - 0x51,0xdb,0xfe,0x9c,0xa7,0xe8,0xff,0xe0, - 0xcf,0x1d,0xdb,0xaa,0x9e,0x71,0xd9,0xdf, - 0xac,0xf4,0x38,0x16,0x39,0x17,0x7d,0x63, - 0x14,0x15,0x19,0xbd,0x38,0x4,0x9,0xe9, - 0xd1,0xc0,0x67,0x56,0x5d,0x8e,0x1d,0xf3, - 0xf0,0xd9,0xb8,0x65,0xc8,0x25,0xf4,0x36, - 0x1b,0xea,0x40,0x52,0x26,0xee,0xb0,0xb8, - 0xef,0xf2,0x91,0x23,0x5e,0xca,0x49,0xa3, - 0xec,0x4b,0x2d,0xd1,0xb4,0x18,0xda,0x46, - 0xd3,0xf6,0x37,0xab,0xa6,0x8a,0xc3,0x53, - 0x49,0x86,0xe1,0xcc,0x73,0xf4,0xa5,0x43, - 0x26,0xd3,0x55,0x89,0x7a,0x82,0x8d,0x96, - 0x6d,0x53,0xc5,0x85,0x2d,0x87,0x2e,0x5, - 0x86,0x6e,0x30,0xed,0x15,0x8f,0x8f,0x67, - 0x32,0x76,0xe9,0xb0,0x6d,0xff,0x67,0x77, - 0x77,0x68,0xc5,0x2d,0x4a,0x27,0xc3,0x76, - 0x60,0x9,0xe7,0x2,0x1c,0xb,0xd2,0xc8, - 0xa4,0x34,0xfc,0xa0,0x55,0xf5,0x37,0xdb, - 0x9b,0x45,0x4d,0x51,0x42,0x17,0x39,0xb0, - 0xb0,0xc5,0x62,0x55,0xbe,0x8e,0x86,0x4e, - 0xfa,0x12,0xce,0x40,0xb4,0xe7,0x56,0xdb, - 0x22,0xc0,0x9e,0xc7,0x52,0x5b,0x44,0xc8, - 0x32,0xae,0x39,0xb8,0x3b,0x4,0x5,0x23, - 0xa,0xf8,0xa2,0x47,0xb0,0xc2,0x4d,0x15, - 0x59,0x75,0x13,0xe3,0x9b,0x59,0xe1,0x3b, - 0xbb,0xea,0x16,0xe9,0xda,0x21,0xb3,0xd4, - 0xb2,0xeb,0x27,0x69,0xd7,0xfa,0x88,0x3e, - 0xa2,0x54,0x27,0x37,0x45,0x78,0xc1,0xa1, - 0x11,0xb2,0xbd,0x70,0x93,0x64,0x98,0x41, - 0x7,0x8f,0x43,0x6f,0xbb,0x6b,0xa2,0x65, - 0xbf,0xe7,0x74,0xe0,0x46,0xec,0x64,0x5e, - 0x55,0xdf,0xc3,0x25,0x23,0xbf,0x65,0xa8, - 0x37,0xfa,0x62,0xae,0x84,0x48,0x91,0x60, - 0xc,0x15,0xe1,0xf0,0xbd,0xbb,0x46,0x92, - 0xfd,0xdb,0x3a,0xaf,0xea,0x35,0x3a,0x5c, - 0xc6,0xd6,0x5d,0x13,0x4b,0xca,0x90,0xd1, - 0xcf,0xd5,0x37,0x4d,0xbd,0xa8,0x14,0x95, - 0xe8,0x19,0x4e,0x20,0xe8,0xaa,0x40,0xaa, - 0xec,0xa,0xac,0x32,0x8b,0x1c,0x81,0x92, - 0x1b,0x33,0x34,0x1b,0x2b,0x99,0xd9,0x85, - 0x74,0x2,0xb9,0xae,0x2e,0x29,0xce,0xdd, - 0x26,0x33,0x82,0x60,0x48,0x12,0x39,0xb3, - 0x22,0x18,0x4e,0xd7,0xf5,0x66,0xae,0x4f, - 0x84,0xd6,0x7,0x16,0xc,0xad,0xbb,0x43, - 0x53,0xd4,0x7,0x60,0x9b,0xc1,0x50,0x77, - 0x51,0xa2,0xa2,0x32,0xc3,0x35,0xc4,0x23, - 0x33,0x93,0x29,0x3b,0x8a,0x84,0x9d,0x29, - 0x49,0xfb,0x3c,0x3d,0xd1,0x6e,0x7a,0xc6, - 0x14,0xf7,0x45,0xe6,0x94,0x44,0xc7,0x75, - 0x9b,0x59,0x63,0x65,0x85,0x16,0xf6,0x49, - 0xc2,0x1f,0xaf,0xa8,0x47,0x65,0x76,0x51, - 0x5c,0xc,0x26,0x13,0xe5,0xe2,0x71,0x3e, - 0xd1,0x6e,0xe4,0x44,0xc6,0xc4,0xd1,0x12, - 0xd1,0xec,0x94,0x82,0xa5,0x96,0x8b,0xd5, - 0x6,0x45,0x9,0x1a,0x29,0x92,0x7e,0x72, - 0x61,0x1c,0xc9,0x2c,0xfa,0xe4,0xa4,0x84, - 0xe,0x4e,0x3e,0x89,0x26,0x9f,0x24,0x77, - 0x77,0x25,0x30,0x0,0x9b,0x79,0x33,0xdd, - 0x92,0x1b,0x27,0xb3,0xd2,0x87,0x5b,0x89, - 0x52,0x92,0x94,0xc5,0x27,0xa8,0xd0,0xe3, - 0xc3,0xa0,0xe5,0x75,0xda,0x52,0xd0,0x92, - 0x48,0x26,0xde,0x6b,0x18,0x15,0x1b,0x43, - 0x7a,0x24,0xa2,0xf5,0x3c,0xa7,0x50,0xc4, - 0xe8,0x9a,0x3b,0x6d,0x96,0xf8,0x7c,0x45, - 0x9,0xad,0x50,0xe8,0xc2,0xaa,0xee,0xa1, - 0x83,0x6a,0xaf,0xa9,0x7a,0xd1,0x49,0x35, - 0x9a,0x66,0xb5,0x2f,0xd0,0x8d,0x76,0x8a, - 0x13,0x92,0xfd,0x97,0x8a,0x58,0x49,0x73, - 0x97,0x42,0x99,0xa6,0xb9,0x5,0x7f,0x89, - 0x48,0xa9,0x2b,0xd4,0x3,0x4f,0xf7,0x7b, - 0x3,0x98,0xf8,0xa9,0x63,0xc,0x88,0x0, - 0x7e,0x96,0x7a,0x69,0x46,0xdf,0xd5,0xfa, - 0xb2,0xe2,0x35,0xc5,0xe1,0x16,0xbd,0xc, - 0x10,0x7a,0xfd,0xa,0x44,0xe1,0xd,0x91, - 0xb9,0x5c,0x5d,0x12,0xa9,0x3a,0x5f,0x2d, - 0x2a,0xa4,0x4c,0x63,0x45,0xbd,0xb2,0x24, - 0x2b,0x9c,0x2e,0xb5,0xf4,0x2d,0xe5,0xc4, - 0xe,0x6e,0x74,0x42,0xea,0x6a,0xed,0x98, - 0xd8,0x1b,0x33,0x36,0x2a,0xe4,0x43,0x9e, - 0xd,0x46,0xf9,0x53,0xa7,0x80,0x50,0x69, - 0xe4,0x22,0x56,0xa,0x9f,0x8a,0x44,0x71, - 0xea,0x43,0xaf,0x86,0x7e,0x4d,0xc4,0x7c, - 0xbf,0x58,0xbd,0xa9,0x4d,0x4c,0xb,0x75, - 0xbe,0xdc,0x6d,0xb7,0x56,0x24,0x3a,0x45, - 0x28,0x46,0xda,0x5b,0x29,0xa7,0xc5,0x76, - 0x89,0xf1,0x8b,0x46,0xfc,0x54,0x72,0xae, - 0x70,0xac,0x7f,0xe0,0x20,0xbe,0x2b,0x51, - 0xe4,0x94,0xb0,0x88,0x32,0x47,0x18,0x9b, - 0x86,0xa2,0x3c,0x94,0x69,0x49,0x91,0x6f, - 0x4,0xa5,0x6b,0xae,0x23,0x1b,0x5,0xef, - 0x5c,0xbd,0x35,0x51,0x62,0xa8,0x39,0xc4, - 0xad,0x38,0x55,0x94,0xdf,0xd7,0x84,0x74, - 0x59,0x69,0xc4,0xd8,0x9e,0x50,0xc,0xf2, - 0x65,0x90,0xc3,0xa3,0x2c,0xc5,0x28,0x61, - 0x88,0x78,0x2e,0x8b,0xac,0x4a,0x59,0xfc, - 0xeb,0x44,0x63,0xb0,0xfb,0x46,0x8f,0xb2, - 0x23,0x9,0x49,0xee,0x85,0x6f,0x80,0x90, - 0x9d,0x62,0x80,0x45,0xce,0x84,0x3,0x4e, - 0x33,0x12,0xa3,0xa2,0xed,0x16,0xac,0x7f, - 0xce,0xe2,0xf0,0x9b,0xb1,0x12,0xf2,0x37, - 0x39,0x7b,0xe1,0x27,0x4a,0xd1,0xf1,0x4d, - 0x85,0xb4,0x0,0x94,0xe4,0x21,0xd3,0xed, - 0xb3,0x3,0x27,0x6,0x2e,0x5,0xff,0x39, - 0x11,0x51,0x2c,0x5a,0xab,0xaf,0xeb,0xc5, - 0x98,0xfe,0x1d,0xb6,0x36,0x35,0xa7,0x15, - 0xe5,0x86,0xde,0xab,0xb7,0x4b,0x74,0xd7, - 0x87,0xc5,0x46,0x36,0x59,0x7c,0x42,0xa1, - 0xe3,0x63,0xe4,0x36,0x8e,0x6,0x94,0x73, - 0xa8,0xef,0x79,0xe0,0x74,0xa7,0x51,0x73, - 0x95,0x93,0xb2,0x21,0xab,0x31,0x7c,0x9b, - 0x5,0x64,0x48,0xc5,0xe1,0x52,0xcb,0x3, - 0xeb,0x86,0x90,0x67,0x31,0x43,0xe3,0x28, - 0x7,0x2c,0x57,0x5a,0xd4,0xcd,0x16,0xad, - 0x30,0xf1,0xcd,0x8e,0xcb,0x62,0x91,0x2f, - 0x5f,0x73,0xa6,0xad,0x9,0xb6,0xd1,0x5c, - 0xcd,0x22,0x1e,0xf,0x93,0xe3,0x72,0xca, - 0xff,0xe,0x87,0x48,0x47,0x15,0x77,0xb8, - 0x49,0x3c,0x1c,0x32,0x93,0x5c,0xbb,0x71, - 0x4b,0x90,0x1b,0x5,0x98,0x98,0x61,0x4, - 0x43,0x7b,0x74,0xb8,0x3,0x11,0xc6,0x13, - 0x74,0x86,0xdd,0x6c,0x17,0x40,0xca,0xc1, - 0xed,0x2,0x99,0x8d,0x95,0xb9,0x59,0x97, - 0x58,0x69,0xaf,0x8c,0x25,0x2f,0xa2,0x7c, - 0x57,0x35,0x2b,0x98,0xe6,0x9b,0xa6,0xaa, - 0x57,0x9a,0x16,0xb1,0x4e,0x9e,0x65,0x83, - 0x6e,0xcb,0x1a,0x28,0x11,0x77,0x5d,0xd4, - 0x57,0xa1,0x45,0xad,0x93,0xd1,0x2b,0xab, - 0x5,0xce,0xc8,0xe2,0xdb,0x2a,0xf2,0xa7, - 0x71,0x7e,0x59,0xb,0x2f,0xf0,0x18,0xc9, - 0x65,0x7f,0xf5,0x1,0x96,0x7d,0xb,0xe8, - 0x81,0x3b,0x5d,0xa2,0x73,0x5e,0x91,0xbe, - 0x6a,0x5f,0x6c,0x20,0x3c,0x5a,0x16,0xaa, - 0x38,0xb4,0x50,0xe8,0x7b,0xab,0xf5,0x48, - 0x27,0xb1,0xf3,0xa4,0x4a,0x63,0x52,0x85, - 0x77,0x52,0xa5,0xdd,0x5,0x4c,0xaa,0xdc, - 0x4b,0xf4,0x3c,0x67,0xa8,0x7d,0x4e,0x26, - 0x6,0x63,0x7b,0x5d,0xc4,0xd1,0x46,0x1f, - 0x15,0xce,0xb8,0x1d,0x18,0x56,0xb8,0x85, - 0x39,0xfa,0x2f,0x92,0x29,0xf6,0x45,0x44, - 0x57,0x42,0x34,0x41,0xb3,0x3b,0xf3,0x76, - 0x50,0x79,0x30,0x6c,0x94,0xb,0x5,0xe8, - 0x5d,0x5f,0x70,0x4d,0x93,0x9e,0x16,0x94, - 0x3b,0x72,0x27,0xc8,0x57,0x96,0x5e,0x1a, - 0x9e,0xdf,0x91,0x69,0x3d,0x32,0x62,0x40, - 0x19,0x45,0xf4,0xf,0xef,0xab,0x23,0x35, - 0xd0,0x87,0x5e,0x49,0x8a,0x5e,0x13,0xc3, - 0x41,0xc1,0x4e,0xd5,0xe3,0x5a,0x97,0xab, - 0xd0,0xcd,0x55,0x5a,0x43,0x87,0xa2,0x47, - 0x8c,0xc6,0x2c,0x28,0xae,0x15,0xbd,0x4c, - 0x52,0xa9,0xc0,0x1e,0xa8,0x39,0xe5,0x37, - 0x83,0x6a,0xca,0xc7,0x53,0x50,0x41,0xa, - 0xd3,0x89,0x3f,0x64,0x7b,0x3e,0xee,0x3, - 0x2e,0xc4,0x3d,0xdd,0x62,0xed,0x6b,0xed, - 0x44,0xa1,0x93,0x2d,0xec,0x53,0x9b,0x11, - 0xf3,0xed,0x11,0x23,0xef,0x12,0xf3,0xb3, - 0x5f,0xe2,0x35,0xba,0xae,0x97,0xd2,0x65, - 0xd0,0x43,0x43,0xe9,0x45,0xff,0x0,0xe4, - 0xaf,0x41,0x48,0x61,0x34,0x4a,0x80,0x60, - 0x7f,0x41,0x74,0xbe,0x17,0xaf,0xe0,0xf0, - 0xbb,0x3d,0x58,0x86,0x66,0x2c,0x97,0x56, - 0x67,0x2a,0xb9,0x8d,0x8e,0xe6,0x12,0xc4, - 0x1b,0xd1,0xcf,0x96,0xaf,0x22,0xad,0xaa, - 0x6f,0x55,0x2c,0xc7,0x63,0x49,0x35,0xbf, - 0xe3,0x6a,0x1b,0x2d,0x61,0x98,0x8f,0xd, - 0x26,0x1e,0x2f,0x83,0xa1,0xe8,0xec,0x25, - 0x7e,0x31,0xcd,0x8c,0xcb,0xfe,0x39,0xac, - 0xec,0xc8,0x5c,0x7b,0x49,0xa5,0xb3,0x10, - 0xe,0xa2,0x4d,0x1f,0x87,0x99,0xde,0xbe, - 0xae,0x6f,0x86,0x42,0x84,0x9c,0x36,0xda, - 0xcf,0xc1,0xf0,0xfc,0x53,0xf5,0x75,0xae, - 0x7d,0x9d,0x9c,0xa7,0xfe,0xd1,0x8a,0x97, - 0x1b,0x7c,0x63,0x21,0x6c,0x76,0x94,0x65, - 0xf6,0x32,0x38,0xc,0xc6,0xbb,0xad,0x88, - 0x74,0x1c,0x92,0x2,0x8,0x49,0x11,0x99, - 0xda,0x78,0x10,0x98,0x80,0xb8,0x3c,0x6b, - 0x9b,0xba,0x16,0xe4,0x11,0xa3,0x6e,0x4, - 0xdb,0xa1,0x0,0x1c,0x6e,0xee,0x45,0x39, - 0x41,0x22,0x31,0x10,0x44,0x5f,0x4,0x56, - 0x7,0xc0,0xcb,0xfd,0xc1,0xff,0x75,0x30, - 0xf1,0xb,0xbb,0x54,0x1b,0x43,0x85,0x36, - 0x9d,0x76,0x58,0x78,0x1,0xa5,0x4,0xf4, - 0x1c,0xed,0xa3,0x73,0x6f,0x30,0x7a,0xfb, - 0xe9,0x19,0xa5,0x23,0xe3,0xca,0x37,0x13, - 0xad,0x3a,0x51,0x6e,0xc,0xf5,0x1a,0xe3, - 0x35,0x4b,0x97,0xd7,0xdc,0x9b,0xb8,0x49, - 0xb,0xa,0x6f,0x61,0x2b,0x2b,0x43,0x49, - 0x4b,0x54,0x86,0xe,0x23,0x9e,0x54,0x27, - 0xe,0x3d,0xdb,0x0,0xf5,0x6d,0x6b,0x36, - 0x14,0x47,0xc8,0x54,0x22,0x88,0x36,0x5a, - 0xb2,0xe0,0x1e,0xbf,0x2,0x4e,0x4d,0xe3, - 0x1b,0x6d,0x5d,0x88,0x2f,0xe4,0xbe,0xa6, - 0x28,0x54,0x89,0x4e,0x98,0x7f,0x52,0x4f, - 0xa9,0x4f,0xd4,0xe7,0xe8,0x99,0xa4,0xb9, - 0xc1,0x4,0xda,0x6e,0x2e,0x31,0xb3,0x90, - 0xb1,0xcf,0x60,0x4f,0xeb,0xec,0x42,0x4, - 0x5a,0x89,0x8c,0x38,0xa0,0x6e,0xee,0xa8, - 0x4b,0x5b,0xdc,0x7d,0xdf,0xd7,0x10,0xf7, - 0xcb,0x1f,0x4c,0x74,0x25,0x8e,0x26,0xaa, - 0x34,0x15,0x77,0x64,0x2e,0x3a,0x62,0x51, - 0xf5,0xed,0x67,0xb6,0x88,0x3f,0xcd,0xa1, - 0x25,0xd2,0x29,0xbb,0xa1,0xa2,0x58,0x3e, - 0x97,0x7f,0xb6,0xd7,0x77,0xad,0x24,0xd8, - 0x9a,0x69,0x96,0x10,0x62,0x32,0x83,0x91, - 0x1e,0x96,0x4d,0xcb,0x39,0x3a,0xb7,0xcc, - 0xcd,0xec,0x3a,0x9a,0xd9,0x5,0xcf,0x88, - 0x22,0x33,0xfc,0x96,0xcc,0xb8,0xa5,0x28, - 0x9b,0x9a,0x49,0x4,0x4f,0xbf,0x98,0x8, - 0x92,0x40,0xee,0x36,0x61,0xd7,0x10,0xea, - 0xd0,0x6f,0xf,0xbe,0xb0,0x0,0x3b,0xc1, - 0xe0,0xaa,0x3c,0x60,0x2a,0x4a,0xe5,0xc3, - 0xa1,0x55,0x55,0xa1,0x41,0x87,0x18,0xaf, - 0xa2,0x34,0x16,0xfd,0x51,0x3c,0x6c,0xe3, - 0x94,0x75,0xd5,0x11,0xfa,0xf0,0x85,0x71, - 0xf8,0xd8,0x97,0x38,0xd4,0xce,0x0,0x3f, - 0x9d,0xdc,0xfa,0x81,0x15,0xb4,0xf7,0xdd, - 0x2d,0xa1,0x4c,0xe3,0xc7,0x2d,0x99,0x92, - 0x9d,0x12,0xab,0x98,0x3c,0x3b,0x3d,0x1f, - 0x1e,0x1d,0xdd,0x23,0x60,0x6,0x3b,0x9d, - 0x4c,0x9,0xe1,0x10,0x6,0xec,0x6e,0xc4, - 0xd8,0x2b,0x64,0xf6,0x6e,0x46,0x4c,0xc2, - 0xa0,0xe6,0x6c,0x17,0x59,0x24,0x56,0xf6, - 0x7b,0x92,0xa9,0x9f,0x77,0x77,0x83,0x54, - 0x7d,0xc1,0x9d,0x4,0x3c,0x80,0xf6,0x92, - 0x30,0xaf,0xa6,0xa5,0xb0,0xca,0x7a,0x82, - 0x68,0x42,0x4f,0x63,0xd,0x31,0x8b,0x29, - 0xde,0x6,0x37,0x9f,0xca,0xb4,0xdf,0xa2, - 0x26,0xff,0x64,0x95,0x78,0xe8,0xa1,0x52, - 0x4,0x1d,0xca,0xe4,0x2f,0x39,0x56,0xfc, - 0x80,0xc2,0x14,0x79,0xc7,0x98,0xaf,0x50, - 0x5d,0x8e,0xea,0xcc,0x8d,0x1d,0x34,0xae, - 0x30,0xd8,0x10,0x5b,0x8c,0xf2,0x82,0xff, - 0x9c,0x3c,0xcd,0xce,0xc7,0xfc,0x37,0x64, - 0x8b,0x11,0x63,0x3e,0x1f,0x15,0x2b,0xc0, - 0x3e,0x78,0xb4,0x22,0x5e,0x1f,0x87,0xc1, - 0xab,0xa3,0x19,0x55,0x65,0x2e,0x1c,0x16, - 0xd1,0x97,0x84,0x95,0x14,0x29,0xab,0xa5, - 0x18,0x8c,0xd3,0xbb,0xdd,0x9b,0xb7,0xfd, - 0xb1,0xf1,0x35,0xb4,0xfc,0x7d,0x64,0x6c, - 0x86,0xa7,0xbf,0x1f,0xc,0xc6,0x4e,0xa6, - 0x70,0xde,0x2f,0x18,0x57,0x56,0xb,0x1a, - 0xcb,0x8c,0xbd,0x55,0x58,0xb1,0xb7,0x2a, - 0xc,0x91,0x8b,0xff,0xe0,0x3e,0xe0,0xdf, - 0x93,0x13,0xd8,0x8e,0x7a,0xf2,0xec,0x9c, - 0xde,0x53,0xc4,0x58,0x48,0x27,0x11,0xca, - 0x98,0x2f,0xc8,0xd5,0x1f,0xb9,0x32,0x46, - 0xa2,0x34,0xd5,0x77,0x95,0x8f,0x98,0x5, - 0x2c,0x8a,0x36,0x55,0xe3,0x28,0xc2,0x78, - 0x7e,0xea,0x6d,0xb0,0x5c,0x33,0x8f,0xd8, - 0x9c,0xa0,0x61,0xc4,0x69,0xc4,0xd4,0x2f, - 0xdf,0x2d,0xaf,0x77,0x8a,0x67,0xdc,0x78, - 0x83,0x8f,0x9b,0xd6,0x1d,0xc2,0xda,0xc0, - 0x48,0x84,0x33,0x69,0xb4,0x63,0x84,0x74, - 0x6c,0x2f,0xa,0xc7,0xec,0x22,0x42,0x63, - 0x9,0x34,0xc3,0xc6,0x45,0x94,0xda,0x86, - 0x5c,0xd1,0x7e,0x55,0xe0,0xe5,0xc9,0xa, - 0x35,0xbb,0x12,0x21,0xc0,0xb6,0xae,0xbe, - 0x5f,0xbd,0xad,0xd7,0xcf,0xe9,0xf1,0xb3, - 0x24,0xa3,0x68,0x10,0xfc,0xc9,0x3f,0xe8, - 0xd4,0xe4,0x8f,0xab,0xb4,0xc0,0xa0,0x8d, - 0x8c,0xf5,0x72,0xde,0x13,0x1,0x1c,0xbb, - 0xbe,0x61,0x61,0x43,0x23,0x99,0x8f,0xaf, - 0x7b,0x3,0x11,0xb8,0xae,0x61,0x78,0x70, - 0xe5,0x72,0xbb,0xd0,0x42,0xbe,0xbd,0x2c, - 0x2,0x8b,0x92,0x1,0x24,0xbe,0x48,0xe1, - 0x79,0x2b,0x84,0xe2,0xb5,0xfb,0x5e,0x5b, - 0x30,0x3a,0x67,0x46,0x6f,0xce,0x43,0x19, - 0xcc,0x82,0x6e,0x92,0xd9,0xf6,0x70,0xd2, - 0x1a,0xee,0x61,0x24,0x2c,0xb6,0x8a,0xc4, - 0xeb,0xc6,0x53,0xdb,0x31,0xed,0x3a,0x64, - 0x8b,0xf5,0xc4,0x3f,0x76,0x7e,0x5e,0xc2, - 0x43,0xf,0x1a,0x8c,0xb1,0x37,0x95,0x5, - 0x57,0x41,0x3b,0x19,0xde,0x55,0xe,0x4a, - 0x86,0xe9,0x4e,0xbb,0x3d,0xda,0xa1,0xe6, - 0x19,0x35,0x69,0xf7,0xe0,0x7f,0x96,0x4b, - 0x3e,0xd0,0xc0,0xd5,0x21,0x82,0xd8,0xbd, - 0xbb,0xa3,0x80,0xe4,0xdc,0xe8,0x31,0xf, - 0x44,0x7f,0x1a,0xe7,0x19,0x9c,0x5c,0x97, - 0x7e,0x82,0x74,0xe7,0x1,0x96,0xa1,0x13, - 0x44,0x8f,0x91,0x59,0x51,0x74,0x92,0x27, - 0xe9,0xef,0x72,0xc1,0xc2,0x6d,0xea,0x75, - 0x3,0x80,0xf6,0x17,0xf4,0x37,0xd3,0xad, - 0x57,0x36,0x39,0xc6,0x80,0xfd,0x4b,0xcd, - 0xdf,0x72,0xd1,0xe6,0x4b,0xd4,0x38,0xa, - 0x41,0xf8,0xfa,0x68,0xa9,0x59,0x25,0xc8, - 0x62,0xb6,0xa9,0x97,0xe2,0x8d,0xce,0xb1, - 0x3f,0x19,0x6b,0x21,0x76,0xa4,0xdc,0x9f, - 0x1a,0x7c,0xe3,0xfd,0xc5,0x57,0x5f,0x8f, - 0xcd,0x4f,0xd6,0xb4,0x2c,0x6,0x58,0xea, - 0x52,0x98,0x7,0xc6,0x56,0x8a,0x52,0x4a, - 0xb,0xed,0xbd,0x91,0xb7,0xd9,0x60,0x68, - 0x6b,0x80,0xcf,0x9f,0xc8,0xbc,0x9d,0xf6, - 0xb8,0x4f,0xcf,0x7,0x6b,0x9,0x4e,0x3d, - 0x60,0xd7,0x70,0x1d,0x12,0xa1,0x58,0x29, - 0x39,0x7d,0xa6,0xe4,0x3b,0x28,0xc6,0x91, - 0x41,0x63,0x25,0x77,0x87,0x22,0x46,0xae, - 0x16,0xd9,0x5c,0x56,0xd,0xa0,0x23,0xa0, - 0xd6,0x86,0xe2,0x91,0x14,0x21,0x12,0xf1, - 0x10,0x24,0xda,0x7b,0x2d,0xf2,0x19,0x4a, - 0xd9,0xc2,0x40,0xaa,0xe3,0x5f,0xed,0x36, - 0xdb,0xcb,0x79,0xdd,0xcc,0xe6,0x2,0x1e, - 0x8d,0x34,0x6d,0xcb,0x6c,0xfb,0xcb,0x1a, - 0xed,0xba,0xc3,0xe7,0x94,0xc8,0xfd,0xb4, - 0x60,0x86,0xc1,0x65,0xdd,0x2c,0x62,0xf9, - 0xf0,0xb3,0x25,0x29,0xe0,0x77,0x9e,0xa1, - 0x6a,0x93,0xe,0xf8,0x78,0x69,0x19,0x19, - 0xc2,0xe5,0x1d,0x32,0x92,0xb3,0xdf,0x6b, - 0xef,0x41,0x47,0xc8,0x9,0x2,0x2d,0x97, - 0xcb,0x55,0xa1,0x61,0x53,0x30,0x9b,0xf1, - 0x3f,0xe,0x2f,0x28,0x1f,0xd0,0x3f,0x2a, - 0x63,0x75,0xaf,0x1b,0xab,0x28,0x4a,0xcf, - 0xc7,0x9f,0xf,0x9f,0xa4,0x6c,0xb8,0xcd, - 0x32,0x3e,0x17,0xbf,0x61,0xe8,0x45,0x8a, - 0x32,0x4e,0xd7,0x1c,0xc2,0x63,0x44,0x20, - 0x4d,0xbe,0x57,0x57,0xd7,0x80,0x87,0x84, - 0x45,0x22,0x63,0x50,0xd9,0x0,0x17,0x79, - 0x51,0x2f,0x2c,0xe1,0x32,0x5a,0xe5,0xd3, - 0x7d,0xf9,0x3d,0x66,0xda,0x6b,0x95,0x98, - 0x1a,0x49,0x93,0xe4,0x13,0xaf,0xa6,0x89, - 0xa4,0x50,0xcb,0x5f,0xa9,0x22,0x71,0xa0, - 0xb5,0xc4,0xb2,0x6c,0xc7,0x30,0xc9,0x2f, - 0x35,0x1,0xd,0x7e,0x33,0x6d,0x9b,0xd5, - 0xc9,0x77,0x32,0x23,0xf6,0x36,0x20,0x1a, - 0x66,0xa4,0x92,0x71,0x75,0xb3,0xa4,0xf4, - 0x48,0xcb,0x37,0xc9,0x0,0x52,0xb1,0x79, - 0x92,0x4,0xed,0x19,0x6a,0x58,0x15,0x52, - 0x14,0x4a,0xfc,0xe7,0x58,0xd3,0xd2,0xdd, - 0x21,0x6c,0x24,0x3f,0x9f,0xc5,0xef,0x4e, - 0x93,0x71,0xcc,0x56,0xe1,0xe7,0x7e,0x32, - 0x4e,0xee,0xe2,0xd3,0xcd,0x6a,0xb7,0x2e, - 0xeb,0xbf,0x27,0x4b,0x4f,0x34,0xb1,0xf4, - 0x8c,0x4f,0x19,0x25,0xd2,0x6d,0x74,0x29, - 0x9,0x68,0x67,0x44,0xfe,0x92,0xd6,0x62, - 0x1f,0xae,0x6e,0x54,0xe3,0x1f,0xc8,0x41, - 0x3a,0x47,0x80,0xe7,0x59,0x30,0xae,0x9d, - 0x15,0xed,0x3e,0xb2,0x76,0xf2,0x25,0x2f, - 0x42,0x20,0x13,0x6b,0xa1,0x1d,0xd6,0x6, - 0xea,0xe1,0x3d,0xdc,0x3a,0x5d,0xb0,0x62, - 0x23,0x97,0x44,0xe3,0xc1,0x3f,0x88,0x2d, - 0xc8,0xac,0x43,0xcf,0x32,0xe4,0x71,0x3b, - 0x1f,0xc,0xd2,0xe2,0xe4,0x1c,0xe5,0xea, - 0xe7,0x23,0xa3,0xa8,0xc,0xde,0x83,0x44, - 0xec,0x3f,0x84,0xb3,0x34,0xfc,0x53,0x9c, - 0xf9,0x8b,0x25,0x9f,0x6,0xd2,0xd3,0x32, - 0xdc,0x70,0x69,0x86,0x56,0xba,0x6f,0xcb, - 0x55,0x16,0xca,0x9,0xee,0xc7,0x8f,0xb8, - 0x9e,0x6c,0x33,0xb8,0x6a,0x9b,0x45,0x2f, - 0xcb,0x9,0x7,0x9,0x15,0x73,0x54,0x20, - 0xb5,0x8,0x14,0x17,0x52,0xba,0x45,0x81, - 0xf1,0xc6,0x51,0xe3,0x86,0xff,0x3b,0x39, - 0xc1,0x7f,0xaf,0xaf,0x49,0x3,0x37,0x9d, - 0xd6,0x94,0xb1,0x99,0xe7,0x6b,0x4a,0xd9, - 0x6c,0xc8,0x35,0x71,0x8d,0x6d,0x54,0xaf, - 0xa0,0x2f,0xd4,0x2d,0xd6,0xaf,0x30,0xb5, - 0x5e,0x63,0xe8,0x50,0xf8,0x31,0x5b,0x89, - 0x1f,0xeb,0xd5,0xea,0xcd,0xd,0xfc,0x80, - 0xab,0xa0,0x5a,0xd4,0x45,0xbe,0xde,0xd0, - 0xc7,0xe6,0x75,0xd,0x94,0x23,0xfe,0x7a, - 0x87,0xad,0xcf,0xb7,0x57,0xf8,0x5,0xfb, - 0xd,0xff,0xbe,0xca,0x69,0x28,0xa8,0xf, - 0xe7,0x7f,0xe4,0x98,0xe9,0x3d,0x81,0x34, - 0x5a,0xd4,0x34,0x88,0x5,0xb0,0xcc,0xf8, - 0x67,0x87,0xe5,0xae,0xf2,0xd7,0x35,0x9f, - 0xcd,0x55,0xbe,0x7e,0x8d,0xda,0x26,0xfa, - 0xb9,0x5,0xdc,0x89,0x3f,0x6e,0x36,0xbf, - 0x60,0x17,0x8c,0x9a,0x69,0xde,0xd4,0x38, - 0xd3,0x6b,0x68,0x39,0xc7,0x54,0xa0,0xb8, - 0xe8,0xcf,0x8c,0x15,0xba,0x9e,0x63,0xbb, - 0xd7,0x37,0xdb,0x39,0x75,0xb7,0xc6,0xff, - 0xed,0xa,0x9c,0xc6,0x26,0xa7,0x9e,0xb1, - 0x5a,0x4e,0x7f,0xd9,0x27,0xf4,0xb8,0xa5, - 0x6c,0xaa,0xe,0xff,0x2,0x9d,0x83,0xf, - 0xa3,0xa1,0x0,0xe9,0x66,0xb1,0xa3,0x32, - 0x6f,0x70,0x3d,0xb6,0x6f,0x1b,0xfc,0xf3, - 0xa6,0x90,0x53,0x7a,0x47,0x33,0xbf,0xc9, - 0xaf,0x9c,0xab,0x86,0x1f,0x18,0xbc,0x66, - 0xec,0xbb,0x47,0x3f,0x51,0x1c,0xcf,0x13, - 0xf2,0xb9,0xc4,0x6d,0x44,0xf3,0xd7,0xae, - 0x87,0x35,0x19,0x1e,0x6e,0xda,0xd7,0x8c, - 0xbc,0x22,0x48,0x38,0xee,0x5c,0x8d,0x1c, - 0x9,0x78,0xb1,0x49,0xf4,0xe0,0x56,0x3b, - 0x88,0x18,0xf5,0x58,0x3f,0x41,0x9a,0x1c, - 0xca,0x2c,0x78,0x6c,0x1c,0x6f,0x55,0xbf, - 0x87,0xb9,0x5e,0x94,0xbb,0xcd,0x8f,0x83, - 0x5d,0xc8,0xb8,0x37,0x9e,0x5a,0xc9,0xf0, - 0xe0,0x24,0x54,0xa8,0xa0,0xc3,0x3d,0x44, - 0xfd,0xdb,0xe8,0xc4,0x5b,0x1b,0x8e,0xf1, - 0x3e,0xb2,0x3d,0xcf,0x18,0x91,0x31,0xb6, - 0xc4,0xd5,0xa6,0xee,0x35,0xe2,0xa5,0x84, - 0xa6,0xd7,0xe0,0x95,0x2f,0xdf,0x36,0x15, - 0xc5,0x37,0xd2,0x87,0x46,0x76,0xb4,0x94, - 0x91,0x85,0x6a,0x24,0x69,0x6c,0xca,0xe9, - 0xf2,0xea,0x87,0xe5,0xe2,0xc6,0x94,0xeb, - 0x62,0xea,0xca,0x49,0x95,0x9a,0x29,0x49, - 0x83,0x2f,0xde,0xe6,0x37,0x9b,0x4b,0x4d, - 0xe4,0x98,0x6,0x17,0x4a,0x34,0x89,0xa7, - 0x6f,0xbd,0xab,0xa5,0xf3,0x83,0x2b,0x6e, - 0x88,0x2f,0x74,0xd0,0xd0,0x56,0x58,0x6b, - 0x2,0x16,0x97,0xd0,0xca,0x3b,0x3a,0xdb, - 0xf5,0x35,0xaa,0xa7,0xb5,0xae,0x61,0xf5, - 0xbe,0xc6,0x97,0x82,0x85,0x1,0xa9,0x7c, - 0xa5,0x50,0xd3,0x83,0x70,0xfb,0x46,0xe0, - 0xdb,0xb1,0xa4,0xb2,0x63,0x2d,0x60,0x19, - 0x57,0xd7,0x28,0x4c,0xc8,0x67,0x39,0xe7, - 0xe,0x72,0x67,0x9,0x84,0x37,0x2c,0x1a, - 0x8d,0xeb,0xfa,0x22,0xf6,0x57,0xf,0xb5, - 0xce,0x52,0xc8,0xe6,0x48,0xb2,0x57,0x65, - 0x32,0x2a,0xb9,0x46,0x59,0xab,0x5c,0x61, - 0x47,0x1a,0xd1,0x9f,0xe6,0x36,0x6b,0x91, - 0x9b,0x3e,0x6b,0xe,0xd1,0x87,0xbb,0x2c, - 0x98,0x3,0x17,0x30,0x58,0x4e,0x16,0xac, - 0x63,0x35,0xc7,0xfc,0x83,0xac,0xf6,0xc, - 0x6e,0x23,0xb3,0x4,0x43,0xca,0xc4,0xa, - 0x1f,0xa2,0x9c,0x4e,0x37,0xa8,0x67,0xc5, - 0x82,0xcc,0x4c,0x49,0x4f,0x79,0x8a,0x4b, - 0xba,0x5e,0x2d,0x16,0xec,0x93,0x8c,0xf4, - 0xf0,0x31,0xb3,0xd6,0x52,0x27,0x9f,0x1d, - 0x1f,0x1f,0xc5,0xc5,0x33,0x20,0x33,0x92, - 0x51,0x52,0xa0,0x60,0x8c,0xbd,0xe,0xa8, - 0x4f,0xaf,0x3c,0x89,0xae,0xdf,0x45,0x2c, - 0x3a,0x94,0xbf,0xd5,0x67,0xd9,0xc1,0x66, - 0x4f,0x4f,0x3,0xcd,0x3a,0xa9,0xe7,0x94, - 0x8e,0xac,0x55,0x2b,0xfc,0xbd,0xae,0x6f, - 0x76,0xd7,0x26,0xf8,0xe5,0x1e,0xd6,0x4d, - 0xee,0xe9,0x7d,0xe0,0xb8,0xb5,0x21,0x33, - 0xcb,0x24,0xe7,0x5b,0xf0,0x9a,0x66,0xad, - 0x2a,0x1c,0x7b,0xf5,0xdb,0x30,0xd5,0x9d, - 0x5d,0x3c,0xd7,0xc7,0x73,0x96,0x13,0x2b, - 0xb6,0x49,0x9b,0x56,0x6a,0x33,0x3e,0xa9, - 0xc5,0xa3,0x0,0xe6,0xf7,0x13,0xad,0xfc, - 0x35,0xdb,0x80,0x65,0xd8,0x6a,0xb7,0x85, - 0xd6,0x23,0x7c,0xe5,0xc6,0xb2,0x65,0x5a, - 0x30,0x7a,0x81,0x1a,0x3d,0x15,0xc5,0x8c, - 0x39,0x18,0xf6,0x83,0x35,0x3e,0x80,0xf3, - 0x46,0x59,0x1e,0x38,0x5a,0xb6,0x7b,0xee, - 0x51,0x72,0x5b,0x4b,0xfc,0xa0,0x9,0x4e, - 0xe,0xed,0x35,0xa5,0x77,0x69,0x66,0x7f, - 0xc8,0x44,0x96,0x4f,0x52,0x86,0x33,0xec, - 0xf0,0x56,0x2d,0xeb,0x40,0x57,0xad,0x2, - 0x98,0x4d,0x1,0x13,0x13,0xb6,0xfe,0x11, - 0x9f,0x71,0x22,0x84,0x64,0x89,0x24,0x6c, - 0x58,0xe4,0xd,0x49,0x70,0xb4,0xf0,0x28, - 0x27,0xa9,0x1e,0x64,0x99,0xbc,0x6d,0xb5, - 0x49,0x4e,0x3d,0xa2,0x19,0x7e,0x8f,0x9a, - 0x89,0x6d,0x9e,0x11,0x52,0xa,0xc8,0xd7, - 0xed,0xf9,0xa2,0xce,0xdf,0xd4,0x5e,0x61, - 0xb7,0x47,0xc5,0xe9,0x93,0x73,0x97,0xbc, - 0x5,0xbe,0x2f,0xf4,0xa5,0xc7,0x8b,0x64, - 0x3d,0xc4,0xf6,0x61,0xf1,0xb6,0x92,0x84, - 0xdf,0x61,0xb4,0x6e,0x66,0x21,0xcc,0x60, - 0x9b,0xaa,0xe9,0x11,0x53,0x63,0x9a,0xbe, - 0x17,0x1b,0x1,0xa7,0xe7,0xe1,0xfb,0xde, - 0x80,0x60,0x87,0xe,0x10,0xed,0xee,0x53, - 0xb,0x72,0x7c,0x82,0x27,0x43,0x18,0xa3, - 0xd1,0xd1,0x89,0x2d,0xa0,0x79,0x7b,0xb3, - 0x69,0xde,0xde,0xcc,0x8e,0x8f,0x2f,0x4, - 0xc3,0xc2,0xf9,0xa6,0x56,0x19,0xd1,0xf1, - 0x31,0x5f,0xe1,0x57,0xff,0x73,0x57,0xaf, - 0x6f,0xac,0xcf,0xfe,0x74,0xe9,0xa6,0x48, - 0xd1,0x65,0xc2,0x9f,0x2,0xb8,0xbd,0x5e, - 0xec,0x0,0xb8,0x36,0x43,0xd6,0x31,0x6a, - 0x55,0x74,0xa1,0x55,0xf4,0x8e,0x92,0x87, - 0x92,0x8f,0xab,0xaf,0x56,0x5b,0xb4,0x8e, - 0x96,0x5a,0x58,0x58,0x70,0x22,0xc2,0x86, - 0x11,0xdc,0x35,0xff,0x10,0xa5,0xec,0x90, - 0xc,0x3f,0x1b,0xc,0xf0,0xf9,0x6,0xde, - 0xba,0xec,0x16,0x48,0x11,0x29,0x1d,0x14, - 0x42,0x54,0xcd,0x9b,0x56,0x42,0x25,0x1b, - 0x70,0xcc,0xc7,0x92,0xc8,0xc2,0x68,0x8a, - 0x58,0xb8,0xf2,0xd7,0xec,0x50,0xb5,0x48, - 0x94,0x8c,0xbc,0xf5,0xfb,0xc5,0x62,0xb7, - 0x8e,0x1d,0x61,0x9a,0xd9,0x6a,0xf4,0xb4, - 0x6a,0xde,0x3c,0x8b,0x4e,0x8a,0x80,0xfc, - 0x37,0x39,0x89,0x9e,0x9e,0x51,0x91,0x64, - 0x64,0xd5,0xfc,0x3b,0x51,0xe3,0x94,0x5e, - 0xf0,0x3a,0x45,0x3e,0xb2,0x5e,0xa7,0x2a, - 0x19,0x70,0x9b,0x48,0x94,0xad,0x9f,0x2e, - 0x17,0xd3,0x28,0xcd,0x13,0x2e,0x98,0x27, - 0x3a,0x4e,0x97,0x51,0xe7,0x7d,0xdc,0x1b, - 0x4a,0x66,0x9,0x46,0x36,0x16,0xd6,0xe8, - 0xae,0xc2,0x22,0xb3,0x94,0x2c,0x45,0xf2, - 0xb4,0xae,0xcc,0x52,0xc2,0x8f,0x94,0x61, - 0xb,0xb0,0x51,0x3b,0x2b,0xb3,0xd2,0xdb, - 0x9a,0xdd,0x5a,0x43,0xd5,0x8a,0x40,0x91, - 0xb2,0x90,0x8e,0x17,0x64,0x62,0x9c,0xdb, - 0xc5,0xfa,0x8,0x6c,0x57,0xd,0x8a,0x8e, - 0x61,0xdc,0xde,0xeb,0x47,0x4d,0xda,0x16, - 0xb0,0x27,0x5d,0xa7,0xce,0xc7,0x91,0x97, - 0xb5,0x30,0x75,0xb5,0xe6,0x3f,0x22,0x59, - 0x5,0xb,0x18,0x4a,0xc2,0xb,0xf1,0x93, - 0x7e,0xe0,0xdb,0xa0,0x59,0x54,0x5e,0x62, - 0x19,0x4d,0xda,0xae,0x6c,0x6e,0x42,0x97, - 0x3a,0xc0,0x88,0xb7,0x82,0xc1,0xec,0xf0, - 0xe3,0x14,0x2c,0x5,0x18,0x9e,0x22,0x70, - 0x65,0xc0,0x43,0xc0,0x25,0xd1,0xbc,0xa9, - 0x5b,0xa,0x73,0xd2,0x2e,0xfa,0x7c,0x30, - 0x0,0xca,0x4e,0x47,0x70,0x9a,0x35,0x11, - 0xec,0x66,0xbd,0xde,0x7e,0x59,0x3,0x65, - 0x52,0xc7,0x6e,0x53,0xa9,0x23,0x87,0xd7, - 0x9,0x71,0xd3,0xd3,0xd1,0xd6,0x3d,0x64, - 0x6a,0xa9,0x49,0x4d,0xe6,0x69,0x5e,0xe8, - 0x91,0x3b,0x6b,0x62,0xa1,0xf6,0x48,0xf8, - 0x45,0x9a,0x9a,0x13,0xa6,0xc3,0xdc,0xf8, - 0x75,0x27,0x96,0xb3,0x9f,0x7c,0x70,0xfe, - 0xb1,0xb5,0x2c,0xda,0x11,0xc1,0x59,0x13, - 0x29,0xe9,0x1d,0xed,0x4b,0xcc,0x89,0x23, - 0x48,0x3c,0xa3,0x42,0x67,0xd1,0x89,0xa7, - 0xaa,0xdb,0x11,0xd,0x8c,0xc6,0x8,0xc3, - 0x82,0x76,0x5e,0xc0,0x1e,0xb2,0x66,0x30, - 0xbc,0xd0,0x99,0xc9,0xb9,0x1b,0x34,0xae, - 0xd6,0x48,0xe0,0x70,0x31,0xf4,0x57,0x58, - 0xdd,0xf1,0xb5,0x1a,0x59,0x68,0x8,0xe, - 0x98,0xad,0x2e,0x6a,0x3d,0x7f,0xfb,0x82, - 0x13,0xd6,0x36,0xed,0x25,0xd0,0x76,0xd8, - 0xb8,0x50,0xe3,0x2c,0x6d,0x95,0x5d,0xea, - 0xe8,0x9,0x55,0x61,0x93,0x27,0x8d,0x22, - 0xc9,0xa7,0xb,0x95,0xa1,0xc6,0xd5,0x7a, - 0x4d,0x13,0xef,0xa7,0xc,0xe4,0xd,0xc4, - 0x8e,0x3e,0x30,0xb6,0xb0,0xdc,0x96,0xf4, - 0x11,0x5f,0x0,0x76,0x88,0x5d,0x44,0x89, - 0xce,0x45,0xae,0xa6,0xd0,0xde,0x40,0xd9, - 0x57,0xaa,0x51,0x5f,0xc2,0x66,0x90,0x3e, - 0xec,0x22,0x1e,0xbb,0x44,0x57,0x17,0xec, - 0xd8,0x1f,0x3a,0xd8,0xc2,0xb1,0x3d,0xd4, - 0x31,0x3,0xb1,0x47,0xc2,0xa3,0x9,0x7f, - 0xbb,0xd,0xda,0xc9,0x6e,0x83,0x54,0x22, - 0x71,0x38,0x2b,0x5e,0x5f,0x4b,0x71,0x1b, - 0xf7,0x67,0xba,0x5d,0xe8,0xea,0x26,0x9b, - 0xbe,0x13,0x92,0xd,0xaf,0xfd,0x49,0x57, - 0x43,0x68,0x63,0xc5,0xd5,0x23,0xc6,0x21, - 0xeb,0x67,0x8f,0x43,0xb2,0x66,0xaf,0x9c, - 0x72,0xaf,0x7c,0x67,0xa4,0x87,0x8c,0x2c, - 0xb4,0xb0,0x14,0x64,0xe4,0x47,0x34,0x6f, - 0x47,0xcd,0xad,0xba,0x2e,0x8f,0xc,0xd, - 0xae,0xb0,0x7c,0x5b,0xd7,0x6f,0x9a,0xd5, - 0x6e,0xc3,0x4a,0x5f,0xc2,0xd8,0xb7,0x68, - 0xfc,0xd0,0xad,0x69,0xb6,0x9a,0xa3,0xb6, - 0x86,0x3a,0x34,0xc3,0x5,0x53,0xf8,0x2c, - 0x8f,0x63,0xd3,0x55,0x31,0x43,0xd6,0x8c, - 0x47,0xd9,0x40,0x23,0x1a,0x32,0x5c,0xaa, - 0xfa,0x3c,0xa6,0x17,0x72,0x71,0xf2,0x75, - 0x7b,0x8d,0xe9,0x7,0xd6,0x95,0x30,0x13, - 0xad,0xa6,0xce,0xbb,0x48,0xef,0xd6,0x1e, - 0x73,0x77,0xe5,0x67,0x94,0xd5,0x62,0x0, - 0xe6,0xad,0x98,0x4,0xac,0x45,0xe6,0x4d, - 0x55,0xd5,0xcb,0x8f,0xd6,0x22,0xbf,0x86, - 0xb5,0xc8,0x87,0x32,0x16,0xf9,0xef,0x62, - 0x50,0x21,0xd,0x9f,0x42,0x3c,0xba,0xc2, - 0x49,0x21,0x5b,0x5e,0x55,0xe2,0x37,0x79, - 0xc7,0x7f,0xbc,0x1c,0xff,0xd6,0x2e,0xc7, - 0xc2,0x2b,0x5,0xbb,0x97,0xed,0xc7,0x5f, - 0xd7,0xb6,0x42,0xd7,0x72,0xb2,0xcb,0xe2, - 0xe1,0x7a,0xce,0xc7,0x96,0x94,0x7,0x64, - 0xb3,0x3a,0xb4,0xff,0x6,0xa5,0xa3,0xfe, - 0x8b,0x98,0x79,0x5e,0x64,0x41,0x83,0x4e, - 0x79,0x23,0x3b,0x10,0x25,0x1f,0x12,0x13, - 0x57,0x66,0x7,0x2d,0x2c,0x3d,0x81,0x73, - 0xeb,0x3a,0xa4,0xf0,0xac,0xd1,0xa1,0x26, - 0xec,0xc7,0x6f,0xf0,0xf8,0x9c,0x64,0xe7, - 0x49,0x58,0x5b,0x49,0xfa,0xc5,0x3c,0x18, - 0x73,0xdd,0x63,0x5,0xe3,0x33,0x6e,0xe6, - 0x59,0xf7,0x18,0x1f,0xab,0x80,0x86,0x30, - 0xa7,0xed,0xe3,0x43,0xcd,0x67,0xd1,0x69, - 0x7c,0xa8,0x1e,0x35,0x44,0x36,0x5a,0xfa, - 0xdd,0x1d,0x37,0xd3,0xf1,0xf5,0x41,0x7a, - 0x55,0xa0,0x45,0xf6,0x8f,0xab,0xa7,0x6d, - 0xc5,0x87,0xb0,0x2f,0xf8,0x5a,0x8f,0x34, - 0xfb,0xba,0xf8,0xf3,0xe0,0xf4,0x5f,0x7e, - 0xee,0xff,0x7c,0x5a,0x7f,0x3d,0x61,0x6, - 0x5d,0x9d,0x6e,0xdc,0x87,0x19,0x3c,0x47, - 0x92,0x9c,0xa0,0x8b,0x6f,0x5c,0x8,0xb7, - 0x49,0xe1,0xc7,0xe7,0x3f,0xb,0xdc,0xa5, - 0x28,0xb,0x1e,0x13,0x79,0x18,0x5a,0x2f, - 0x82,0x13,0xb8,0x87,0x75,0x9b,0x7c,0x36, - 0xf5,0xd3,0x7b,0x4c,0xdb,0x3f,0xbc,0x75, - 0xbe,0x65,0x16,0xd6,0xa1,0x81,0x87,0xcf, - 0xaa,0x21,0x9a,0xff,0x5b,0x30,0x92,0xe4, - 0xdc,0x8f,0x11,0x80,0x85,0x44,0x72,0xa7, - 0x6c,0x95,0x22,0xc,0x1f,0x28,0x4,0x91, - 0xe8,0x36,0xce,0xa4,0x90,0x5f,0xde,0x7c, - 0x57,0xf1,0x7,0x82,0x8f,0xaa,0x43,0x5a, - 0x48,0x6a,0x8f,0x94,0x90,0x4d,0x95,0x95, - 0x69,0xdd,0x57,0x36,0x37,0x67,0x64,0xa7, - 0x84,0xc2,0x43,0xb8,0x9,0xbe,0x7d,0xf9, - 0xe2,0xfb,0x2c,0xea,0xd1,0x7f,0x7c,0x93, - 0x4e,0xe5,0x35,0xd1,0xbb,0xed,0xf1,0xff, - 0xb8,0xac,0x70,0xd8,0x6b,0x96,0xb,0xc8, - 0x39,0xa5,0xa0,0x69,0x23,0x91,0x4b,0x12, - 0xb6,0x61,0xaf,0x58,0x6d,0xe7,0x3c,0x6d, - 0xdf,0xd3,0xfe,0xe3,0xed,0xaa,0xd6,0xa6, - 0x8b,0x55,0xbe,0x1d,0x2e,0xea,0xe9,0xd6, - 0x57,0xfc,0xec,0xd3,0xde,0x70,0xb9,0xda, - 0xc6,0x43,0xa,0x77,0x8,0xf4,0x3e,0xba, - 0x36,0xe4,0x3d,0xf6,0xdc,0x78,0xda,0xdb, - 0xac,0xe0,0xf4,0xe4,0xdb,0x5e,0xb1,0x5e, - 0xbd,0x5,0x52,0x71,0xc3,0xbe,0xe0,0xa8, - 0xff,0xdf,0xff,0xf7,0xff,0xdb,0xf6,0x0, - 0x9f,0x5f,0xaf,0xd6,0xdb,0x9e,0xa8,0x2c, - 0x33,0x64,0xdf,0x2b,0x7c,0x47,0x11,0x2a, - 0xd5,0xc0,0x22,0xaf,0x77,0x8b,0x7a,0xd3, - 0xef,0x7d,0xfd,0xa6,0x5e,0xdf,0x88,0x6, - 0x59,0x7b,0xbc,0x9d,0x8d,0x6a,0x28,0x5f, - 0x40,0xcf,0x2a,0x19,0x47,0x98,0xd0,0x68, - 0xc4,0x7f,0xd,0x8e,0xa2,0xde,0xb0,0xee, - 0xd0,0x2,0xd,0x3b,0xe9,0x61,0xc8,0xea, - 0xde,0xe,0x96,0xba,0x44,0xee,0x75,0xdd, - 0x2c,0x6e,0x7a,0x2c,0xc2,0x39,0x20,0xda, - 0xde,0xa7,0x67,0xc6,0xa,0x59,0xd3,0x7e, - 0xd6,0x23,0x84,0xa8,0xd6,0x4d,0x8,0x90, - 0x87,0x79,0xb1,0x81,0x13,0xb8,0xad,0xe5, - 0xe,0x6c,0x57,0xd7,0xc3,0xd3,0x7f,0x81, - 0xff,0xae,0xdf,0x69,0xbb,0xd2,0x5c,0xf, - 0xd7,0xd0,0x53,0x3c,0x48,0xe9,0xff,0x92, - 0x96,0xcd,0x71,0xba,0xa6,0x3,0x64,0x6f, - 0xd9,0x9a,0xcc,0x28,0x44,0x1a,0x53,0x22, - 0x9d,0xd7,0x57,0x32,0xe5,0x1a,0x1f,0x99, - 0x80,0xc6,0x6,0xbd,0xbe,0x9e,0xc,0x44, - 0xea,0x1a,0x1a,0x78,0x3b,0x64,0xc4,0x90, - 0x6a,0x60,0xde,0x6c,0xeb,0xd3,0xd,0x9c, - 0xe1,0x1a,0xfa,0x7f,0xbb,0xce,0xaf,0xd5, - 0xe0,0x77,0xeb,0xcd,0x6a,0x3d,0xbc,0x5e, - 0x21,0x7a,0x58,0xab,0xe4,0xd5,0x2,0x52, - 0xff,0xae,0xaa,0xaa,0x7b,0xcf,0x65,0x58, - 0x90,0x98,0x5c,0x4d,0xa9,0x64,0xde,0xf9, - 0xc3,0xde,0x27,0xff,0xf7,0xff,0xfc,0xef, - 0xde,0x27,0x6d,0x90,0xcb,0x77,0x42,0xc2, - 0xc2,0x7f,0xda,0xcb,0xc3,0xc6,0xd5,0xfb, - 0xbb,0x6f,0xbe,0xf9,0xf2,0xc9,0x60,0x70, - 0x68,0x6c,0x17,0xc2,0xde,0x69,0x92,0x4, - 0xc6,0x3a,0xc7,0x25,0x4b,0x1f,0x5c,0xb3, - 0x6d,0x80,0x5f,0x7d,0x71,0xaf,0x1,0x3a, - 0x73,0x3f,0xe9,0x3e,0xc4,0xf6,0xba,0x62, - 0x90,0xf7,0x6c,0xe3,0x3f,0xdf,0xa3,0xff, - 0xff,0x7c,0x50,0xff,0x66,0x9d,0xce,0x90, - 0xf0,0xcf,0xcf,0x7,0x5f,0xdd,0x67,0xa1, - 0x65,0x4f,0x39,0x43,0xe,0xee,0xb1,0x17, - 0x6a,0x23,0xe3,0xd8,0x3f,0xd1,0x8e,0x3c, - 0xa2,0x54,0x2d,0x61,0xf,0x37,0x89,0x7b, - 0x8f,0x6c,0xbe,0xbc,0x79,0x99,0xcf,0xfe, - 0x80,0xb6,0x16,0x11,0x5e,0x99,0x14,0x53, - 0xca,0xb2,0x3c,0xd9,0x77,0x65,0x57,0x4, - 0x7f,0xd3,0x95,0xc3,0xa0,0xbb,0x6f,0xd6, - 0xae,0x67,0x1b,0xcd,0x6c,0x13,0x44,0xfb, - 0x62,0xe2,0x91,0x84,0xe6,0x7,0xda,0x99, - 0x77,0x90,0xa8,0x1,0xb1,0xe2,0xed,0xc, - 0x66,0x34,0x33,0x26,0x31,0xf7,0x1b,0x4f, - 0x1e,0x88,0xba,0xc9,0x8d,0x7e,0xac,0x32, - 0x33,0x4f,0x99,0xe4,0x24,0xea,0x49,0x53, - 0x4b,0x1e,0x7d,0xca,0x43,0xc6,0x8f,0x3d, - 0x69,0xc3,0xdf,0x93,0x37,0x62,0x3b,0x31, - 0xdf,0x9c,0x9e,0x6a,0x94,0x3c,0xb,0xd4, - 0x9c,0x35,0xa3,0xfc,0xd9,0x60,0x94,0x9f, - 0x9e,0x32,0x7a,0xe2,0x95,0x19,0x57,0xfa, - 0x24,0x4f,0x5f,0x1f,0xd8,0xfe,0x75,0x8e, - 0xf1,0xa4,0x92,0xd1,0x6b,0x6b,0xde,0x18, - 0xd3,0xf4,0x55,0x92,0xda,0xc9,0x44,0xc3, - 0x22,0x4f,0xe3,0xe4,0x4,0xf6,0x46,0xdf, - 0x81,0xd7,0x3a,0x2b,0xc2,0x83,0xc,0xbd, - 0x66,0x4b,0xb5,0x8,0x42,0x2,0x1d,0x29, - 0x18,0xe0,0xc2,0xea,0xf,0x3a,0xa1,0x11, - 0x9a,0x36,0x57,0x56,0x2b,0xa8,0xeb,0x41, - 0x49,0xb,0x30,0x4,0xf8,0xd8,0x66,0x3e, - 0x8e,0x7a,0x68,0xd,0x10,0xd,0xd9,0x5f, - 0xd8,0xb4,0xc4,0x1e,0xe4,0x22,0xd9,0xdf, - 0xc3,0xb4,0xb5,0xcd,0x88,0x55,0x17,0x66, - 0x6e,0x2c,0x47,0xef,0xb9,0xc7,0xae,0xf5, - 0x7,0xc6,0xec,0xc8,0x9f,0xe4,0xdd,0xad, - 0xf9,0xe1,0x27,0x4,0xd1,0x87,0xed,0xc4, - 0xd0,0xd6,0xc6,0x35,0x48,0xcd,0x3d,0x6, - 0xa9,0xb6,0x71,0xc3,0x66,0x5d,0xf2,0x75, - 0xf,0x18,0x34,0x38,0x4a,0x47,0x27,0xf0, - 0x7f,0xd1,0xf2,0xbe,0x1,0x53,0x8,0x60, - 0x19,0xfe,0x8c,0x41,0xd1,0xf6,0x86,0x41, - 0x91,0xc,0x8b,0xc0,0x63,0x5,0xf,0x31, - 0x1c,0x9c,0xa5,0x1,0x9,0x5b,0x17,0x83, - 0x37,0xaf,0xc1,0x97,0x37,0xea,0x8b,0xce, - 0xbe,0x7b,0x24,0xdb,0x42,0xa6,0x5d,0xe8, - 0xbc,0xf4,0x28,0x8,0x29,0x15,0x49,0x3a, - 0x2a,0xbe,0x41,0x58,0x8d,0xb3,0x69,0x55, - 0x9f,0x5f,0x60,0xb8,0x2f,0xa5,0xb0,0xcb, - 0x48,0x4b,0x63,0x43,0x79,0xba,0x8,0x44, - 0xa5,0x6f,0x53,0xd9,0xb2,0x4d,0x25,0xdf, - 0xa6,0xa3,0x73,0x7a,0xc4,0xc5,0xcb,0xe, - 0x32,0xcd,0x40,0xab,0xaf,0xb0,0x27,0x42, - 0x89,0x88,0x1d,0x19,0x9b,0x21,0x76,0x35, - 0x93,0x48,0xb2,0x48,0xea,0x10,0xcf,0x86, - 0x31,0xe0,0x7c,0x34,0xfe,0xc7,0x25,0x1c, - 0x11,0x91,0x5e,0x45,0x85,0xf3,0x94,0x71, - 0xc1,0x44,0x8e,0xfe,0xe1,0x8b,0xf6,0xad, - 0xe7,0x63,0x7c,0x29,0x15,0x90,0x38,0xa4, - 0xdc,0xf9,0xb5,0x46,0xa2,0x45,0xef,0xe9, - 0xc0,0xe9,0x4b,0x77,0x2b,0xdd,0xe5,0x91, - 0x9a,0x84,0x44,0x6e,0xe4,0xff,0x99,0xd7, - 0x36,0x50,0x2a,0x26,0x2d,0xa4,0x27,0x70, - 0x21,0xe,0x9,0xc1,0xeb,0xb2,0x20,0x3b, - 0xdc,0x40,0xb2,0x6e,0x40,0xa8,0xe2,0x44, - 0x8b,0x97,0x80,0xac,0xba,0x6e,0x8e,0xa7, - 0xba,0x7f,0x7d,0x1f,0x71,0x81,0xd9,0x52, - 0xc4,0x1,0x3,0x47,0x16,0xc0,0xe6,0x80, - 0x8d,0xe3,0xbd,0xd7,0x66,0xf0,0x7e,0x6b, - 0x23,0xaa,0x3,0x99,0x57,0xe3,0x69,0x42, - 0xf5,0x5d,0xdc,0xba,0x5e,0x62,0xb9,0x8a, - 0x7b,0x2d,0x57,0x61,0x2f,0x57,0x31,0x11, - 0xa3,0xa0,0x40,0xaa,0x8b,0xfc,0x66,0xb5, - 0xdb,0x7a,0xce,0x33,0x97,0xe,0xd9,0x81, - 0xfc,0x80,0x97,0xd7,0xc,0x95,0xf8,0xe3, - 0x37,0x62,0x96,0xab,0x35,0xca,0x89,0xf4, - 0x48,0xfe,0xc6,0x38,0x53,0x5f,0x69,0x4f, - 0x5a,0x1f,0x38,0xd4,0x6d,0x6c,0x5e,0xcc, - 0x4c,0x33,0x59,0xea,0xbb,0x2e,0x1c,0x7e, - 0x78,0xdd,0x1f,0xb0,0x6a,0x5a,0x6b,0x65, - 0xa,0x7f,0x19,0xee,0xa4,0x2c,0xe2,0xb, - 0x49,0xb1,0x2a,0x8b,0x32,0x7d,0x5e,0x7f, - 0x96,0xa4,0x4e,0x5e,0x4d,0x71,0x7,0x29, - 0xaf,0x3a,0xad,0x45,0xa4,0xf,0xe8,0x2d, - 0xc2,0xb0,0x10,0xb3,0xd5,0x1a,0xdf,0x37, - 0x34,0xed,0xd9,0xc9,0xbe,0x60,0xb6,0x6e, - 0x2a,0xaf,0x9d,0xfb,0x9c,0x94,0xf4,0xb0, - 0xa5,0xe2,0xe5,0x8,0x63,0x5,0xd2,0xf6, - 0xc9,0x17,0x13,0x26,0xac,0x52,0xb5,0x98, - 0xc6,0xaa,0x52,0xa1,0xfc,0x6a,0x7a,0x9, - 0x22,0xab,0x24,0x59,0xcd,0xf8,0x89,0xf1, - 0x60,0xa8,0x92,0x70,0x70,0xb0,0x99,0x84, - 0x88,0xee,0xee,0xaa,0xbe,0x81,0x99,0x62, - 0x8c,0x67,0xeb,0xad,0xae,0x2e,0x66,0xdd, - 0xed,0x22,0x65,0xaf,0xda,0xce,0xf5,0xc7, - 0x6c,0xe7,0xf8,0xa6,0x24,0xa1,0xac,0x93, - 0xe9,0xd3,0xec,0xfc,0x9,0x2c,0x22,0xbe, - 0x4f,0xd0,0xff,0xfd,0xa7,0x94,0x3,0xb8, - 0x6d,0xfe,0x74,0x76,0x7c,0xfc,0x84,0x7f, - 0xe6,0xef,0xe6,0xcf,0x66,0x2c,0xc2,0x63, - 0x93,0x8c,0x6a,0x7a,0xb1,0x1b,0x83,0x65, - 0xf2,0x37,0xc9,0x98,0x58,0x64,0x90,0x62, - 0xb5,0xe1,0xbf,0xd0,0x7f,0x29,0xd6,0x81, - 0x24,0xbe,0x30,0xc3,0x8b,0xc9,0x1e,0xe3, - 0x80,0xcf,0xe5,0x9b,0x21,0x70,0x49,0x5e, - 0xd4,0x13,0x79,0x38,0x58,0x43,0x18,0x57, - 0xaf,0xe0,0xa6,0xba,0x53,0x61,0xa5,0x3b, - 0xdb,0xf3,0xb2,0x6c,0xbc,0xd9,0x94,0x7d, - 0x61,0x67,0x99,0xc4,0xc4,0x32,0x29,0x9d, - 0xf1,0xd2,0x38,0x80,0x4c,0xa2,0x6c,0x99, - 0x4,0xf9,0x78,0x43,0xb3,0x80,0x8a,0x73, - 0x2b,0x76,0xe2,0x1c,0xa1,0x97,0xba,0x79, - 0x7a,0xfe,0x84,0xed,0x6e,0x83,0xdb,0xf5, - 0x8a,0xbf,0x7e,0x8c,0x3e,0x2d,0xc5,0x53, - 0x2a,0x25,0x6,0xce,0x1b,0x28,0xb0,0x1, - 0x5a,0x97,0x71,0x93,0x15,0x43,0xbd,0x8, - 0x42,0x3b,0xb5,0xf9,0xcc,0x48,0x15,0x1b, - 0x0,0xeb,0x8,0x35,0x70,0xd0,0x9e,0x2a, - 0x9f,0xc2,0xde,0x9c,0xa9,0x51,0xf9,0xb, - 0xe9,0x2e,0xb6,0xde,0x2,0x49,0xfa,0xea, - 0x24,0xf3,0xe6,0x8c,0x5e,0x3d,0xa5,0xcd, - 0xf7,0x8e,0xec,0x4,0x3a,0x3f,0x7d,0xc5, - 0x47,0xc6,0x7a,0x3a,0x7f,0xa2,0xc2,0x7, - 0x12,0x7e,0x82,0x29,0x5b,0xf6,0xd,0xf3, - 0x44,0x45,0xfe,0x92,0x3c,0x1a,0x2f,0xec, - 0x14,0xd5,0xe5,0xbe,0x5e,0x3,0x54,0xcf, - 0x3e,0xd1,0xb6,0xd8,0x5c,0xda,0xbf,0xc2, - 0x89,0xf9,0x71,0xf5,0x96,0x47,0x28,0xac, - 0x6c,0x2e,0xaa,0x7d,0xe3,0x6e,0x19,0x43, - 0x65,0xaf,0x10,0xc6,0x70,0xbc,0xca,0xc, - 0x1c,0xbd,0x98,0x8c,0xae,0xec,0x93,0x77, - 0xd5,0xb7,0x2d,0x59,0x4d,0x3b,0xd3,0xa1, - 0x19,0x7c,0x1b,0x47,0xca,0x4e,0xf2,0x4f, - 0x48,0xea,0x6a,0xb5,0xd3,0xc0,0xe6,0xbd, - 0x36,0x66,0xa3,0x55,0x10,0x2f,0x6,0x12, - 0xc9,0x7b,0x60,0x21,0xb9,0xf9,0xf0,0xf2, - 0x40,0xb1,0x95,0xed,0x30,0xbb,0xba,0x7e, - 0x99,0x17,0x3c,0x16,0xb2,0x13,0x3c,0x2d, - 0x49,0xaf,0xbd,0xe5,0x79,0x18,0x50,0x5e, - 0x6d,0x95,0x7c,0x8,0x7c,0xca,0xcd,0x59, - 0xb4,0xae,0x65,0xbf,0x80,0x21,0x11,0xc1, - 0x8a,0x48,0x67,0x7a,0x28,0xb9,0xca,0xc, - 0xaa,0xa7,0x62,0xc9,0x19,0x19,0xa4,0x45, - 0xd8,0xc0,0x75,0xf9,0xc3,0x9a,0xc2,0xa3, - 0x65,0x53,0x2e,0xc5,0x29,0x7d,0x10,0x57, - 0xf5,0xb7,0x79,0x71,0x77,0x17,0x7b,0x1f, - 0xe6,0xed,0x17,0xf9,0xa6,0x29,0xff,0x98, - 0x2f,0xeb,0x71,0x89,0x84,0x7,0x56,0xa9, - 0xd2,0x15,0xec,0xc7,0xd0,0xf8,0xd6,0xa, - 0x26,0xe8,0x6,0x85,0x4a,0x8c,0xbe,0xa, - 0x30,0x15,0x53,0x27,0x14,0xc5,0x51,0xf, - 0xb4,0xa,0x13,0x1d,0xc7,0xb5,0x1,0x1f, - 0x80,0xff,0xae,0x6d,0xaf,0xaa,0x52,0x19, - 0x8c,0xb1,0xd,0x8a,0x57,0x29,0x35,0x88, - 0x1e,0xd0,0x4b,0xb7,0x3a,0xc5,0x83,0xe5, - 0x90,0xf1,0x7c,0xb5,0x5b,0x6e,0x9f,0xd, - 0xc6,0xd7,0xfd,0x69,0xb3,0xde,0x30,0x2e, - 0xc3,0x58,0x1c,0xbc,0x16,0x8c,0x26,0x96, - 0xd8,0x84,0x61,0xa8,0x5d,0xa7,0x7a,0x6d, - 0x35,0x1e,0x5e,0x8,0x27,0xce,0xc7,0x45, - 0xa3,0x4a,0x57,0x80,0x18,0xd4,0x7a,0x64, - 0x35,0x3d,0x2,0xe4,0x74,0xd1,0x79,0x92, - 0x56,0x63,0xf8,0x6d,0x9d,0xe1,0xea,0xd0, - 0x19,0x2e,0x83,0x7,0x58,0xab,0x9a,0xc2, - 0xa5,0x61,0xc9,0xd0,0x2a,0x3d,0xdc,0x65, - 0x85,0x44,0x1a,0x1b,0x4,0xdc,0x41,0xdc, - 0xb4,0x24,0x2f,0x30,0x65,0x23,0x5f,0xdc, - 0xd1,0x16,0x6a,0x94,0x4,0x8a,0x38,0x66, - 0x30,0x6d,0xad,0x30,0x92,0xe8,0x97,0x4c, - 0x14,0xdc,0x88,0xd0,0xfd,0xca,0xae,0x66, - 0xf4,0x8b,0xd1,0xe4,0x2f,0xc6,0x66,0xfd, - 0x62,0x4c,0x68,0x25,0x2c,0x74,0xed,0x1e, - 0xb3,0xeb,0xd4,0xee,0x21,0x5b,0xf1,0x17, - 0xeb,0x2d,0x79,0x3,0x36,0x8e,0xfb,0x63, - 0x97,0x97,0x51,0x6a,0xc8,0xbd,0x77,0x7d, - 0x7c,0x3c,0x8b,0xd7,0x69,0x54,0x2e,0x9a, - 0xf2,0x35,0xbe,0x6f,0xd2,0x15,0x81,0xd4, - 0x2e,0x2,0xa9,0x3,0x8,0x64,0x1a,0x3a, - 0xd1,0xfa,0x94,0xa7,0x78,0x1e,0x2d,0x80, - 0xa9,0x1f,0xe,0x30,0xb5,0x5,0x30,0x53, - 0x13,0x90,0xd,0xf4,0xe,0x93,0x6,0xcc, - 0x39,0x72,0x9,0x7c,0x17,0x4a,0xcc,0x6c, - 0x7,0x42,0x42,0xb5,0x13,0x5f,0xe3,0x6, - 0x4,0xf3,0xa0,0x6c,0x82,0x71,0x61,0xf, - 0x17,0x6,0x45,0x38,0x6,0x59,0xdf,0x50, - 0x40,0x69,0x14,0x51,0x8c,0xa,0xe6,0x93, - 0x53,0x8,0x5d,0x30,0xf,0x11,0xe9,0x2b, - 0x3f,0xb2,0x62,0xdd,0x71,0xb,0x7,0xeb, - 0x5d,0x7b,0x19,0x89,0xae,0xbd,0xe8,0xa1, - 0xb6,0xdc,0x20,0x76,0x2,0x32,0xd0,0xb, - 0xe8,0xc7,0x7a,0xf6,0xf5,0xbb,0x6b,0x48, - 0x1c,0x4d,0xd9,0x53,0xbc,0x14,0x1f,0xb5, - 0x0,0x6e,0x75,0xf1,0xc3,0x34,0xe3,0x7f, - 0xef,0xee,0x2e,0x26,0x29,0xff,0xcd,0x8, - 0xd9,0xd6,0x1e,0x31,0xce,0x1d,0x30,0x6f, - 0xe8,0x66,0xc0,0x9,0xa5,0xd2,0x74,0x1e, - 0xf1,0xbd,0x5b,0x7f,0xc0,0xcd,0xd1,0x5f, - 0x25,0x2e,0x32,0x5b,0x72,0xe4,0x2d,0x99, - 0x50,0x34,0x43,0xdf,0x8b,0x56,0x61,0xae, - 0x57,0x3e,0xd3,0x54,0xe6,0x14,0x90,0x58, - 0x25,0x8f,0x3c,0x41,0x9e,0x7c,0x6,0x64, - 0x8c,0x26,0xe4,0x52,0x62,0x91,0xc8,0x26, - 0x79,0x69,0xe4,0x19,0xb6,0x6f,0x3c,0xcd, - 0x63,0x78,0x6a,0x55,0x85,0x73,0x8,0xe5, - 0x17,0x56,0xc,0xa,0x39,0xe7,0x0,0xb8, - 0xaa,0xb7,0x35,0x81,0x99,0x60,0x34,0xef, - 0xc0,0x94,0xf1,0x88,0x6f,0xd1,0xed,0x16, - 0x39,0xf6,0x4b,0x38,0x3f,0x89,0x5,0x69, - 0xb2,0x4d,0x2b,0x8,0x34,0xa3,0x71,0x72, - 0x6f,0xa4,0xfc,0xe7,0xa8,0x18,0x41,0x93, - 0x87,0x5c,0xc3,0x60,0x66,0x59,0x4e,0xb6, - 0xf1,0x47,0xe0,0xd3,0x5b,0x95,0x35,0x34, - 0xde,0x54,0x65,0xc3,0x18,0x96,0x29,0xbd, - 0x18,0xcd,0x1e,0xf1,0xa4,0xa7,0x8f,0x8a, - 0x94,0x21,0xfe,0x61,0x9e,0x72,0xed,0xcb, - 0xf0,0x68,0x90,0xca,0xc0,0xb1,0x28,0x37, - 0x4f,0xf5,0xee,0xfb,0x2,0x30,0x62,0xf9, - 0xae,0xa3,0x9e,0xeb,0xf0,0xa1,0xde,0x5c, - 0x93,0xa3,0x35,0x8a,0x58,0xcc,0xed,0x28, - 0x97,0x4b,0x7f,0x92,0xd5,0x69,0x2e,0x17, - 0x1e,0xbe,0xf6,0x32,0x98,0xb9,0xfe,0xb0, - 0x11,0x3e,0x7d,0x29,0xc8,0x60,0x77,0x6b, - 0xf8,0xb,0x52,0x7f,0x58,0x49,0x13,0x87, - 0xba,0xea,0xdd,0xd4,0xdb,0x68,0x64,0x9a, - 0xab,0x90,0x3c,0xf5,0x8f,0x1a,0x20,0xc4, - 0x21,0x40,0xe3,0x98,0xfe,0x52,0xc6,0xb2, - 0xd5,0x42,0x76,0xb4,0x96,0x19,0xc7,0xad, - 0x5d,0xa2,0x82,0xaa,0x23,0xc,0x61,0xbc, - 0xa,0x11,0x37,0x58,0xb0,0xcd,0x62,0xc3, - 0xf7,0xf4,0x4,0x5a,0xa8,0x13,0x86,0xa0, - 0xf0,0xd9,0x8e,0x64,0x18,0x2e,0x65,0x88, - 0x8a,0x72,0x77,0x38,0xf8,0x7a,0x85,0xb6, - 0x31,0xe7,0xd6,0xb8,0x9d,0xf6,0x9c,0xe1, - 0x3,0x1a,0x62,0x5d,0x48,0xc4,0x5b,0xd2, - 0x4b,0x76,0xa,0x32,0xca,0x9,0x9a,0xb, - 0xaa,0x63,0x28,0x59,0x79,0x95,0x66,0x94, - 0x3e,0x8,0x6a,0xa5,0x3,0x6a,0xe6,0x24, - 0xde,0xb7,0x31,0x11,0xf,0xe0,0x3,0xb, - 0xdd,0xc,0x1c,0x72,0x40,0xa0,0x96,0xd6, - 0xe6,0xac,0x3e,0x94,0xd0,0x8d,0x5e,0x8f, - 0x2,0x8a,0x2e,0x40,0x15,0xa4,0xf8,0x28, - 0x1d,0xda,0x1a,0x29,0xe1,0xa0,0xc9,0x95, - 0xd9,0xb9,0xe,0x77,0xe6,0x2d,0x80,0x4e, - 0x7e,0x1a,0xf5,0x48,0x17,0xb3,0x28,0x26, - 0x98,0xa5,0xb0,0xb9,0xd8,0x75,0x8e,0x3a, - 0xfc,0x72,0xec,0xd6,0x31,0x5e,0xb2,0x50, - 0xd9,0xd6,0x73,0x16,0xc3,0x3,0x15,0x7d, - 0xdc,0x60,0x21,0x86,0x4f,0xec,0xc8,0x73, - 0x26,0xa0,0xbc,0x21,0x73,0xbc,0x71,0x44, - 0x6c,0x50,0x34,0x6c,0x29,0x93,0x1a,0x5d, - 0x66,0x85,0xcd,0x76,0x7b,0xe6,0x9f,0x6a, - 0xce,0x1e,0xc4,0x47,0xb6,0x8f,0x1a,0x29, - 0x1,0xbd,0x80,0x4f,0x7b,0x4a,0xe4,0x78, - 0xaa,0xbf,0x11,0x8c,0x3e,0x98,0x68,0xa5, - 0x71,0xc9,0x46,0xa5,0xd5,0x57,0x1a,0x50, - 0x18,0xde,0x86,0xd4,0x68,0x8e,0x9e,0xb5, - 0x74,0xf5,0xac,0x7b,0xfe,0xb4,0x1d,0x50, - 0xe3,0x81,0xb7,0xdc,0x8,0xac,0xb8,0x65, - 0x36,0xf6,0x27,0x82,0x63,0x4e,0x33,0x3d, - 0x6e,0x7c,0x8,0x9c,0x8c,0x8c,0x51,0xc5, - 0x46,0x5c,0xc3,0x45,0x9b,0xca,0xdf,0x92, - 0x55,0x2b,0x91,0xc5,0xae,0xfa,0xc,0xc0, - 0x91,0xcf,0xac,0x1c,0x3e,0xb3,0xd0,0xaa, - 0x31,0xa6,0xda,0xb7,0xf9,0x9c,0x9,0x85, - 0xa,0x76,0x7b,0x22,0x1d,0xae,0x3b,0x9d, - 0x53,0x2d,0x3b,0x75,0x15,0x1b,0x9,0x19, - 0xff,0x52,0x8d,0xb2,0x7d,0x30,0xa,0xf1, - 0x93,0xe1,0x2d,0xc9,0xa0,0xc6,0x5d,0x6, - 0x4f,0x69,0x9e,0xa5,0xdc,0x64,0x70,0x8f, - 0xc3,0x28,0xc0,0x67,0x30,0x5d,0xc8,0xe6, - 0x52,0x54,0x4b,0x8d,0x94,0x2e,0x43,0xbb, - 0x32,0xea,0x74,0x9a,0xdc,0x4e,0x71,0x70, - 0xf8,0x7e,0x32,0xef,0x55,0xfb,0x69,0x78, - 0x8f,0xc4,0x25,0xe6,0xe0,0x4a,0x8,0x48, - 0x2c,0xcc,0x9,0x1e,0x1f,0x63,0x58,0x8e, - 0x7c,0x3c,0xf5,0x1f,0xdb,0xa9,0x73,0xce, - 0x3b,0xb4,0x18,0x33,0xbd,0x11,0x2f,0x95, - 0xe9,0xe7,0x61,0x2c,0x4e,0x29,0x86,0x30, - 0x80,0x1a,0x5f,0x50,0xe,0xf0,0x94,0x43, - 0x2b,0xe3,0xbb,0x65,0x2e,0xb2,0x12,0xba, - 0x4c,0xda,0xa2,0xa7,0xa6,0xc5,0x1,0xfd, - 0x86,0x5c,0x46,0x24,0x2a,0xb8,0x3f,0xae, - 0x3c,0xa2,0xca,0x6f,0xc8,0x25,0x62,0xb5, - 0x2b,0xca,0x78,0x24,0x52,0xf1,0xac,0x53, - 0xe3,0x1a,0xb,0x10,0xb7,0xba,0x54,0x6e, - 0x51,0x3f,0xaf,0x17,0x8b,0x58,0x11,0xb5, - 0xbe,0xb7,0x3,0x2b,0xfe,0x98,0x9a,0x7a, - 0x35,0x9d,0x52,0xa,0x46,0x78,0x22,0xde, - 0x10,0xd1,0x62,0x62,0x8b,0x3c,0x35,0x9, - 0x50,0xdc,0xc,0x2f,0x47,0x1e,0xa8,0x65, - 0x6,0x75,0xab,0x8c,0xf0,0x6,0x87,0x2a, - 0x88,0x38,0xd,0xf,0x22,0x3c,0xb9,0xed, - 0xf6,0x81,0xfb,0xe9,0xd0,0x3,0x4b,0xdc, - 0x94,0x9b,0x8b,0x5e,0xf0,0xc3,0x12,0xb6, - 0x30,0x50,0x36,0x1e,0x9d,0x3a,0x68,0xc5, - 0xc1,0x65,0xbb,0xb6,0x99,0x57,0x7b,0x48, - 0x7,0xa9,0x90,0xf5,0x3e,0x2d,0xfa,0x62, - 0x55,0x61,0xf4,0x11,0xab,0xa8,0x8,0xaf, - 0xda,0x1e,0xa5,0x31,0x50,0xc9,0xa,0x1b, - 0x71,0xfe,0x4f,0x2a,0x6c,0x44,0xa8,0x2c, - 0x8f,0x5a,0xf1,0xd9,0xe0,0x70,0x51,0xeb, - 0xb5,0x6c,0xab,0xf0,0x6,0xc3,0x7,0x89, - 0x3d,0xe0,0x71,0x7c,0xa3,0x9f,0x72,0x5c, - 0x8c,0x68,0xc3,0xfe,0xd0,0x57,0xe2,0xa9, - 0x67,0x5b,0xdf,0x59,0xaf,0x92,0x22,0x66, - 0x3c,0xdd,0x4,0x2b,0x1f,0xbe,0x90,0xe9, - 0x55,0x8c,0xae,0xe1,0xf5,0xa0,0x49,0xa6, - 0xe0,0xde,0xdb,0xbd,0x95,0xab,0xeb,0x1b, - 0x67,0x8a,0xcf,0x21,0x91,0xe2,0xa2,0xd2, - 0x1f,0xfa,0xf2,0xd5,0xeb,0x32,0xc5,0x32, - 0x58,0xf9,0x71,0xa7,0x88,0x4d,0x86,0xa6, - 0x88,0x91,0x10,0x16,0xee,0x24,0x29,0x19, - 0xa7,0x29,0x7e,0xf0,0x14,0x7f,0xfd,0x4e, - 0x93,0x6d,0x6d,0xe0,0x71,0x27,0x6c,0x1a, - 0x2e,0x38,0x93,0xf6,0xe0,0x5e,0xff,0x41, - 0xb8,0x77,0x45,0x4,0xa6,0x7b,0x57,0xc2, - 0xed,0xb9,0x7f,0x25,0x5a,0x37,0x8f,0x9d, - 0xc7,0x61,0xdc,0xa3,0x97,0x46,0xf3,0xae, - 0x4e,0x1,0x70,0xac,0x3a,0x26,0x36,0x79, - 0xf2,0x2f,0xbf,0x97,0xd8,0x24,0x50,0x12, - 0x98,0xcc,0x6f,0x5,0x9a,0xfa,0xc7,0xc1, - 0xa1,0xd2,0xdc,0xa7,0x20,0x8b,0xa0,0xdd, - 0xde,0xa0,0xbd,0xac,0x70,0x34,0xf8,0x8f, - 0x2c,0xca,0x77,0xdb,0x55,0xb7,0xc2,0xff, - 0xcb,0x72,0xd2,0x6c,0x1f,0xc7,0xf7,0xf5, - 0x74,0x4b,0x63,0x9,0x96,0xf6,0x6,0xfd, - 0x13,0x65,0x4e,0x99,0xf3,0xc7,0x6a,0xed, - 0x5b,0x4d,0xf8,0xed,0x1c,0x3f,0x48,0x83, - 0xea,0xea,0x5f,0x7f,0xb5,0x2e,0xa7,0x2e, - 0x50,0xbb,0x8b,0x91,0x37,0x85,0xea,0xd, - 0xd5,0xb5,0x63,0xd1,0xa2,0xe3,0x18,0x83, - 0x3c,0x18,0xb2,0x10,0x68,0xf4,0xd0,0xa0, - 0xb7,0xdf,0xef,0xb7,0xb4,0x62,0x40,0xd1, - 0x13,0x3f,0x5c,0xe8,0x45,0x81,0x52,0x9c, - 0x35,0xcb,0x2f,0x57,0xb0,0x4e,0x57,0x59, - 0x34,0x38,0x50,0x5a,0xde,0x60,0xba,0x7, - 0x53,0xe4,0x5f,0xcc,0x4e,0x18,0xe8,0x3e, - 0x71,0x5b,0xdd,0x41,0xb1,0x0,0xad,0x64, - 0xf3,0xa5,0x6c,0x85,0x42,0xe5,0x26,0x7a, - 0xa0,0x57,0x11,0x8b,0x2b,0x5f,0x40,0x31, - 0xd8,0x9a,0x79,0xbd,0xae,0xc9,0x43,0x6a, - 0x81,0x96,0xbf,0x37,0xbd,0xbc,0x27,0x9a, - 0x60,0x4f,0xc1,0x93,0x3b,0x13,0x8b,0xf4, - 0x30,0xf2,0x49,0x9a,0xc2,0xa3,0x4b,0xbb, - 0xc,0xd,0xa5,0x6b,0x87,0x4b,0x49,0x5b, - 0x2e,0x27,0x7a,0xec,0x3e,0x88,0xb7,0x5c, - 0x8c,0x67,0x9f,0xb5,0x7,0x56,0xd5,0x7d, - 0x9d,0xef,0x5b,0x17,0x7e,0xb,0x9d,0x4d, - 0xbb,0xef,0x41,0xc9,0xe1,0x8e,0x7c,0xe3, - 0x80,0x6e,0x5a,0xc9,0x8,0xd3,0x7,0xba, - 0x2c,0x13,0xe5,0xb4,0x71,0x18,0x10,0x81, - 0xad,0x3c,0xa,0xb5,0xca,0x89,0x55,0x14, - 0x59,0xb2,0x7,0x86,0x13,0x19,0x5b,0x2, - 0x31,0xd9,0xa5,0x28,0x4f,0x92,0xc5,0x4e, - 0x6,0xdf,0xc,0x4b,0xac,0x66,0xb3,0x45, - 0xfd,0x45,0x55,0x49,0x10,0x2,0x6,0xad, - 0x5f,0x0,0x54,0xb2,0x98,0xaf,0xef,0xe1, - 0x47,0xd9,0xc5,0x7d,0xf2,0x20,0xbd,0xee, - 0x79,0x90,0x82,0x5,0xa8,0xe1,0xd7,0x61, - 0x87,0x2b,0xae,0xa5,0x75,0xbd,0x29,0x43, - 0x7,0xe4,0xbf,0x6d,0xbf,0x43,0x7,0x5f, - 0x60,0x75,0x90,0x33,0x97,0xb7,0x6e,0x5b, - 0xf3,0x7a,0x5b,0xc2,0x70,0x5c,0xd7,0x46, - 0x7a,0x2c,0x7d,0x14,0x93,0x88,0x51,0x4a, - 0x1c,0x3d,0xf2,0x41,0x1b,0x16,0x4d,0x1e, - 0xe6,0xda,0xb4,0x4,0x15,0xdc,0x87,0x2d, - 0x5d,0x1c,0x85,0xb6,0x67,0xb9,0x3c,0xec, - 0x96,0x56,0x41,0x44,0xa4,0x6f,0x99,0xcd, - 0x7,0x98,0xca,0xe3,0xcc,0xc3,0xb4,0x40, - 0x4d,0x82,0x82,0x82,0x52,0x3e,0x64,0x67, - 0x9,0xa,0x74,0xf3,0x9d,0xdc,0xde,0x71, - 0x14,0xb3,0x93,0xe9,0xe3,0x11,0xda,0x3, - 0xb1,0x69,0xde,0xdd,0x9,0x69,0xdf,0x91, - 0x65,0xc1,0x73,0x7c,0xcc,0xa5,0x7d,0x47, - 0x8e,0x69,0xf,0xdc,0x40,0x96,0x75,0xcf, - 0x2c,0x65,0xb7,0xdb,0x4c,0x58,0x80,0xe6, - 0x41,0x70,0x1b,0xcd,0x5d,0xd3,0x0,0xcb, - 0x67,0x2a,0xf7,0x58,0x63,0x58,0xa6,0x2a, - 0xb9,0x5,0xe1,0x73,0x32,0xe3,0xf2,0x6, - 0x16,0x32,0x4b,0x5e,0x92,0xe0,0x89,0xd0, - 0x97,0x27,0xbd,0x65,0xdc,0xd6,0x30,0xbd, - 0xd5,0x93,0x74,0x80,0xa2,0x51,0x77,0xf4, - 0x8e,0x39,0xd0,0xf8,0xf0,0x1c,0x87,0xbe, - 0x22,0x96,0x51,0x50,0xb0,0x2f,0xf6,0x14, - 0xf5,0xf9,0x24,0x71,0x96,0x8a,0x8d,0xd4, - 0xda,0x3,0x76,0xcb,0x33,0x4b,0xaa,0x5c, - 0x87,0xdb,0xb4,0xe6,0xa6,0x54,0xb9,0x69, - 0x4a,0x65,0x1c,0x12,0xf6,0x92,0x75,0xde, - 0x62,0x2,0x31,0x45,0x8b,0x10,0x43,0x36, - 0x35,0x25,0xb1,0x2d,0x97,0x46,0x55,0xba, - 0x6c,0x6a,0xaf,0x50,0xd8,0xe6,0x62,0x30, - 0x41,0x1b,0x16,0xfd,0x9b,0x84,0xb1,0xc2, - 0xa4,0x45,0x93,0xda,0x5c,0x72,0xcf,0x99, - 0x8d,0x57,0x7c,0xc3,0x48,0x63,0x7e,0x38, - 0x5d,0x9e,0xf9,0x9e,0x35,0xf5,0x8b,0xf3, - 0xde,0x95,0x69,0xb4,0x1,0x91,0x91,0x6c, - 0xad,0xbd,0xac,0x33,0xf2,0xf6,0xe2,0xbe, - 0xe1,0xca,0x6b,0x65,0xb1,0xc8,0xaf,0x37, - 0x5a,0x48,0x65,0x76,0x55,0x73,0xab,0x7e, - 0x87,0xb5,0x20,0xd1,0x5,0xab,0xc2,0x49, - 0x93,0xed,0x3a,0x5f,0x6e,0x28,0x88,0x4b, - 0xc4,0xea,0x5c,0xca,0x2,0x49,0xe2,0x69, - 0xb2,0xb,0xdb,0xc1,0x2a,0xf8,0xb7,0xd7, - 0xb3,0x72,0x7a,0xf3,0xde,0x2e,0x1f,0x5b, - 0x1e,0xc2,0xd7,0x6c,0x1c,0xdb,0xf2,0x58, - 0x8b,0x6f,0x88,0xf4,0xd2,0xb8,0xc2,0x39, - 0x1e,0x2,0xb6,0x96,0x24,0x1b,0xcf,0xcd, - 0x81,0xa6,0xe6,0xfa,0xe6,0xed,0x8b,0xb, - 0x37,0xdd,0x81,0xfe,0x59,0x94,0x56,0x63, - 0xc,0x83,0x4e,0x63,0x60,0x2f,0x28,0xf8, - 0x47,0xc0,0xf3,0x48,0xc4,0x6e,0xbb,0xb7, - 0xf2,0x6e,0xe4,0x99,0xb5,0x5a,0x36,0x4e, - 0xad,0x13,0x85,0xfc,0x40,0x38,0x18,0xcd, - 0x30,0x80,0x64,0xed,0xa2,0xb7,0x71,0x97, - 0x42,0x82,0x8e,0x34,0xe1,0xc2,0x2b,0xe5, - 0x1e,0xb6,0x58,0x2d,0x3c,0xb4,0x4d,0xaf, - 0x23,0x8e,0x73,0xb8,0x50,0xde,0x84,0x8b, - 0xf,0xc5,0xe0,0xf,0x4a,0xa0,0x7a,0x94, - 0xe4,0xaf,0xde,0xe5,0x20,0x89,0x2a,0xa1, - 0x26,0x1e,0xf7,0x60,0xb0,0x85,0x68,0x91, - 0x9c,0x85,0xcf,0xb0,0x35,0xb0,0x7,0x54, - 0x34,0xe8,0xac,0xf7,0x85,0x2d,0x6c,0xf5, - 0x12,0x9b,0x1d,0x77,0x2a,0x15,0x72,0xa9, - 0x7a,0x18,0x7c,0x3d,0xac,0xd9,0x90,0xcb, - 0x96,0x3,0x65,0xca,0xa6,0x44,0xc1,0x1a, - 0xe3,0xef,0x7b,0x5a,0x56,0xb0,0xbd,0x2e, - 0x60,0x77,0xdd,0xa5,0x9d,0xf,0x1,0x7b, - 0x6,0x87,0xb9,0x6f,0xb9,0xad,0xdb,0x2f, - 0x49,0x3,0x8,0xef,0x5f,0xdd,0xe4,0xc4, - 0x98,0x66,0x57,0x8d,0xac,0xc1,0x30,0x77, - 0x7b,0xbf,0xf2,0x70,0x1c,0x77,0xd6,0x1e, - 0x86,0x8c,0x78,0xb9,0x79,0x50,0x98,0xd3, - 0x30,0xec,0x59,0x34,0x53,0x59,0xc9,0x39, - 0x19,0x7e,0x73,0xb1,0xc,0x67,0x68,0x24, - 0xf2,0x78,0xb4,0xe2,0xac,0x3b,0x16,0x8f, - 0xd6,0xb1,0x14,0x90,0x8c,0x92,0x75,0x63, - 0x8f,0xfc,0x72,0x6b,0x6,0xe0,0x18,0x99, - 0x22,0xf3,0x1e,0x0,0xe6,0x9c,0x85,0x62, - 0x55,0x7a,0xc3,0xa6,0xad,0x11,0x0,0x95, - 0xb6,0x36,0x80,0x7,0x3d,0x69,0xc9,0xe6, - 0xcf,0xec,0x44,0x2d,0xca,0x2e,0xe6,0xf7, - 0x6c,0xf9,0xe5,0x58,0x1,0x42,0x53,0xd2, - 0x17,0x3f,0x11,0x81,0x1c,0xa5,0x5c,0xab, - 0x65,0xdc,0x1a,0xd,0x71,0xc8,0x93,0x55, - 0x15,0x40,0x9,0xd,0x16,0x22,0xd3,0xd8, - 0x54,0x57,0x63,0x1c,0xde,0x20,0xa7,0x11, - 0x7,0xfb,0xb4,0xd1,0x18,0xac,0xe4,0xd2, - 0x9e,0x97,0x1a,0xd0,0x39,0xc,0x48,0x28, - 0x92,0x7c,0x8e,0xca,0x36,0x1e,0xe7,0xaa, - 0xfa,0x90,0xe0,0x45,0x3e,0x2b,0x89,0xac, - 0x8b,0x16,0x46,0x34,0xb0,0x3f,0x8c,0xe8, - 0xf1,0x3f,0xea,0x15,0x25,0xf2,0xc5,0x24, - 0xa5,0x9a,0x15,0xd1,0x92,0x22,0x99,0x47, - 0xd0,0x18,0xf1,0x80,0x49,0x5a,0x90,0x94, - 0x62,0x55,0xdd,0x98,0xe7,0x8b,0xda,0x23, - 0x91,0x7d,0xac,0xc9,0xe5,0xea,0x77,0x75, - 0xf9,0x7c,0x75,0x75,0x5,0xb4,0x53,0x1c, - 0x71,0xd5,0x9d,0xd9,0x88,0x6e,0x71,0x9e, - 0xa3,0xcd,0xb8,0xd0,0x2d,0x76,0x59,0x2f, - 0x7c,0xde,0x9b,0x2d,0x19,0x81,0xe2,0x75, - 0xbe,0xde,0xd4,0x71,0xdb,0x92,0x70,0xb3, - 0x75,0x19,0x69,0x33,0x6f,0xf1,0xda,0x35, - 0xa4,0xaf,0xf2,0x95,0x70,0xd2,0xce,0x5b, - 0xa2,0xe5,0x66,0xf9,0x6,0x79,0x44,0x41, - 0xb7,0x14,0xf8,0xba,0x94,0x41,0x15,0x78, - 0x1,0x51,0x80,0xc9,0xd8,0x33,0x2,0x76, - 0x5d,0xea,0xc8,0x6,0x9d,0xa1,0x19,0x1f, - 0x2c,0xf0,0x8,0x8f,0xbd,0xf0,0xa7,0xd, - 0x34,0xf4,0x47,0xdd,0x34,0xcf,0x6f,0xfb, - 0x34,0xa,0x1a,0xce,0x93,0x21,0x4a,0x30, - 0xd7,0x34,0xfb,0xf3,0x58,0xf5,0x69,0x16, - 0x7f,0x85,0x59,0x38,0xab,0x46,0xca,0x7d, - 0x75,0x30,0xaa,0x9f,0x96,0x1a,0x9f,0x2e, - 0x3c,0xe9,0x6a,0xe1,0x49,0x87,0x4e,0x15, - 0x1a,0x1b,0x5f,0x93,0x41,0xbf,0xd5,0xe2, - 0xd3,0xa9,0x35,0x9c,0x5b,0xbf,0x6e,0xc9, - 0x90,0x18,0x14,0xe9,0x14,0x5d,0xf9,0x10, - 0x1d,0x8d,0xa,0x0,0x85,0xd7,0xfb,0x7d, - 0xa1,0x4,0xbc,0x66,0x45,0x1d,0xa6,0xb, - 0x66,0x4d,0x26,0xd7,0x1b,0x3,0x41,0x14, - 0xab,0x77,0xae,0xa9,0x12,0xbe,0x17,0x9a, - 0xd6,0xe9,0x94,0x19,0xaf,0x73,0x15,0x44, - 0x91,0x4d,0x15,0x63,0x2c,0xea,0xf2,0x9b, - 0x5c,0x53,0xe0,0x30,0xf5,0x5b,0xcb,0xfa, - 0x9b,0x46,0xfe,0xe6,0xd6,0x10,0x93,0x38, - 0x3e,0x90,0x8f,0x6,0xdb,0xbe,0xb1,0xb0, - 0xe0,0x7e,0x15,0xfa,0xd7,0x4e,0xfd,0x51, - 0x3d,0xca,0xb4,0x40,0x41,0x88,0xa1,0xd6, - 0xe3,0x6a,0xa4,0xda,0xa7,0x5b,0xb2,0x8a, - 0xc2,0x35,0x63,0x95,0xc3,0x94,0x81,0x6c, - 0x51,0x98,0x60,0x68,0x1a,0xc8,0x8e,0x10, - 0xe,0x80,0x5d,0xa7,0x1,0x4d,0xc7,0xef, - 0xa,0x19,0xb2,0xc3,0x9,0x44,0x90,0x16, - 0xdd,0xde,0xff,0x92,0x4d,0x8c,0xa7,0x3e, - 0x45,0x50,0x32,0x9c,0x72,0xbc,0xe5,0xe4, - 0xa4,0x53,0xfb,0xcd,0xbf,0xa9,0x49,0x4b, - 0xf1,0xc5,0xa7,0xfd,0xc9,0xa,0x74,0xa0, - 0xc0,0x53,0xae,0x91,0x7,0xee,0xe3,0x50, - 0xe,0x91,0xa5,0x13,0x16,0x36,0xd6,0xf2, - 0xa8,0x37,0x6c,0xc2,0xc2,0x43,0x96,0x7a, - 0x69,0x8b,0x60,0x53,0x92,0xbc,0x8,0xb6, - 0x24,0x29,0x8c,0x60,0x9,0x87,0xc8,0xb0, - 0x8,0x4,0x4b,0xf5,0x22,0x1f,0xa9,0x6a, - 0xf,0x50,0x71,0x60,0xe0,0x36,0x7d,0xe1, - 0x27,0x53,0x39,0x15,0x71,0xdf,0x3d,0x9, - 0x68,0x8c,0x3a,0x8e,0x28,0x48,0x51,0x38, - 0xb,0x81,0x44,0x85,0x43,0xf8,0xfb,0x46, - 0xa8,0x57,0x1b,0xfb,0x29,0x51,0x75,0xcf, - 0x98,0x4c,0x44,0xea,0x3,0x6f,0x3,0xf1, - 0x59,0x21,0x3b,0x74,0xba,0xc9,0x13,0x25, - 0x25,0xad,0x80,0x34,0xd8,0xd6,0x3d,0xab, - 0x8c,0x2f,0xde,0x4f,0x88,0xf2,0x76,0xce, - 0xe1,0xd0,0x75,0xe1,0x53,0xb1,0x2d,0x8e, - 0xac,0x9e,0x14,0xd,0x61,0x3a,0x1e,0x19, - 0x59,0x2a,0x2d,0xf3,0x17,0x4d,0xb,0xe3, - 0x5d,0x7,0x7f,0x70,0x1a,0x61,0xda,0x77, - 0x24,0xfa,0x5b,0x7e,0xb,0x24,0xcd,0x17, - 0x1e,0x7,0xaa,0x38,0x31,0x5d,0x95,0xae, - 0x35,0x27,0xac,0x20,0x52,0x17,0x7e,0xf2, - 0x23,0xe1,0xf4,0xec,0x38,0xd9,0x61,0x1c, - 0x24,0xf7,0x96,0x36,0x2f,0x4e,0x32,0x5a, - 0x34,0x2f,0x6b,0xdd,0xe3,0x40,0x7a,0x42, - 0x26,0xfc,0x9a,0x3e,0xc1,0xfb,0x5d,0xbc, - 0x5,0xd0,0xe2,0x83,0x54,0x91,0xa2,0x44, - 0xf,0xeb,0x61,0x16,0x37,0xdc,0x90,0x6a, - 0xc3,0xd,0xa9,0xf4,0xb8,0x21,0x55,0xcc, - 0xd,0xa9,0x54,0x6e,0x48,0xb9,0x70,0x43, - 0x2a,0xe9,0x75,0xb,0x6d,0xb,0x94,0xbf, - 0x51,0x7a,0x54,0x78,0xfc,0x34,0xb5,0x40, - 0x47,0x42,0x36,0x3d,0x2a,0x5b,0x58,0xc6, - 0xa9,0xd5,0xbe,0x2d,0xc9,0x37,0x32,0x95, - 0xc1,0xa9,0x3e,0x22,0x4d,0xbe,0x5f,0xba, - 0xd0,0x64,0x44,0x3f,0xd9,0xa3,0x2b,0x78, - 0x69,0x9f,0x85,0xd2,0x3d,0x8,0x18,0x81, - 0xde,0x9,0xe2,0xe5,0x1e,0x4d,0xdf,0xa1, - 0xe2,0x1e,0x79,0x18,0x26,0xa6,0x5,0x2a, - 0xdd,0x10,0x46,0x51,0xb1,0x5a,0x2d,0xea, - 0x7c,0xd9,0xdd,0x89,0x70,0x7c,0xa8,0xc0, - 0xf0,0x28,0x24,0x10,0x5a,0xae,0x2e,0x55, - 0x85,0x4b,0x5,0xfa,0xde,0x87,0xd,0xbc, - 0x67,0xda,0xf2,0xed,0x2d,0xd4,0x2b,0x41, - 0x7b,0x9f,0x46,0xd2,0x44,0x5d,0x2,0x12, - 0xb4,0xa0,0xbf,0x86,0x48,0x9e,0x9f,0x4c, - 0xa6,0x74,0x70,0xde,0x1f,0xb0,0x93,0x3d, - 0x2e,0xd7,0x9a,0x91,0xac,0xae,0x22,0x17, - 0xbc,0xa8,0x96,0xe4,0x36,0x1f,0xc8,0x75, - 0x7b,0x9,0x2a,0xdf,0x37,0x9a,0x15,0xb7, - 0xe5,0x82,0xa9,0x32,0xac,0xe5,0xf1,0xac, - 0x8e,0x3b,0xb2,0x40,0xb6,0x67,0x68,0x1e, - 0xc5,0xbd,0x29,0xfa,0x51,0x3,0x51,0x4f, - 0x1d,0xf8,0x42,0x84,0x4b,0x34,0xef,0x8d, - 0xf,0x2e,0x4c,0x81,0xa,0xcd,0xb1,0x54, - 0x36,0x28,0x6d,0xdd,0x3d,0x0,0xc8,0x46, - 0x7c,0x59,0x5f,0x5d,0xc3,0x65,0xad,0xbb, - 0x78,0x1a,0xd2,0xab,0x40,0x29,0xe9,0x63, - 0x5c,0x22,0xed,0x99,0x27,0xb9,0xed,0x28, - 0x4c,0xaf,0xc2,0x78,0x55,0xb6,0x17,0xe5, - 0xe4,0xee,0x8e,0x82,0x9a,0xb3,0x9f,0xf8, - 0x2f,0x7c,0x30,0xb4,0x1c,0xe3,0x17,0x54, - 0x1d,0x64,0xa6,0x8f,0x1d,0xa6,0x72,0x14, - 0x7d,0x7c,0x9c,0x73,0xe1,0x16,0x40,0xfb, - 0xe,0x4d,0xe7,0x44,0x59,0xa8,0xc7,0xef, - 0x5f,0x2c,0x31,0x52,0x6f,0x59,0x74,0x78, - 0xa7,0xe4,0x76,0x3f,0x7a,0x78,0x5c,0x2f, - 0x2d,0x16,0x9f,0xbc,0x54,0x35,0xfc,0xa8, - 0xbd,0x51,0x37,0xf2,0x53,0x4f,0x6d,0xc2, - 0xc4,0xd4,0x97,0xee,0x93,0x1a,0xd8,0xa2, - 0xe6,0xe0,0x9e,0xba,0x5,0x8e,0x58,0xc8, - 0xa2,0x43,0xc2,0x6b,0x6d,0xff,0x9d,0x97, - 0xc6,0xbd,0x92,0x54,0xaf,0x30,0x7b,0x24, - 0x2,0xb8,0x3,0x1d,0x5b,0xe2,0x3f,0x15, - 0x32,0x4b,0x19,0xf,0x88,0x73,0xff,0xd5, - 0xaf,0x4e,0x4e,0x46,0x45,0x76,0x98,0x8, - 0xc1,0xe7,0xb4,0x3b,0x3c,0x9b,0xa0,0xbb, - 0x88,0x57,0xcf,0xb2,0x60,0xae,0x4f,0x82, - 0x2c,0xb9,0x1e,0x1f,0x41,0xcc,0x39,0x76, - 0x7,0xdf,0xfa,0x5b,0x10,0x10,0xa9,0xd6, - 0xc3,0xc4,0x63,0x89,0x27,0x2d,0xc,0x9b, - 0x1e,0xfe,0x5e,0xa,0x85,0x34,0x5f,0xd9, - 0x0,0xe5,0x8,0x47,0xce,0xde,0x15,0xdf, - 0x4,0xd,0xa6,0xcf,0x8c,0x19,0xd7,0xe1, - 0x39,0xd,0x63,0xdd,0x9f,0x66,0xc1,0xdc, - 0x71,0xe7,0x8e,0xf,0x94,0xe3,0xbc,0x6f, - 0xda,0xad,0x18,0x90,0x2d,0x35,0x4e,0x25, - 0x19,0x3a,0x6b,0x31,0xa6,0x1c,0x16,0xb4, - 0x60,0x58,0x84,0x68,0x5d,0x77,0x73,0xba, - 0xcf,0x4,0xe,0x9,0x75,0x3e,0xbc,0xc7, - 0x9a,0x8f,0xba,0x9c,0x8,0x36,0x27,0xb, - 0xd0,0x5c,0x7f,0xe6,0xae,0x33,0x92,0x2f, - 0x48,0xdb,0x20,0xc4,0x57,0x2f,0x6d,0x1, - 0x46,0x40,0x8e,0x5c,0xc6,0xd3,0x3a,0xe6, - 0x31,0x7f,0x77,0xcb,0xb6,0xd1,0xd5,0xd6, - 0x6a,0x78,0xa0,0xc0,0x60,0xe8,0xb5,0xe3, - 0x6c,0x7b,0x6,0xf5,0x90,0x11,0x31,0xd7, - 0xfe,0xb5,0x2a,0x42,0xba,0x63,0xc8,0x7d, - 0xaa,0xce,0xa4,0xe7,0x55,0xe,0x97,0x4e, - 0xcd,0x55,0x1c,0x61,0x56,0x6b,0xec,0xa4, - 0xc,0xc9,0x98,0xb,0xe,0x3b,0xfd,0xb5, - 0x42,0x12,0xb3,0x22,0xc9,0xd8,0x97,0x2a, - 0x9f,0xaf,0xce,0xf1,0x2e,0x4e,0x9e,0x9d, - 0x9e,0xf,0x8f,0x8e,0xc2,0x44,0x5,0x77, - 0xe8,0x2f,0x6e,0x2e,0xb9,0x9b,0x7b,0xe0, - 0x39,0x39,0x83,0x93,0xcd,0xf1,0xe5,0xb8, - 0xdb,0x7d,0x1a,0x2b,0x83,0x35,0x31,0xb3, - 0xbb,0x3b,0x73,0xe0,0x0,0x28,0xf4,0xce, - 0x14,0xbe,0x34,0x7d,0x80,0x2c,0xae,0x30, - 0xac,0x97,0xf,0xf3,0xe4,0x17,0xd5,0x64, - 0x1c,0x97,0x1e,0x99,0x57,0x45,0x82,0x40, - 0x29,0x36,0x87,0x72,0x29,0x7a,0x91,0xc2, - 0xa1,0x2e,0x75,0x3c,0x59,0x27,0x63,0xad, - 0x18,0x37,0x55,0x95,0x3a,0x4c,0x8c,0x5d, - 0xe5,0x95,0x9b,0x55,0x24,0x28,0x73,0x5e, - 0x38,0x2c,0xbd,0xe7,0xa5,0xf4,0x8a,0xe4, - 0xc,0xce,0xb,0xdf,0x42,0x34,0x39,0x37, - 0x36,0xa0,0xa,0x7,0xbd,0x4f,0x3a,0x8b, - 0x1d,0x2c,0x45,0xc0,0xfd,0xde,0xa3,0x4c, - 0xf1,0xdd,0x46,0xb8,0xc3,0x2f,0x48,0x90, - 0x6d,0xcd,0xe,0x36,0xa0,0x36,0xdf,0x6f, - 0x1c,0xf3,0xe7,0x1b,0xeb,0x64,0x58,0x89, - 0x5f,0x7b,0xf,0xa3,0x90,0x10,0x7f,0xcd, - 0x48,0x3e,0x21,0x86,0xd1,0xd9,0x2,0xfd, - 0x22,0x75,0x6b,0xbb,0x82,0x30,0x68,0x4d, - 0x1f,0x18,0xf9,0x65,0x1b,0x35,0xc,0x91, - 0xb8,0x62,0xa7,0x69,0xee,0x2f,0xd8,0x4b, - 0x93,0x30,0x20,0xf1,0xe6,0x24,0xba,0xa0, - 0x92,0x65,0xdc,0xc1,0xae,0xe9,0x48,0x8f, - 0xfc,0x2a,0x61,0x74,0xc8,0xf5,0xbf,0x5c, - 0x49,0x8e,0xa1,0x3f,0xae,0xde,0x6a,0x6f, - 0x50,0x2a,0x75,0xae,0xfb,0x5e,0x65,0x6b, - 0xf1,0xb0,0xad,0x29,0x67,0x1c,0x7d,0xbb, - 0x4d,0xc0,0x1a,0x88,0xd6,0x4c,0xb6,0xa3, - 0xe1,0x60,0xcd,0xf9,0xe6,0xf5,0xf3,0xd5, - 0x72,0xda,0xa0,0xb7,0x2d,0x3e,0x53,0x10, - 0x88,0xb6,0xec,0x41,0x1f,0x80,0x1f,0x81, - 0xd1,0xb8,0x64,0x2f,0x73,0x5c,0x32,0x62, - 0x1e,0x69,0xd3,0x1,0x9c,0x3f,0xd6,0x62, - 0x1c,0x7d,0xb1,0xae,0x7b,0x0,0xbd,0xbd, - 0xcd,0x8e,0xff,0x78,0x9b,0x2f,0xb7,0xbd, - 0xed,0xaa,0xc7,0x56,0x82,0xda,0xee,0x2d, - 0x81,0x27,0x1b,0x47,0x9,0xd1,0xb5,0xc4, - 0x55,0x85,0xa3,0x47,0x87,0x2,0x47,0x5f, - 0x4c,0xee,0x13,0x7,0x1a,0xd,0x18,0x55, - 0x64,0x60,0xa,0xcb,0x68,0x7b,0xdf,0x53, - 0x78,0x46,0x65,0xed,0xf8,0x1e,0xa1,0x9e, - 0x1f,0xd4,0x59,0xc7,0x68,0xce,0x1a,0x17, - 0x89,0xe6,0xea,0xdb,0xfa,0xea,0xbb,0xe5, - 0x74,0x15,0xf,0x64,0xf4,0x31,0xdb,0xfa, - 0xf9,0xf8,0x38,0xc2,0xaf,0xd3,0xed,0x8a, - 0xde,0x59,0x77,0x63,0x12,0x8d,0xbd,0x91, - 0xa1,0x73,0x1e,0x45,0xf3,0x49,0x92,0x7e, - 0x8e,0xe6,0xb0,0xf4,0x75,0x9f,0xe8,0xd0, - 0x6a,0x71,0xe0,0xb8,0xe0,0x61,0x72,0xc3, - 0x18,0x6b,0xa9,0x9e,0xf0,0xce,0x9c,0xb5, - 0xcd,0x17,0xb,0x2c,0xb7,0xb1,0xaa,0xfb, - 0x73,0x3d,0xcd,0x30,0x28,0xbd,0x5c,0xe4, - 0x9b,0xad,0x67,0x14,0xfe,0x5c,0xdf,0x68, - 0x1e,0xb2,0xa7,0xa6,0x8,0x5d,0xa4,0xe2, - 0xc0,0x77,0xd7,0xf6,0x7c,0x7c,0x99,0x81, - 0x71,0x88,0x72,0xd5,0xea,0xed,0xb2,0xa5, - 0x19,0x2d,0xbb,0xa5,0x21,0xbe,0x2,0xfe, - 0x66,0x8c,0x4c,0xa3,0x91,0x91,0x29,0x19, - 0x79,0x8f,0x10,0xd9,0xf7,0x4,0x8f,0xc1, - 0xe3,0x80,0xc7,0xe0,0x71,0xc0,0x63,0xe0, - 0x3,0xf,0x16,0xaf,0xd5,0x1,0x8f,0xc2, - 0x0,0xf,0x23,0x60,0x76,0x6a,0xa4,0x87, - 0x1,0xa4,0x8,0x3,0xc8,0xc0,0xd3,0x48, - 0x8,0x40,0x8a,0x36,0x0,0xb1,0x1b,0xa, - 0x3,0x48,0x11,0x6,0x90,0x81,0xd,0x20, - 0x5d,0x3,0xb4,0x19,0x51,0x1f,0xc8,0xa8, - 0x1d,0x69,0x2f,0x99,0x82,0xb4,0xfb,0xa5, - 0xd1,0xe9,0x26,0xf3,0xa,0x4f,0xe8,0xe, - 0xe4,0x25,0xc3,0x51,0xd7,0x7c,0xa5,0xdd, - 0x8e,0x2c,0x28,0xe2,0x3d,0x7a,0x86,0x12, - 0x10,0xe4,0xe8,0xad,0xcb,0xc6,0xee,0x37, - 0x28,0x59,0xcd,0x1d,0x9d,0x5,0x9c,0xef, - 0x37,0x3a,0xd1,0xd8,0x3d,0x47,0x27,0xaa, - 0x69,0xa3,0xa3,0xf3,0xd7,0x61,0x8b,0xd6, - 0x35,0x19,0xd1,0x75,0xed,0x90,0x17,0xd7, - 0x3a,0x42,0x4c,0xa1,0x9b,0x5b,0xfa,0xeb, - 0x41,0xa9,0xae,0x5d,0x40,0xd1,0x54,0x2a, - 0x24,0xc9,0xc5,0xdb,0xdb,0x3e,0x43,0xee, - 0xbc,0xe,0x96,0xa,0xb7,0xef,0x14,0xe5, - 0x98,0x8f,0x7f,0x33,0x5e,0xf3,0x52,0xea, - 0xb3,0x45,0x35,0x37,0x3f,0xdc,0x85,0x5b, - 0x36,0xf4,0x30,0xaf,0xf5,0x20,0x12,0x97, - 0x72,0x5c,0xa3,0xc3,0xdb,0x7b,0x3a,0xc3, - 0x51,0x1b,0xef,0xe7,0x17,0x42,0x4d,0x74, - 0x74,0xd0,0x8,0x34,0x7e,0x8f,0x66,0xad, - 0x6,0xf1,0x10,0x75,0x77,0x3a,0xc,0xb4, - 0xa9,0x1a,0x91,0x46,0x9d,0xff,0x45,0x82, - 0xa5,0x3c,0x70,0xcb,0xee,0xe3,0x53,0xf3, - 0xdf,0xc2,0xc9,0x54,0xd1,0xdb,0x99,0x97, - 0xde,0x8e,0xdb,0xa0,0xf7,0xde,0xeb,0x6c, - 0xbb,0x21,0xbd,0x87,0x23,0x29,0x67,0x28, - 0xac,0x7,0x56,0xdb,0xa0,0xc7,0x71,0xb2, - 0xd4,0x8e,0xd0,0x83,0x1d,0x4e,0xad,0x58, - 0x4f,0xc9,0x90,0x16,0xf4,0x37,0xb6,0x98, - 0x7f,0xc5,0x95,0x7c,0xe8,0x32,0x7e,0x18, - 0x44,0xff,0xd8,0x48,0xf3,0xde,0xb8,0xdd, - 0xbd,0xf9,0xc6,0x9d,0xb6,0x78,0xd8,0xe9, - 0x66,0x48,0x14,0x97,0xc2,0xed,0x0,0x49, - 0xe9,0xf7,0x60,0xe3,0x7,0x3d,0xa0,0xa0, - 0x24,0xb5,0x35,0x8b,0x8,0x1d,0x72,0xbc, - 0x6c,0x76,0x3,0xb9,0x97,0xc,0x6d,0x5b, - 0xd1,0xa1,0x31,0x67,0x73,0x7c,0x7c,0x14, - 0x96,0x24,0x53,0x89,0xc4,0x10,0x22,0x68, - 0xa4,0x4,0x73,0x2e,0xfb,0xb1,0x9e,0x6e, - 0x3c,0x95,0x46,0x56,0xe7,0x19,0x77,0x40, - 0xbd,0xbb,0x8b,0x30,0x31,0xd2,0xa4,0x6d, - 0x5a,0x21,0x96,0x67,0x88,0x26,0x54,0xae, - 0x9c,0xac,0x27,0x28,0x37,0xaf,0x71,0x68, - 0x2a,0xe3,0xdc,0xd4,0x0,0x52,0xaa,0x21, - 0xb1,0x73,0x8c,0x3f,0xb0,0xc3,0xd,0xbe, - 0x75,0x32,0x18,0xdf,0xee,0x87,0x2d,0x65, - 0xc6,0x2d,0xd1,0xa7,0xa9,0x40,0x32,0xa4, - 0xf8,0x1e,0x83,0xa1,0x53,0x90,0x86,0x81, - 0x9a,0xb9,0xa1,0x93,0x3a,0xf6,0x17,0x4e, - 0x86,0xb7,0x7b,0xb9,0x1e,0x28,0xd1,0x9, - 0x85,0x28,0x37,0x96,0xc,0x4d,0xac,0xd4, - 0xa2,0x36,0x50,0x2d,0x33,0x3f,0x29,0x78, - 0x39,0x13,0xe4,0x5b,0x5e,0x12,0x85,0x10, - 0x18,0x5,0x55,0x7f,0xb2,0x91,0x8b,0x72, - 0x32,0x76,0x52,0x86,0x71,0xd1,0x6,0x40, - 0x85,0x50,0x5e,0x6a,0x55,0xb2,0x5b,0x66, - 0x8,0x5c,0x98,0x90,0x93,0x4a,0xa9,0xde, - 0xb0,0xd0,0x24,0x7c,0xfc,0x21,0x9d,0xf3, - 0x27,0x29,0x59,0x63,0xb,0xe1,0xfb,0xb0, - 0x30,0xe2,0x5d,0x17,0x6c,0xf9,0xf6,0x6e, - 0x6f,0xec,0x2c,0x71,0x1c,0xc4,0xce,0xe9, - 0x81,0x35,0x25,0x41,0x1a,0x8a,0xf0,0x3, - 0x2b,0x5d,0xb6,0x4d,0xb8,0xa4,0x27,0x1c, - 0x8,0xe8,0xf9,0xfc,0x4e,0xa2,0x5e,0x74, - 0x12,0xe7,0x27,0xe7,0xea,0x55,0x27,0xbb, - 0xbe,0x1b,0x39,0xdb,0xc6,0xe5,0xe3,0xb8, - 0xca,0xe,0xd1,0x13,0x2d,0x17,0x6d,0x6c, - 0xc8,0xa2,0xed,0x38,0x5,0x15,0x3a,0x97, - 0x73,0x2c,0x28,0xec,0xda,0x92,0x61,0x95, - 0x15,0x7d,0x63,0xc9,0xad,0xe,0x3c,0x6, - 0x6c,0xc3,0xe,0xd7,0x89,0x42,0xf1,0x56, - 0xe4,0xc4,0x11,0x33,0x91,0xb3,0xd7,0xa6, - 0xc5,0x44,0xcf,0x2a,0xaa,0x82,0x85,0xcb, - 0x2b,0x4b,0x58,0xec,0x59,0x93,0x13,0x46, - 0x7b,0xa4,0x17,0x31,0x62,0x86,0xb,0x14, - 0x35,0xd5,0xed,0xf7,0xa6,0xd2,0x9e,0x6e, - 0x6a,0x4,0x70,0x9c,0x5a,0xc4,0xed,0xdd, - 0x5d,0x3c,0xb5,0xae,0xa1,0xf6,0x7b,0xcb, - 0x7a,0xa1,0xc1,0xaa,0x8b,0xa,0x1,0xaf, - 0x99,0x19,0xa3,0x35,0xd1,0xd4,0x47,0x5d, - 0x1d,0x8f,0x6e,0xd,0x66,0xd0,0xe6,0x76, - 0x8a,0xdb,0xb8,0x3f,0xd3,0xed,0xc2,0xa5, - 0xd6,0x15,0x40,0x8,0x3,0x1b,0x5,0x21, - 0x4e,0x37,0xde,0x3c,0xff,0x3b,0x11,0x5e, - 0x3a,0x42,0x7b,0xf6,0x97,0xf4,0xba,0x4e, - 0x7,0x9e,0x1c,0xb7,0x79,0x8b,0x3c,0x24, - 0xda,0x81,0xd7,0x67,0x74,0x84,0xd3,0xac, - 0x9d,0xec,0xb6,0x69,0xd1,0x52,0x9b,0xcc, - 0x92,0x7c,0xd9,0xec,0x9e,0xc3,0x28,0xd9, - 0x84,0xa2,0x46,0xe0,0x49,0x68,0xf4,0xd9, - 0xb2,0x11,0x20,0xd9,0xe2,0x5a,0x25,0xcc, - 0xd4,0x10,0xa4,0x3f,0xb0,0x2d,0x5,0x42, - 0xc9,0xc9,0x82,0x97,0x5,0xa6,0xa5,0x90, - 0xcb,0xfa,0xa,0xd8,0x29,0xc6,0xe4,0xf9, - 0xe3,0x36,0xd2,0x2c,0x92,0x5,0xc0,0x40, - 0xb8,0x2e,0xd4,0xec,0xf1,0xd6,0x20,0xe2, - 0x55,0x4,0x76,0xe6,0xdf,0x7b,0x91,0x40, - 0xcf,0x22,0x8b,0xd8,0xd9,0x52,0x56,0x48, - 0xf2,0x68,0xd9,0xac,0x57,0xaf,0x9d,0x2b, - 0xfa,0x76,0x54,0x60,0x30,0x1,0x69,0x9d, - 0x89,0xd1,0x5a,0xb5,0x49,0x94,0xa1,0x9, - 0x94,0x3c,0x58,0xa,0x46,0xd4,0xb2,0x67, - 0x9e,0xb7,0xcd,0x3c,0x17,0xb1,0x8f,0x79, - 0x75,0xf6,0x37,0xe0,0x59,0x5c,0x86,0xe2, - 0xa,0xe8,0xfa,0x22,0x76,0xd7,0xbd,0xc8, - 0xdf,0x79,0xf4,0x67,0x87,0x48,0xa8,0xd0, - 0xeb,0x1d,0x92,0x4e,0x3a,0x1f,0x4b,0xbd, - 0x50,0x88,0xd4,0x4a,0x2d,0x2b,0x2c,0xaa, - 0x7b,0x77,0x77,0x7e,0x36,0x30,0x29,0x20, - 0x23,0xab,0x4b,0xe0,0xe5,0x16,0xc8,0xab, - 0xc4,0xe2,0x8d,0xfd,0x8f,0x4b,0x65,0x95, - 0x13,0xb,0xb9,0xea,0x1e,0xe1,0xb8,0xa, - 0x47,0x38,0xae,0x58,0x7c,0xe3,0x80,0xd5, - 0x4,0x99,0x4a,0x0,0x50,0xda,0x56,0x11, - 0x18,0xb5,0x39,0x43,0x92,0xd0,0x4f,0x8e, - 0xb1,0x37,0x83,0x4b,0xa9,0xa0,0xab,0xd7, - 0xd,0xf0,0x93,0x7f,0xd1,0xd5,0x68,0xca, - 0xd8,0x8a,0x51,0x9f,0xf4,0xb6,0x4e,0xce, - 0x77,0xe0,0xa9,0xaf,0xc8,0x28,0xc9,0xb5, - 0x17,0x5d,0xc,0x2a,0x47,0x68,0xee,0x35, - 0x82,0x8b,0x13,0x1f,0xc,0x90,0x62,0x7a, - 0x86,0x81,0x15,0x7a,0x66,0xa5,0xc3,0x44, - 0xf2,0xfe,0x66,0xd1,0x94,0x75,0x3c,0x48, - 0x8d,0xbc,0x84,0x93,0x3a,0x62,0xef,0x72, - 0x4b,0xa5,0x5f,0x9,0xc5,0xd2,0xb8,0x52, - 0x21,0xf1,0x85,0x55,0x4,0xba,0x79,0xd, - 0x2b,0xed,0xec,0x43,0xb1,0x58,0x96,0xcb, - 0xcc,0x9c,0x34,0xd0,0x80,0x96,0x1e,0x7c, - 0xe2,0x28,0xd2,0xa,0xf1,0x0,0xd8,0x46, - 0xd4,0x78,0xbb,0xb8,0xde,0xa8,0x76,0xe6, - 0x86,0x95,0x88,0xdb,0x83,0x1d,0xef,0x13, - 0xcd,0xc9,0x30,0x97,0x5e,0x85,0x4f,0x2b, - 0x43,0x5,0x84,0x5e,0x86,0x95,0x81,0xf1, - 0x44,0xa8,0xf2,0x44,0x45,0x2d,0x67,0x2e, - 0x82,0xec,0x93,0x47,0x2e,0x97,0xcb,0x2d, - 0x37,0x8e,0x3f,0xe9,0x46,0x45,0xa7,0xbc, - 0x19,0xcb,0x70,0x80,0xfc,0x16,0x19,0xc4, - 0x57,0x1a,0xc4,0xb,0xdb,0xd0,0x59,0x46, - 0xb9,0xf4,0xee,0x73,0x7a,0x34,0x43,0x74, - 0xad,0xd,0x15,0x56,0x65,0x26,0xc2,0xa6, - 0xb3,0xc0,0x3f,0x44,0xb6,0x28,0x99,0xc2, - 0xc,0x7,0xac,0x33,0xb8,0x6c,0xf1,0x2d, - 0xf6,0xb6,0xb2,0x22,0xe8,0x57,0xba,0x19, - 0x4b,0xc8,0xf2,0xd7,0xb6,0x5f,0x51,0xe6, - 0xbb,0x63,0xf5,0x93,0x8f,0x73,0x38,0x30, - 0x1f,0xdb,0xd6,0x9e,0x21,0xb1,0x97,0x84, - 0x6c,0x4a,0xa4,0x15,0x70,0xa9,0xd9,0xfd, - 0xa2,0xf,0x87,0x38,0x7a,0x7a,0xe3,0x77, - 0x77,0xb9,0x1e,0xb2,0xdf,0x3e,0x5f,0x26, - 0xea,0x14,0xa9,0xcf,0x9c,0xb8,0xfe,0xa3, - 0xf0,0x80,0x4a,0x8f,0x9e,0x2e,0x97,0x4f, - 0x46,0xc8,0xf7,0x46,0xc7,0x4e,0xb9,0xd0, - 0xbb,0x5d,0x7,0x8a,0xd1,0x8d,0x62,0x6b, - 0xf4,0xaa,0xb1,0x95,0x16,0x6a,0xbc,0xb5, - 0x10,0x3d,0x60,0x1f,0x58,0xde,0x91,0x78, - 0x3b,0x76,0xe4,0xac,0xf1,0xf8,0x3c,0xf3, - 0xac,0xfc,0xb8,0x55,0x8d,0xeb,0xbd,0x12, - 0x85,0x7e,0xa7,0x4d,0x37,0x36,0x6e,0xd3, - 0xea,0x7a,0x27,0x1d,0xdf,0xa3,0x46,0x94, - 0x72,0x13,0xd4,0xf8,0x37,0x33,0x16,0xef, - 0xaa,0xd8,0xfa,0xcc,0xf1,0x7d,0xd7,0x7a, - 0x78,0x9f,0xdd,0x51,0xab,0x72,0xdf,0x9, - 0xa7,0xf7,0x1d,0x57,0x92,0x5a,0x57,0x95, - 0xf1,0xf9,0xd4,0x39,0x98,0xfa,0xda,0x28, - 0x35,0xe2,0xd8,0x67,0x80,0xd0,0xb2,0xc, - 0xed,0x25,0xc5,0x46,0x1c,0x99,0x31,0xbf, - 0x8e,0x8f,0x85,0x35,0x6d,0xc0,0xd4,0xd4, - 0x88,0x7b,0x3b,0x6c,0x2d,0x4a,0x83,0xd9, - 0x7b,0xdf,0x1c,0xd1,0xcd,0x38,0x85,0x7b, - 0xb7,0x8e,0x99,0x4a,0xfe,0x30,0xc6,0x44, - 0xca,0x3c,0xc,0x89,0x9,0x7b,0xc6,0x40, - 0x5d,0xbc,0x15,0x1e,0x6c,0x5e,0x3,0xe5, - 0x1d,0xc6,0xfb,0x35,0x32,0xa7,0xfb,0xfb, - 0x35,0x4e,0xd,0x83,0x82,0x53,0xd9,0x16, - 0x25,0x67,0xaa,0x58,0x4a,0x5b,0x25,0x60, - 0x34,0x6b,0x3c,0xb2,0xca,0x9e,0x21,0x71, - 0xbb,0x75,0x1e,0x9a,0x51,0x45,0x50,0x7a, - 0x90,0xf8,0xde,0xe7,0x34,0xa6,0x6f,0x4e, - 0x5,0x81,0x3d,0x3c,0x88,0x47,0x18,0xc1, - 0xa1,0xee,0xcd,0xef,0x6e,0x71,0x69,0x4b, - 0xfd,0x76,0x37,0xea,0xa7,0xa5,0x75,0x8b, - 0x77,0xb,0x3f,0xbb,0x4f,0x94,0xab,0xa6, - 0x6c,0xcd,0x12,0x9c,0xa8,0x1c,0x53,0x6, - 0x2,0x80,0xe9,0xb5,0x60,0xd0,0x96,0xc5, - 0xc8,0xb2,0x23,0x2d,0x95,0x96,0xa,0x6, - 0x85,0x8c,0x58,0x3c,0x18,0x38,0x8f,0xb7, - 0x86,0xa0,0x4e,0x63,0x8c,0xd2,0xb,0xbb, - 0x8d,0x89,0xb1,0xae,0xe6,0x5d,0x68,0x5, - 0x66,0x12,0x9d,0x79,0x23,0x34,0xf1,0xcc, - 0x70,0x63,0x66,0xb8,0x94,0x2a,0xdf,0xe6, - 0xa7,0xd,0xdc,0x6f,0xe1,0xa,0x9d,0xf6, - 0x97,0x62,0x57,0x77,0xa,0x1b,0x7c,0x4, - 0xa0,0x60,0xda,0x88,0xc6,0xda,0xb3,0xd8, - 0x8c,0x34,0x3b,0xff,0x54,0xac,0xb8,0x3b, - 0x54,0x7c,0x18,0x5b,0xbf,0xff,0x53,0xa2, - 0xca,0x14,0xb1,0x6a,0xd1,0x40,0x39,0x90, - 0x5e,0x40,0x85,0xd7,0x8c,0x57,0x29,0x13, - 0xe6,0x51,0x2b,0xc5,0x5c,0xa5,0x66,0xc9, - 0x2d,0x97,0xa0,0x98,0x8c,0x67,0x99,0xfc, - 0x8d,0x40,0x3a,0x14,0x5f,0xa7,0xe7,0x13, - 0x22,0x5e,0xb5,0x6f,0x46,0xbe,0xce,0x8, - 0x47,0x19,0x24,0xac,0x5,0xd8,0xd8,0xbc, - 0x1e,0x37,0x21,0x35,0x9c,0x86,0x61,0x9a, - 0xb3,0x19,0x2e,0x2e,0x5b,0x7c,0x40,0xb5, - 0x11,0x8e,0xb5,0xc6,0xa1,0x1b,0x11,0xa1, - 0xfd,0xbb,0x44,0xad,0xdb,0x26,0x25,0x6, - 0xda,0x74,0x4c,0x4d,0xda,0xe0,0x59,0x7b, - 0xc5,0xa2,0x17,0x9d,0xd8,0xf9,0x3a,0xac, - 0x68,0xcd,0xda,0x70,0xca,0x1b,0x69,0x79, - 0xe1,0xc2,0xdf,0x4c,0x7,0x8,0xd5,0x8b, - 0x77,0x82,0x4f,0x6,0x57,0x3a,0xdc,0x8c, - 0xba,0xc1,0x2b,0xe7,0x39,0x5b,0x21,0x12, - 0xc0,0xae,0xb0,0xc1,0xe,0xf9,0xa2,0xe3, - 0xe3,0xc2,0x0,0x3b,0x9,0x6a,0x45,0x92, - 0x5a,0x6e,0xd0,0xc,0x1e,0xac,0xb0,0x1a, - 0xa1,0x9d,0xd7,0x66,0x8f,0x2f,0x36,0x1f, - 0x1f,0x1f,0x95,0xae,0x59,0x94,0xb1,0xf9, - 0x86,0x5d,0x9f,0x2f,0xf6,0x27,0x2b,0x10, - 0x44,0x60,0xd4,0x30,0x34,0xc0,0xb0,0x97, - 0x1,0x0,0xa6,0xc9,0xa0,0x5,0x2,0xa2, - 0x59,0x2f,0x10,0x60,0x66,0x14,0x6e,0xaa, - 0x3,0x18,0x98,0x15,0x3a,0x1,0xc2,0x3d, - 0x76,0xfd,0x0,0x1e,0xa2,0x10,0xc,0x71, - 0xf1,0x34,0x1b,0x24,0xea,0x75,0x76,0x3, - 0x2f,0x55,0x84,0x1f,0x46,0xec,0xf,0x7e, - 0x4d,0x52,0xfc,0x27,0xab,0x75,0x58,0xa0, - 0x9,0xb9,0x97,0xa3,0xc0,0x2c,0xce,0xf5, - 0xd8,0x9,0x89,0xe0,0xc2,0x30,0x14,0xd2, - 0x8e,0x43,0x8c,0x5,0xa4,0x6d,0x75,0xe0, - 0xc8,0xb8,0x16,0x2d,0x6,0x30,0x4,0x49, - 0x58,0xa4,0x1d,0x96,0xa8,0x91,0x0,0x34, - 0xe9,0x1c,0xa6,0x7,0x9e,0x58,0xe3,0xdd, - 0x21,0xca,0x60,0x58,0xbb,0xc1,0x94,0x5e, - 0xe5,0x57,0x86,0x2a,0xeb,0x76,0xe3,0x40, - 0xf6,0x2c,0xab,0x24,0xbb,0x9e,0x88,0x8, - 0xe1,0x0,0x4b,0x27,0xc,0xbc,0x4e,0xee, - 0xf,0x5e,0x27,0xbf,0x16,0x78,0x69,0x6b, - 0x89,0x31,0xab,0x51,0xe6,0x2d,0xb2,0x95, - 0xaf,0x55,0xaa,0x63,0x44,0x36,0x12,0xe2, - 0x38,0x84,0x55,0x84,0xdf,0x49,0x61,0xf4, - 0x37,0x1a,0xe9,0x98,0xc3,0x49,0xae,0x2b, - 0xa6,0xc,0xae,0x2c,0x15,0x2a,0x6,0x97, - 0x61,0x1b,0x3d,0x28,0x4a,0x32,0x89,0xbc, - 0x1d,0x10,0xae,0xe,0x47,0x49,0xb6,0x82, - 0x20,0x73,0xa5,0x55,0xcc,0x7f,0x79,0xa4, - 0x38,0xe1,0x49,0x65,0x85,0x19,0xa1,0x5c, - 0xe8,0x2e,0x36,0x21,0xb7,0x2e,0x36,0x18, - 0x2f,0xd7,0x5a,0x3a,0xc1,0x90,0x89,0x47, - 0xbd,0x7f,0x14,0x66,0x2b,0xc0,0x72,0x70, - 0xec,0x52,0x73,0x72,0x8f,0x9,0xc8,0xb7, - 0xf7,0x5a,0x59,0xef,0xc3,0xab,0x2a,0xdb, - 0x9,0xcc,0xf8,0x63,0xcc,0xe7,0xf,0x11, - 0xf3,0xd9,0x14,0xcc,0xd8,0x58,0xc6,0x63, - 0xa8,0xc7,0x1f,0x6e,0xa,0x60,0x1c,0xd1, - 0x9c,0xe0,0xf,0x3d,0xd,0x4c,0x12,0x6f, - 0xd7,0xf7,0x7f,0xee,0x49,0xaf,0xfc,0x88, - 0xc1,0x7a,0x47,0x42,0xf9,0x69,0xb8,0x2d, - 0x19,0xfa,0xd6,0x31,0x7b,0x5e,0x81,0x54, - 0xad,0x66,0x4e,0x2a,0x33,0xb4,0x6b,0x41, - 0x26,0x19,0x3e,0xb6,0xec,0x31,0x6c,0x91, - 0xd5,0xa2,0x89,0x51,0x85,0x84,0x2a,0x54, - 0xfb,0xe,0xe1,0x26,0xca,0xd7,0x35,0x31, - 0xf2,0x5,0x5,0x7a,0xbc,0x49,0xdd,0xa4, - 0x46,0x6b,0x58,0xd7,0x92,0x62,0x58,0x6, - 0x7a,0xe6,0x53,0x47,0x69,0xee,0xbd,0x58, - 0x59,0x4f,0xc4,0xf9,0x69,0x68,0xc1,0x17, - 0x93,0x58,0xdb,0xc3,0x56,0x67,0x23,0x2f, - 0x60,0x6,0x25,0x14,0x58,0x39,0x4,0x7c, - 0x5d,0xa5,0x1c,0x34,0x80,0x2e,0x60,0x1c, - 0x10,0xd6,0x76,0x0,0x67,0x56,0x93,0x6, - 0xdb,0xde,0xd6,0x23,0x3f,0xde,0x75,0x94, - 0x1f,0x92,0x5d,0x94,0xf2,0x3d,0xd,0xda, - 0xf4,0x8a,0x89,0x25,0xf0,0x89,0xd6,0x6b, - 0xf6,0x38,0xab,0x94,0x3c,0xe4,0x9a,0x6e, - 0x51,0x82,0x5e,0x6e,0x6a,0x66,0x58,0xd8, - 0xd2,0x40,0x1e,0x57,0x9b,0x11,0x5c,0x6b, - 0x60,0x59,0xd9,0xa0,0xd8,0x11,0xf4,0x4c, - 0xb9,0x43,0x1b,0xf4,0xf9,0xd7,0xba,0xd5, - 0x73,0xee,0x7e,0x50,0x8,0x95,0xa3,0xce, - 0xe0,0x86,0x3d,0x49,0x46,0xa2,0x4d,0xa6, - 0xdf,0x19,0xae,0x58,0xf7,0x6d,0x4d,0x75, - 0x2,0x2b,0x11,0x9b,0xa9,0x23,0x68,0xf9, - 0x60,0x8b,0xf6,0xd6,0xb,0x32,0x17,0x13, - 0x67,0x5b,0xc9,0x5e,0xb4,0x6d,0x6f,0xbf, - 0x58,0x2c,0x60,0x7b,0x37,0x51,0x72,0x68, - 0x83,0xfd,0xb3,0xe6,0x16,0x29,0x9b,0x80, - 0x13,0xa5,0x11,0xf1,0xf5,0x7c,0x30,0xf8, - 0x87,0x28,0xd,0x17,0x43,0xa1,0xf4,0x17, - 0x8b,0x66,0xb6,0xcc,0x22,0x8c,0xd9,0xd9, - 0x56,0xd4,0x7c,0xd9,0xef,0x33,0x15,0x4b, - 0xb3,0x4d,0xd5,0xe3,0xe,0xa3,0xb5,0xb8, - 0x7f,0x38,0xad,0x55,0x42,0xc3,0x6a,0x55, - 0x28,0xb9,0xc3,0x6a,0x2d,0xee,0x1f,0x56, - 0x6b,0x15,0x77,0x58,0x1f,0x3,0x3a,0x3c, - 0x7e,0x40,0x87,0x80,0xca,0xfd,0x41,0xf1, - 0x14,0x28,0x1e,0x44,0x16,0xa,0xb4,0x20, - 0xe3,0x2a,0xfc,0x37,0x8c,0x46,0xc0,0x11, - 0xa8,0x37,0x82,0x0,0xb5,0xc7,0x5e,0x1a, - 0x4f,0x3f,0xb,0x38,0x0,0xdf,0xdf,0x11, - 0x1,0x2d,0xda,0xdb,0x9c,0x11,0xf0,0xd1, - 0x72,0xcd,0x18,0x9c,0x6f,0x59,0x66,0xc6, - 0x8e,0x50,0xe6,0x90,0x54,0x68,0x9e,0x6f, - 0x2e,0xd,0x8b,0xe7,0x2c,0x37,0x8c,0xcc, - 0x79,0xd7,0xda,0x8c,0x32,0x31,0x3f,0x65, - 0x4e,0xd9,0xf2,0xde,0xbd,0xb4,0xea,0x76, - 0x5c,0xf6,0x5e,0xea,0xf1,0x1,0xda,0xdd, - 0x83,0x94,0x9b,0x1e,0xfa,0xf6,0xf9,0xda, - 0x41,0xd,0x69,0xac,0x3c,0x97,0xbc,0x4e, - 0x79,0x58,0xd7,0x70,0x35,0x44,0x4,0xe5, - 0x6b,0x8c,0x51,0xd3,0xaa,0x92,0xdb,0x96, - 0xaa,0xdf,0xc1,0x63,0x69,0x51,0x7f,0xb9, - 0xaa,0x6e,0xe,0x8c,0x4e,0xb3,0xde,0x1d, - 0x99,0xe6,0xf9,0xa6,0x52,0x7a,0x80,0xfc, - 0x85,0x34,0xfb,0x31,0xf6,0xb9,0x30,0xf9, - 0x10,0x6d,0xc7,0x28,0x47,0x41,0x71,0x9c, - 0x9c,0x3c,0x49,0xf,0xfa,0xc3,0xbe,0x9f, - 0x5b,0x20,0x33,0xed,0x95,0x8f,0x22,0x1e, - 0x70,0xd9,0x54,0x2e,0x9e,0x1f,0xdd,0x36, - 0x5b,0xdc,0x36,0x1f,0xdb,0x7f,0xed,0xbe, - 0x6e,0xa0,0x1,0x87,0x31,0xe3,0x2a,0x3d, - 0xe0,0xcc,0xac,0x1d,0xe6,0x47,0xf7,0x61, - 0xf6,0x23,0x34,0x15,0xf,0x94,0x9d,0x3, - 0xcd,0x87,0x83,0xac,0xf2,0xb2,0xc2,0x7a, - 0xd3,0xe6,0xee,0xce,0x88,0xc3,0x8c,0xaa, - 0x92,0x1,0x59,0x33,0xba,0xcf,0x25,0xe4, - 0x1e,0x34,0x54,0xaf,0x9f,0xd7,0x8b,0x45, - 0x5c,0x5e,0x54,0x17,0xf5,0x64,0xa2,0x83, - 0xf6,0x48,0xa4,0x89,0x63,0xc7,0xde,0xf2, - 0x6,0x78,0x9a,0x6,0x85,0x66,0xa,0xd3, - 0x58,0x91,0x91,0xc5,0xe3,0x87,0x81,0x2, - 0x2d,0x23,0xb3,0x5d,0xe9,0x92,0x91,0x16, - 0x9f,0xd7,0x71,0x58,0x71,0x69,0x1f,0xe9, - 0x6e,0xc8,0xbb,0x2e,0xa1,0xd1,0xb6,0x95, - 0x88,0x7a,0x6d,0x33,0x9,0x36,0xf9,0xc8, - 0xce,0x87,0x46,0x20,0x5b,0xe4,0xf7,0xc3, - 0x61,0x97,0xc8,0x4d,0xed,0x56,0xb9,0x66, - 0x39,0xa8,0x76,0xaf,0xdb,0xe,0x87,0xfd, - 0x16,0x5b,0x5c,0xff,0x42,0xbe,0x59,0xca, - 0x6a,0x29,0xe0,0x2b,0x27,0xc,0x99,0x5a, - 0x3c,0xa9,0x52,0xab,0x40,0xc2,0x9f,0xc5, - 0x8,0xb9,0x21,0x85,0x6e,0x40,0x7c,0xb2, - 0x75,0x3a,0x6a,0x39,0x59,0x77,0x77,0xf1, - 0xcc,0x77,0xdd,0xd1,0xae,0xd3,0xb3,0xb, - 0x5a,0x2f,0x33,0x6e,0x11,0x33,0x6f,0xf7, - 0x76,0xaa,0xee,0xeb,0xed,0x34,0x3b,0xec, - 0xed,0xc4,0x6f,0xb7,0x21,0x6,0x79,0x14, - 0xe1,0xcd,0xc,0xcf,0xa7,0xb9,0xee,0xf9, - 0x84,0x51,0xc0,0xe7,0xd2,0xfb,0x69,0x6e, - 0x78,0x3f,0xcd,0x15,0xa4,0x12,0xd4,0x4f, - 0xf,0x2d,0x24,0x5b,0xa,0xac,0x88,0xb4, - 0xc6,0x14,0xfe,0x6e,0xb9,0x5c,0xb7,0xb, - 0xee,0xb3,0xba,0x33,0xdf,0xab,0xb5,0x5a, - 0x4a,0x9c,0xb6,0xd,0x9e,0x2b,0x1b,0x84, - 0xf2,0xf9,0x53,0x21,0x19,0xf0,0xe8,0xf3, - 0xb0,0xeb,0x95,0x8b,0x6,0x3e,0x7a,0x5f, - 0xb5,0x7a,0x5f,0xd1,0x5a,0x8b,0x75,0x20, - 0x9a,0xcf,0x5d,0x1e,0x2b,0xd9,0xb3,0x3c, - 0xda,0x75,0xf9,0x1,0x3d,0xae,0xee,0xe3, - 0x62,0xa5,0x91,0xf2,0x8c,0x1c,0xf1,0xf9, - 0x57,0x5,0x1c,0x44,0xd0,0xc,0x8b,0xfb, - 0x88,0x3c,0xa6,0x5b,0x87,0xa4,0x79,0x93, - 0x91,0xcf,0xe3,0xc6,0xf6,0xe6,0x70,0xb2, - 0x5d,0xa7,0xe,0xab,0x48,0x72,0x7f,0xcf, - 0x15,0x66,0x71,0x41,0xc1,0x71,0x7d,0xe, - 0x21,0x5,0xca,0x2a,0x84,0x43,0x48,0xed, - 0xfa,0x73,0x14,0x40,0x39,0xd7,0x42,0xb2, - 0x8f,0x72,0x54,0x7a,0x5a,0x4d,0xf9,0x59, - 0xcc,0x94,0x9f,0xc5,0xec,0x69,0x6d,0xf0, - 0xb3,0x33,0x41,0x9e,0xcc,0x33,0xde,0xf0, - 0x4c,0x53,0x43,0x8c,0xea,0x20,0x32,0x57, - 0xa5,0xf1,0x8e,0xe,0x40,0x91,0x51,0x8, - 0x6d,0x80,0xc4,0xa7,0xa2,0x20,0xe6,0x6, - 0x60,0xce,0x43,0x2d,0xcd,0xb5,0xda,0xc, - 0x88,0x70,0x92,0x7b,0x96,0xc6,0x87,0xee, - 0xfa,0x7e,0x60,0x1d,0xf3,0x76,0x47,0x83, - 0xf3,0x22,0x41,0x2d,0x3f,0xcf,0x80,0x25, - 0x63,0x78,0x74,0x43,0xaf,0x67,0xfb,0x9c, - 0x2e,0x54,0x11,0x3f,0xd7,0x9a,0x16,0xef, - 0xe5,0xf4,0x40,0xb1,0xc3,0xfd,0x62,0x98, - 0x8a,0x89,0xa9,0x5c,0xcf,0x87,0xa,0xa3, - 0xce,0x5b,0x9e,0xf,0x75,0x37,0xcf,0x87, - 0x18,0xc3,0x3b,0xa7,0xf5,0x61,0xff,0x7, - 0x5c,0xe,0xdb,0x1,0xa2,0x18,0xd7,0x5d, - 0x1c,0x20,0x44,0x1f,0x7,0xdc,0x20,0x12, - 0x3e,0xc,0x3d,0x84,0x5b,0x99,0xf1,0x67, - 0x98,0x82,0x62,0xa9,0x72,0x5c,0x58,0x37, - 0x9d,0xdd,0xf0,0xf0,0x40,0x1,0x66,0x6, - 0x9e,0xa4,0xe5,0x38,0x48,0x4f,0xba,0x6d, - 0x76,0x2e,0xca,0xc4,0x6a,0xe2,0x48,0xdf, - 0xd3,0x8f,0x83,0x61,0xf9,0xd0,0xeb,0x47, - 0xdd,0x7d,0x3c,0x8a,0xdf,0x80,0x5f,0x45, - 0xa5,0x7b,0x33,0x4,0x26,0xf6,0x9b,0x19, - 0xa7,0x77,0x24,0xbf,0xb6,0xff,0x47,0xf5, - 0x6b,0xf9,0x7f,0xa4,0xe1,0x3d,0xd1,0xed, - 0x2,0x9c,0xcb,0xcf,0x97,0xfa,0xd7,0xf2, - 0x16,0x61,0xdb,0x56,0xb5,0x3b,0x87,0x74, - 0x72,0x8,0x9,0xbe,0xab,0x61,0x4b,0x26, - 0xdb,0x1d,0xe7,0xf8,0xa3,0xb6,0xcc,0xb3, - 0xab,0x70,0x1c,0xe7,0xac,0x5b,0xdf,0xfb, - 0x1a,0x2b,0x7b,0xf4,0xd2,0xe3,0xa0,0xe2, - 0x73,0xf4,0x33,0x42,0x66,0x4a,0x53,0x4, - 0xbf,0x24,0xb0,0x14,0xc6,0xbf,0x85,0xae, - 0xe9,0xd7,0xe8,0xfb,0x51,0x38,0x18,0x62, - 0xac,0xea,0xb4,0xba,0x12,0x44,0xd1,0xbd, - 0x9d,0x7,0x2e,0x37,0xf3,0xd5,0x7a,0x8b, - 0x37,0x41,0xa0,0x8f,0x87,0xf9,0xb,0x84, - 0x1a,0xf3,0x9b,0x4c,0x96,0xe1,0xa,0x8f, - 0xed,0x2f,0x50,0x1c,0xd6,0xb9,0x1f,0xb2, - 0xa8,0x2c,0x6c,0x7f,0x1,0xdb,0x51,0xa0, - 0x60,0x8e,0x2,0xa5,0x74,0x14,0x40,0x9f, - 0x5b,0xd4,0xd3,0x6a,0xce,0x1,0x85,0x6d, - 0x9e,0x5d,0x59,0x5a,0x26,0xef,0x72,0xa0, - 0x75,0xeb,0xf1,0xf1,0x91,0x3f,0x74,0xa5, - 0x88,0x2d,0x40,0xd5,0x1e,0xdd,0x46,0x3b, - 0xd0,0xf4,0x43,0x6c,0xb4,0x43,0x4d,0x75, - 0x0,0x8e,0xf,0x6b,0xa3,0x5d,0x76,0xb1, - 0xd1,0x2e,0x75,0x1b,0xed,0xc2,0xb6,0xd1, - 0x2e,0x99,0x8d,0x76,0xc9,0x6c,0xb4,0x4b, - 0x34,0xa2,0x2d,0xd1,0x88,0xb6,0x30,0x8c, - 0x68,0xad,0xdd,0x6f,0xd9,0x7e,0xdb,0xa6, - 0xda,0xbf,0xf5,0x6,0x8a,0xf8,0x40,0x66, - 0xd5,0xc1,0xe,0x1e,0x66,0x56,0x1d,0x6e, - 0xae,0x23,0x18,0x7c,0x48,0xb3,0xea,0xfb, - 0x21,0x1,0xe,0x17,0x1,0xb3,0xea,0x92, - 0x99,0x55,0x97,0x27,0x8f,0x8,0x11,0x8e, - 0x19,0x74,0xe1,0xb1,0x77,0xfb,0x5b,0x36, - 0x7a,0x96,0x6,0x96,0xf7,0x32,0x85,0x4e, - 0x1f,0x64,0xce,0xdc,0xd9,0x64,0xb1,0x8b, - 0x39,0xb3,0xcf,0xae,0xf0,0x43,0xd8,0x16, - 0x87,0x6d,0x7b,0x3f,0x9a,0xf6,0xfe,0x5a, - 0xa6,0xbd,0x1f,0x6d,0x7b,0xc3,0x7,0x45, - 0xb3,0x82,0x75,0x4c,0x5b,0x7d,0x82,0xa1, - 0xdc,0xa6,0x97,0x3e,0x5a,0xb4,0xfe,0xd7, - 0xb7,0x68,0xd5,0x4c,0x59,0x4d,0xf3,0xd5, - 0x7b,0xec,0xf5,0x6f,0xd8,0x7e,0xf4,0x77, - 0x7f,0x8b,0x6,0xa4,0x86,0xd1,0x28,0xb7, - 0x12,0xd5,0xb7,0xeb,0x81,0xe6,0xa0,0x1, - 0x7b,0xb6,0x2b,0xf8,0x6a,0xae,0xc9,0xa4, - 0x2d,0xf0,0x44,0x50,0x9b,0x75,0x99,0x30, - 0x29,0xb8,0xf5,0xd8,0x94,0x89,0x1e,0x6c, - 0xb3,0x32,0xfd,0x4d,0xac,0xb6,0x7,0xba, - 0xcd,0x7,0xad,0x19,0x54,0xc0,0xa6,0xd9, - 0xb5,0x54,0x86,0x6e,0x15,0x67,0xe9,0x5f, - 0xee,0x63,0x23,0x67,0x9b,0x49,0x3c,0xe2, - 0x94,0xe,0x5b,0xcf,0x5,0xa6,0xa6,0xde, - 0xe5,0x9,0xcd,0xdd,0x32,0x68,0xc2,0x87, - 0x7a,0x3e,0x7f,0xd8,0x13,0x3d,0x8f,0x3c, - 0x7f,0xf1,0xee,0xd,0x57,0x45,0xbd,0x6d, - 0xb6,0x40,0x52,0xac,0x8d,0xf7,0x12,0x1f, - 0xed,0xf9,0x18,0x7b,0xe8,0xda,0xe3,0x2b, - 0xd6,0xd0,0xb,0x7b,0xe8,0x85,0x3d,0x74, - 0xe3,0x4d,0x96,0xe0,0xe0,0x7,0x8e,0xa6, - 0x8f,0xca,0xb4,0xc6,0x98,0xb5,0x5f,0x6a, - 0xe7,0xb2,0x44,0xd2,0xb0,0x6b,0xc6,0x1c, - 0xd8,0xad,0x66,0xa6,0x23,0x30,0x7a,0x41, - 0x1b,0x9e,0xe5,0xc8,0xac,0xa9,0xc7,0xec, - 0xf1,0x6,0xf1,0x3c,0x19,0x86,0x8e,0x82, - 0x24,0xb5,0xa0,0x3a,0x59,0x96,0x8f,0xe1, - 0xf7,0xeb,0xba,0xbe,0xbe,0x24,0x31,0x1c, - 0x3e,0xdf,0xa9,0xc7,0x4c,0x63,0x51,0xba, - 0xc2,0x2e,0x3a,0x68,0x36,0x1c,0xcc,0xe5, - 0xef,0x21,0x12,0x17,0x69,0x12,0x1c,0x32, - 0x41,0x8f,0xdb,0xc2,0xad,0x24,0xb5,0x9, - 0x1f,0x90,0x5,0xe2,0x14,0xe8,0xc5,0x7b, - 0xe4,0xd,0x5b,0x9f,0x50,0x2f,0x5a,0x9e, - 0x50,0x17,0x31,0x66,0x47,0x11,0x93,0x4b, - 0xaa,0x87,0x19,0xcb,0x71,0x3c,0x65,0x56, - 0x26,0x5,0x27,0x7b,0x29,0xba,0x2b,0x2e, - 0x5c,0x9,0xc,0x80,0x95,0x87,0xec,0xf2, - 0x14,0x6,0xe2,0x37,0x55,0x9d,0x92,0x18, - 0xa9,0x94,0x6f,0x2c,0x1e,0x1f,0x9b,0x31, - 0x0,0x55,0x4e,0x82,0xac,0xa5,0xf5,0x8c, - 0xa3,0x5d,0xda,0x29,0x90,0x90,0x89,0x94, - 0xf8,0xca,0x9c,0x7c,0xdc,0xa4,0x32,0xdf, - 0xea,0xdd,0x24,0x22,0x4a,0x5c,0xd1,0x62, - 0x2a,0x33,0x55,0x6b,0x47,0x71,0xf6,0x8a, - 0xa0,0x59,0xca,0xcc,0x30,0x4b,0x29,0x3c, - 0x36,0x29,0x53,0x37,0x2,0x2f,0x33,0x42, - 0x17,0xa6,0x28,0x85,0x19,0x75,0x37,0x2d, - 0x8c,0x77,0xea,0x35,0xfb,0x13,0xdf,0xa3, - 0xf6,0x45,0xe0,0x51,0x7b,0x33,0x83,0xa9, - 0xb0,0xe8,0x0,0x38,0xa9,0x1,0xa5,0x80, - 0x51,0x92,0xb1,0x28,0xb8,0xbe,0xfc,0xe4, - 0x5f,0x72,0xa6,0x85,0x45,0x1d,0xf4,0x90, - 0x5,0x74,0x4b,0xb,0xd5,0x19,0x3a,0x4, - 0x68,0x34,0x2,0x12,0xef,0xbe,0x83,0x0, - 0xd7,0x39,0x46,0x3d,0x21,0x50,0xa3,0x0, - 0x84,0x81,0x87,0x46,0x7d,0x46,0xd3,0x2, - 0x69,0xd3,0xe1,0x90,0x2f,0x23,0x11,0xd0, - 0xe,0xcc,0x47,0xd6,0x45,0xde,0x1b,0x66, - 0xec,0xae,0x27,0x69,0x8,0x1,0x31,0x5a, - 0x90,0x63,0xf4,0x30,0x6f,0x54,0x15,0x52, - 0x57,0x53,0x89,0x51,0x62,0xa7,0xcd,0xce, - 0x95,0x5b,0x1e,0x1f,0xbe,0x7f,0x87,0x2d, - 0xbd,0x18,0xac,0xed,0xb2,0xfe,0x61,0x9a, - 0xf0,0x57,0x35,0xe1,0xa7,0xc4,0xe9,0x6c, - 0x49,0x9d,0xa2,0x29,0x7f,0xb7,0xdc,0xc9, - 0x18,0x91,0x1,0xa2,0x15,0xa1,0x33,0x5f, - 0xde,0x88,0xd6,0xe9,0x67,0x4b,0xeb,0x94, - 0xef,0x6b,0x9d,0x32,0xa8,0x75,0x3b,0xfe, - 0x27,0x83,0x98,0x8,0xa,0xd8,0xcf,0xf9, - 0x61,0x4e,0x12,0xe,0xf7,0x4a,0xd9,0xe3, - 0xc0,0x40,0x30,0x65,0xa8,0x43,0x95,0x9d, - 0x39,0x31,0xa7,0xca,0x4b,0x9,0x84,0x9a, - 0x46,0xcb,0xdd,0x55,0x51,0xaf,0xe1,0x47, - 0xb3,0xdc,0xd6,0x33,0xfa,0x25,0x9e,0xc1, - 0x4d,0xc5,0xab,0xb1,0xc0,0x82,0xe3,0xa8, - 0xa8,0x34,0xd0,0xdf,0xa6,0x1,0xc,0xde, - 0xaf,0x8b,0xc5,0xea,0xad,0xe1,0x14,0x60, - 0xe5,0x8d,0x44,0x4b,0xea,0x65,0x5d,0x1b, - 0x6f,0xda,0x91,0x56,0xb,0xa6,0x4a,0x50, - 0x83,0xb6,0x3,0x18,0xcb,0xf7,0x73,0xab, - 0x4,0x2e,0xcb,0xd3,0x73,0x19,0x11,0xa6, - 0x92,0x42,0x19,0x36,0xd9,0x62,0xef,0xd9, - 0x27,0xcc,0x62,0x84,0x27,0x3f,0xba,0x2c, - 0xee,0x99,0xe0,0x85,0xbe,0x62,0x89,0x52, - 0x22,0xc4,0x9a,0x6a,0xf7,0x16,0x10,0x76, - 0x17,0xca,0x5c,0x45,0x7f,0x44,0x88,0xbf, - 0xf,0x5b,0x38,0x36,0xd0,0xdf,0xac,0xd6, - 0x57,0xdf,0xe1,0xdb,0xc7,0xdf,0x63,0xe6, - 0xfd,0x4d,0xca,0x8d,0x17,0x83,0x4,0xee, - 0xb3,0xfa,0xf8,0x89,0x27,0xc7,0xce,0x8c, - 0x11,0x89,0x3a,0x4d,0x8a,0x56,0xac,0x46, - 0x83,0x38,0xf4,0x81,0x52,0xf,0x9d,0xfc, - 0x8a,0x73,0x63,0x58,0x72,0x73,0x35,0x35, - 0xa4,0x87,0x15,0xd6,0x90,0x66,0x37,0x4b, - 0x70,0xcf,0x64,0x8d,0xea,0x82,0x8a,0xbb, - 0xdd,0x8f,0x72,0x1f,0x16,0x2c,0x77,0x30, - 0x91,0xab,0x4b,0x85,0x97,0x29,0x14,0x90, - 0x93,0x9a,0x75,0xab,0x6c,0xad,0xaf,0xb8, - 0xb0,0x2,0x9b,0xf7,0x3,0xcb,0xb5,0xb7, - 0xc8,0x7f,0x46,0xa,0x76,0x46,0x14,0x81, - 0x9c,0x71,0x99,0x83,0x87,0x98,0xaa,0x24, - 0x31,0x95,0xdb,0xc4,0x54,0xa5,0x88,0x29, - 0x91,0x87,0x21,0x5d,0xaa,0x20,0xf9,0x53, - 0xe9,0x74,0x4f,0x7e,0x88,0x58,0xca,0xf, - 0x10,0x4b,0x79,0x88,0x58,0xaa,0x74,0x62, - 0x29,0xcd,0xb5,0x8b,0x12,0xa7,0xba,0xac, - 0xdf,0xf6,0xe6,0xfd,0x7f,0x13,0x69,0xb1, - 0xbe,0x1b,0x29,0xd0,0x3a,0x4a,0xfd,0xad, - 0x43,0xe0,0xa0,0xab,0x85,0xb6,0x8f,0xcd, - 0x8d,0xf,0x3d,0x1c,0xa3,0x53,0x11,0x8e, - 0x55,0xb7,0x53,0x26,0xfc,0x72,0x6c,0x0, - 0x33,0x9,0x54,0x69,0xc3,0x92,0x65,0xe, - 0x50,0x1a,0x71,0x1a,0x73,0x58,0xac,0x7d, - 0x12,0xb6,0x37,0xd0,0x8c,0xc,0x5a,0x58, - 0x59,0x61,0x52,0x70,0xf8,0x3d,0x72,0x61, - 0xff,0x8d,0x55,0x47,0xea,0x6c,0xf3,0x9d, - 0xb3,0x80,0x17,0x99,0xdf,0x4a,0x64,0x23, - 0x5f,0x27,0xac,0xe8,0x38,0xf7,0x5d,0x32, - 0x8,0xc5,0x30,0x3b,0x12,0x41,0xb1,0xb1, - 0x96,0x6,0x2a,0xc1,0xd8,0x3d,0x18,0x2a, - 0x99,0x87,0x34,0x94,0x3,0x38,0xca,0xaa, - 0x91,0xb0,0x3d,0x35,0xe0,0x40,0x96,0x30, - 0x19,0x55,0x7d,0xd6,0x66,0x74,0x1d,0xdf, - 0xd6,0x6b,0xb1,0x7e,0xd0,0x80,0xc2,0x63, - 0x99,0xdc,0xfe,0x76,0x34,0xde,0x66,0xd2, - 0x2a,0xd1,0x8b,0xe9,0xc,0x16,0x38,0x68, - 0x1,0x1c,0xca,0x76,0xad,0x6b,0x4d,0x3c, - 0x68,0x62,0x26,0x63,0x99,0x7c,0xdd,0x78, - 0x72,0xdc,0x1e,0xac,0x6b,0x45,0xe3,0xc3, - 0xbb,0x3b,0xd1,0x4a,0xef,0x31,0x22,0xe3, - 0x38,0x37,0xce,0x8,0x37,0xd,0xd0,0x58, - 0xee,0x38,0xa2,0x3f,0xd1,0x30,0xa2,0x2, - 0xd2,0xb7,0xd4,0xf3,0xa0,0xfd,0x8c,0xe0, - 0x6d,0x26,0x6c,0x4f,0xb,0x65,0x8d,0x5f, - 0x9e,0x44,0x17,0xd1,0x49,0x75,0x12,0x4d, - 0xa2,0xb4,0x61,0x34,0x89,0x1d,0x1d,0x9d, - 0x1c,0x70,0xb1,0x42,0x7f,0xb3,0x43,0xb1, - 0x5c,0x8c,0xe6,0xea,0x1c,0x58,0x81,0x34, - 0x99,0xb,0xf5,0x38,0xa1,0xd1,0x32,0x19, - 0x55,0xcc,0xd1,0x97,0x77,0x52,0x19,0x55, - 0x65,0xc5,0xb4,0x91,0xd4,0xc,0x6c,0xff, - 0xcc,0xef,0xfb,0xda,0x60,0x26,0x73,0xa6, - 0x9,0xcd,0x8d,0x1d,0x7b,0xe4,0x6f,0xbd, - 0x2d,0xe4,0x41,0xef,0xd9,0x8b,0xa8,0x6, - 0xda,0x30,0x9a,0x84,0x85,0x8d,0x87,0xe4, - 0x63,0x9f,0x87,0x5e,0xb2,0xb4,0x28,0x24, - 0xcd,0x82,0xfb,0x43,0x13,0x4b,0xba,0xc9, - 0xbe,0x7a,0xe4,0x73,0xc7,0xbd,0x5b,0x36, - 0x59,0x28,0x43,0x9a,0x7d,0xcb,0x55,0x31, - 0x9e,0x37,0x67,0x69,0xc2,0xa4,0x6a,0x1, - 0x94,0x2e,0x5c,0x5e,0x3,0xfd,0x5b,0xde, - 0xed,0xf2,0x41,0xdc,0xed,0xd5,0x42,0xb0, - 0x40,0x8,0x55,0x52,0x80,0xc7,0x49,0x49, - 0x21,0xc,0x13,0x8d,0x3b,0xc2,0x30,0xb3, - 0x5d,0xbc,0xf6,0x42,0x83,0x87,0xbc,0xbb, - 0xbb,0x88,0x30,0x13,0xbe,0x6c,0x54,0x9c, - 0x88,0xa7,0xa4,0xb5,0x31,0xc8,0xfa,0xe8, - 0x7b,0xf8,0xf2,0xc5,0xf7,0xb1,0xde,0x37, - 0x64,0x5a,0x52,0xb5,0x56,0xfa,0xd2,0x1c, - 0xd9,0xe1,0x4d,0xb1,0xf0,0x82,0x40,0xde, - 0x80,0x49,0xf2,0xf7,0xf4,0x17,0xd4,0x9b, - 0xb2,0x76,0x9d,0x99,0x96,0xb1,0x7c,0xe9, - 0x14,0xa9,0x15,0x6f,0xb5,0x43,0xbc,0x7, - 0x41,0x8c,0x54,0x98,0x4,0x89,0xdc,0x5a, - 0x1b,0x1f,0x99,0x9b,0x72,0x93,0xbd,0x4c, - 0xc2,0xd5,0x85,0x6a,0x61,0x72,0x28,0xf8, - 0x8d,0xb8,0x2a,0xd4,0xad,0x2d,0x5b,0x19, - 0x4c,0xbc,0x37,0x95,0x30,0xff,0xb5,0x0, - 0x4d,0xac,0x89,0x9c,0x6b,0x40,0xd0,0xd1, - 0xc1,0x56,0x51,0x5b,0x80,0x53,0x11,0x86, - 0x36,0x6c,0x6d,0x28,0x5f,0x74,0x32,0x40, - 0xd0,0xe2,0xfe,0x50,0xb,0x7,0xe3,0xb6, - 0x5a,0xa9,0x84,0x7e,0xad,0xa7,0x75,0x59, - 0xb2,0x87,0x12,0x54,0xca,0xd3,0xc1,0x98, - 0x6b,0x6a,0xd4,0x35,0xae,0x2d,0x92,0xb0, - 0x77,0xb5,0x88,0xa,0xdf,0x99,0x33,0xce, - 0xfb,0x84,0xf4,0x3f,0x1e,0x40,0x52,0xde, - 0x47,0xce,0xa1,0x33,0x1b,0xc0,0xe7,0x60, - 0x5c,0x25,0x80,0x4f,0x8a,0xe,0xac,0x72, - 0x47,0x9,0x7d,0xe2,0x97,0xd0,0x1f,0x16, - 0xcf,0x77,0x91,0x9f,0x73,0x5c,0xd1,0x72, - 0x55,0xa3,0xbc,0x0,0x45,0xd9,0x7c,0x5f, - 0xa2,0xa7,0xf5,0xd5,0x33,0x4c,0x7b,0x7a, - 0x6,0x3f,0x22,0x2c,0xe1,0x4a,0x6,0xc4, - 0x45,0x1e,0x45,0xa,0x14,0x72,0xcb,0x9, - 0x81,0x79,0xb0,0x16,0x12,0x5b,0x1,0xd8, - 0x78,0xc4,0x9,0xd3,0x2c,0x7a,0xa,0x7c, - 0xdf,0x33,0xec,0x95,0xee,0x70,0xea,0x76, - 0x8,0x48,0x70,0x8a,0xbf,0x31,0xb,0x43, - 0x5a,0x9e,0x40,0xb1,0x45,0xf3,0x8c,0xa7, - 0xe2,0x2f,0x34,0xc6,0xcf,0xec,0x6,0xc7, - 0xd1,0xd3,0xd5,0xe2,0x19,0x51,0x4,0x4f, - 0xcf,0xf0,0xd7,0x30,0x7a,0xba,0x5b,0xf4, - 0xe8,0x5c,0x64,0x9f,0x30,0x4f,0x35,0xc, - 0x6d,0x3e,0x1c,0x8c,0xf8,0x47,0x41,0xb1, - 0x42,0xe0,0x9b,0xbb,0xa9,0xf1,0x5c,0xf1, - 0x25,0xb3,0x3f,0x11,0xad,0xee,0xa0,0xd5, - 0x3d,0x5f,0x2a,0x21,0x85,0x51,0xb,0x33, - 0xce,0xc7,0xd1,0x76,0xbd,0xab,0xa1,0xe3, - 0x69,0xe,0x77,0x3e,0xfc,0xb5,0x59,0x39, - 0x28,0x3,0xe7,0x1b,0x60,0xaf,0xac,0xe3, - 0xb3,0xe3,0xb3,0x59,0x1a,0x1d,0xe7,0x57, - 0xd7,0xa3,0x28,0x51,0xa9,0x4f,0x29,0x75, - 0xb1,0x35,0x12,0x9f,0x51,0xe2,0xc,0x13, - 0x87,0xb9,0x97,0x92,0xd7,0xb9,0x81,0x23, - 0xd8,0x51,0x1,0x40,0x1c,0x57,0xa5,0x41, - 0xfe,0x47,0xb9,0xb0,0x24,0x61,0xf,0x3d, - 0xfd,0xc0,0x8,0x17,0x39,0xfd,0xc,0xb9, - 0xe,0x74,0xfe,0x5c,0x8f,0x7,0x9d,0x7b, - 0x5,0x3c,0xba,0xf3,0xdf,0xaf,0x43,0x26, - 0xfb,0x75,0xc2,0xc,0x7b,0x84,0x89,0xb4, - 0xe0,0x73,0x47,0x92,0x9d,0x29,0xf3,0xcd, - 0x36,0xce,0x81,0x42,0x88,0x64,0x98,0x39, - 0xae,0xf5,0x42,0x12,0x82,0x61,0x2a,0x79, - 0x51,0x95,0xc9,0xd3,0x1,0xb9,0xc5,0xd8, - 0x25,0x10,0x73,0xa6,0x6,0x88,0x94,0xe4, - 0xa0,0xc3,0x1c,0x30,0x11,0xc3,0xac,0xb7, - 0x37,0x80,0x9e,0x86,0xe2,0x8a,0x14,0x5e, - 0x27,0x1e,0x41,0x9,0x5,0xdb,0x26,0xc7, - 0x7c,0x29,0x31,0x56,0x2d,0x8,0x4,0xd5, - 0x20,0x19,0x68,0x70,0xa7,0x38,0x18,0x3, - 0x35,0xfb,0x27,0x60,0xd0,0x69,0x4f,0xe4, - 0x3d,0xc7,0x3e,0xdf,0x7c,0x3e,0xd6,0x3f, - 0xb1,0xfd,0xd8,0xee,0x2e,0x51,0xd1,0x9f, - 0xf8,0x5c,0xc4,0x6b,0x59,0xbc,0x12,0xff, - 0x1b,0x47,0x50,0x3c,0x72,0x46,0x9b,0x18, - 0x57,0x74,0x69,0x9f,0x12,0x4e,0xd4,0xa8, - 0x33,0xe3,0xd3,0x86,0x7b,0x54,0xe1,0xd4, - 0x3,0x87,0x33,0xd6,0x9b,0x69,0x3a,0xba, - 0xcc,0xaf,0x84,0xc1,0x6,0xbe,0xb7,0x80, - 0x9f,0x41,0x65,0x7b,0xa7,0xe6,0x19,0xe0, - 0xda,0x3d,0xb4,0xe9,0xcd,0xa5,0x3e,0x5b, - 0xdf,0x2a,0x71,0x65,0x7f,0x66,0xd1,0xc0, - 0x1a,0x5d,0x2f,0x3c,0xd3,0x74,0x15,0xb1, - 0xd6,0x82,0x4e,0x1a,0xe7,0x99,0xd4,0xbe, - 0x73,0x9c,0x64,0x80,0x45,0x21,0xc8,0x9b, - 0x93,0xcf,0x25,0xa1,0xa1,0xc7,0xbe,0x51, - 0x95,0xcf,0xfe,0x29,0x7d,0x82,0xab,0x2f, - 0x4e,0x88,0xe7,0x95,0x5b,0xd,0x45,0x3b, - 0x32,0xf9,0xf1,0xd1,0x51,0x3e,0x14,0xc2, - 0x75,0x5f,0xfe,0xf9,0xa7,0x90,0x2f,0x64, - 0xee,0xbe,0x2,0x34,0x94,0xe9,0x62,0x5, - 0x8b,0x2,0x65,0x93,0x61,0x14,0x9d,0xe4, - 0xb4,0xb6,0xe,0xa9,0xa5,0x9b,0x23,0x54, - 0x35,0x92,0xc0,0xf5,0xb2,0x6c,0xea,0xcd, - 0x37,0xbb,0xc5,0xb4,0x59,0xc0,0xd5,0x3d, - 0x36,0xcf,0xba,0x46,0x6c,0xd,0x8b,0x43, - 0xf1,0x7d,0x46,0x6a,0xc7,0x2f,0x49,0xe0, - 0x12,0x31,0xe8,0x8e,0xdc,0xd5,0x95,0xbc, - 0x8d,0x76,0xee,0xcc,0x34,0x41,0x3d,0x2, - 0xc3,0x43,0x98,0x66,0x64,0xea,0x48,0x4, - 0x15,0xe6,0x7b,0xbb,0x49,0xda,0x48,0xfa, - 0x4c,0x1d,0x2d,0x4e,0x6d,0xe4,0x6d,0xd5, - 0xf1,0x8c,0xb1,0x20,0x3,0x8,0x8e,0x13, - 0xc,0x6e,0xab,0x8f,0x94,0x27,0xc7,0x15, - 0xf1,0x50,0x64,0x8d,0xa5,0xe3,0xbc,0x2, - 0x43,0x6d,0xca,0x75,0x55,0x72,0xc5,0x66, - 0xf3,0x23,0x17,0x4f,0xc6,0xa4,0xd6,0x30, - 0xda,0xec,0xef,0x96,0x9b,0x79,0x33,0xdd, - 0x8a,0xd8,0x12,0x6,0x28,0xcb,0x3c,0xa5, - 0x5b,0xb3,0x3a,0x95,0x45,0x8a,0x84,0xb3, - 0xfe,0x48,0x45,0xb5,0x80,0x62,0x62,0x76, - 0xff,0xd0,0x55,0x65,0xa4,0x47,0xca,0x49, - 0x8f,0x89,0x35,0xf0,0xec,0x22,0x3a,0x87, - 0x4c,0x95,0x2e,0xb6,0x1f,0xa8,0xc6,0xa3, - 0xf3,0xc9,0xaf,0xbb,0x2c,0x52,0xff,0x76, - 0xa4,0x4f,0xb,0xb,0xff,0xb4,0xda,0xad, - 0xcb,0x1a,0x18,0x68,0xc,0x37,0xf5,0x9, - 0x83,0xe4,0x4f,0x7a,0xec,0xfa,0xe9,0x71, - 0x91,0xf2,0x6,0x4e,0x52,0xdd,0xc3,0xd2, - 0x3d,0x11,0x5b,0xa5,0xb7,0x5d,0xf5,0x8a, - 0xba,0x7,0x8,0xb5,0x1f,0x49,0x98,0x55, - 0xed,0x85,0x80,0xbc,0xfb,0x11,0x9,0x6b, - 0xff,0xb4,0x51,0x93,0xa9,0x4c,0x9,0x38, - 0xb0,0x7c,0xea,0x2f,0x21,0x1f,0x7,0x2, - 0x44,0xe8,0x90,0x86,0xfe,0x2a,0xf2,0x8d, - 0x68,0x23,0x29,0xbb,0xdd,0xd0,0xcf,0x61, - 0xb0,0xd2,0x7e,0xd8,0x65,0xc8,0xf8,0x9c, - 0xb3,0xaf,0xf9,0x60,0xe9,0xa1,0xa7,0xb0, - 0x13,0x4c,0xc4,0x6c,0x7f,0xa4,0xa2,0xcb, - 0x69,0xf9,0xff,0xa6,0x5e,0x9d,0xd3,0xf7, - 0xa9,0x7d,0x5e,0x29,0x6d,0xc8,0xd0,0xdb, - 0xd6,0xde,0x19,0xdb,0xa1,0xd6,0xf6,0x4c, - 0xaa,0xa3,0x6d,0x98,0x7f,0xa7,0xdc,0x29, - 0x33,0xe4,0x2c,0x28,0x13,0x4f,0x96,0x1b, - 0x86,0x64,0x75,0x75,0xdd,0x2c,0xea,0x97, - 0xf5,0xd5,0x35,0x19,0x62,0x86,0x2a,0x72, - 0x2,0x98,0x17,0xbb,0x84,0x41,0xc0,0x59, - 0x12,0x4,0x89,0x59,0x9e,0x53,0xc9,0x71, - 0x28,0xeb,0x21,0x63,0xa0,0x8a,0xf7,0x18, - 0x3,0x5c,0x5f,0x5b,0xb2,0x9,0x9,0xe6, - 0x3d,0x64,0x14,0xac,0x66,0x60,0x18,0xfb, - 0xe,0x11,0xe1,0xac,0xc8,0x63,0x82,0x1b, - 0x7f,0x4f,0xe1,0xe5,0x7b,0xc4,0xec,0x92, - 0x2d,0x77,0x9,0xde,0x65,0x9,0xc2,0xf0, - 0xd9,0x75,0xd4,0x26,0x49,0x4a,0x1b,0xbe, - 0xbf,0xd4,0x2c,0x83,0x35,0xe1,0x9b,0xc8, - 0x88,0xbd,0xd,0x24,0x89,0x37,0x2e,0x9b, - 0xf6,0x4e,0x33,0x93,0xd2,0x39,0x4f,0xd9, - 0x50,0xb1,0x48,0xa7,0x33,0x6d,0xf1,0x22, - 0xe1,0x69,0x9a,0x60,0xec,0xd2,0x8f,0xa9, - 0x56,0x78,0x23,0xa,0x1b,0xca,0x52,0x6a, - 0xd3,0x45,0xc6,0x2e,0xce,0x4e,0x52,0x63, - 0xd5,0x80,0x65,0xac,0x7e,0x58,0x2e,0x6e, - 0xb8,0x9a,0x41,0x4b,0x5d,0x41,0x6a,0x12, - 0x96,0xa1,0xe8,0x34,0xbf,0x47,0xb4,0x52, - 0xb3,0xb9,0x48,0xd2,0x79,0x43,0xe6,0xc3, - 0x5a,0x9d,0x47,0x56,0xb4,0xaf,0x96,0xd4, - 0x9f,0xc,0x25,0x61,0xc6,0x30,0xf3,0xc0, - 0x12,0x77,0x93,0x8a,0x15,0x28,0xa7,0xf6, - 0x42,0x6a,0x10,0x95,0x5a,0x70,0x73,0x58, - 0x2e,0xcb,0x7b,0x76,0x64,0x95,0x16,0x43, - 0x89,0xfa,0x58,0x6d,0xe4,0xce,0x91,0x14, - 0x16,0x17,0x26,0x65,0xab,0xb3,0x5a,0xa3, - 0x3c,0xb,0x72,0x82,0x5,0xb3,0x1b,0x19, - 0x7b,0x3a,0x1e,0x3a,0x69,0x2d,0xad,0x4c, - 0xc8,0x24,0x4c,0xcd,0xc4,0xc3,0xb2,0xa6, - 0xae,0xa8,0xc4,0xb4,0x12,0x47,0x89,0xcb, - 0xee,0x9a,0x81,0xee,0x13,0x8b,0x65,0x7a, - 0xb,0x5d,0xad,0xde,0xf6,0x5f,0xfd,0xcf, - 0x5d,0xbd,0xbe,0x39,0x3e,0x36,0x3e,0xfb, - 0xd3,0xa5,0x9b,0x62,0xb3,0xb6,0x1e,0x5e, - 0xe9,0xd9,0x13,0xe,0xd3,0x9e,0x3c,0xa1, - 0x39,0xd4,0x8,0xf,0x8e,0x1,0xe9,0x26, - 0x9e,0xf7,0xaf,0x17,0x3b,0xc0,0x95,0x92, - 0xdd,0x35,0x3,0xd7,0xb4,0x52,0x94,0xbc, - 0xc6,0xa5,0x2c,0x14,0x63,0xa3,0x79,0xda, - 0xa1,0xac,0x44,0x8f,0x2c,0x39,0x33,0x26, - 0xad,0x6d,0x7c,0x22,0xb9,0xef,0xdc,0xac, - 0xf1,0xe6,0xf3,0xcc,0xc7,0xa4,0xf7,0xe7, - 0xf9,0xe6,0x87,0xb7,0xcb,0x3f,0x72,0x4a, - 0x2f,0x8e,0xf2,0xab,0x2a,0xd2,0xc3,0x58, - 0x8e,0x8c,0x5a,0xe8,0xf0,0xc7,0x7f,0x9f, - 0x16,0x8b,0xdd,0xda,0x32,0x19,0x54,0x52, - 0x84,0xc2,0x10,0x50,0x14,0x86,0x40,0x1, - 0xdf,0xa8,0xf6,0xe7,0x1a,0x92,0x3,0xe6, - 0x7,0xe9,0x3d,0xba,0xfa,0x70,0x3c,0x2a, - 0x87,0x5f,0x63,0x20,0x5a,0x54,0x5f,0xb1, - 0x27,0xf4,0xc2,0x7b,0x2a,0x2d,0x3c,0xf, - 0x48,0x14,0xf8,0xab,0x88,0x53,0xb8,0x8b, - 0xa9,0xe9,0x1f,0x1,0xaf,0x1a,0x3b,0x29, - 0xb1,0xa5,0x3c,0x19,0x2c,0x88,0xde,0xbf, - 0xe7,0x28,0x1f,0xab,0xbe,0x69,0x6a,0x34, - 0x49,0xe,0x60,0x6,0xf,0x99,0x2e,0xa5, - 0x5e,0x80,0xe5,0xf4,0x36,0x88,0xbe,0xdb, - 0xc4,0x2a,0x40,0x91,0xc,0xd4,0xcc,0xa3, - 0x27,0x6,0x88,0x37,0x8c,0xa5,0x8,0xbd, - 0x78,0x8,0x61,0x8d,0xde,0xa8,0x27,0x49, - 0x52,0x66,0xa5,0x30,0x5c,0xf1,0x64,0x43, - 0x4f,0x55,0x4b,0x36,0x63,0x66,0x98,0xc0, - 0x9b,0x87,0x8e,0xce,0xe,0x75,0xd9,0x67, - 0x84,0xa9,0x4b,0x7b,0xcb,0xac,0x61,0x7e, - 0x11,0xcc,0x9b,0x68,0xfe,0x5,0x66,0x36, - 0x6,0x34,0x42,0xb,0x1d,0x3e,0x0,0x60, - 0x8f,0xb6,0x2b,0x44,0xbe,0x2c,0x7,0xf1, - 0xfc,0xe2,0x26,0x9e,0xa6,0xa1,0xaa,0x1e, - 0x22,0xaf,0x16,0xe4,0x18,0xdb,0xb8,0x99, - 0xd0,0x85,0x32,0x51,0xcf,0xd4,0x75,0x1, - 0xf0,0x54,0x8d,0x6f,0x9b,0x61,0x91,0x62, - 0x64,0xa8,0xe1,0x14,0xad,0x3d,0xde,0xb2, - 0xbd,0x1d,0xe6,0x7b,0xb8,0xa2,0x67,0x4c, - 0x8d,0x3e,0x25,0x1d,0xe6,0x34,0x9b,0xed, - 0x99,0x86,0x1f,0xf6,0xb6,0x69,0xe9,0x8b, - 0x6,0xf3,0x2a,0xc3,0x5a,0x23,0x4f,0xbf, - 0xec,0x4d,0xeb,0x46,0x2a,0x4d,0xcd,0xb, - 0xc8,0x53,0x56,0x1b,0xe2,0xab,0x7d,0x92, - 0xc,0xa9,0x2a,0xd,0xd6,0x53,0x83,0xa8, - 0xe4,0xf1,0x5c,0xb6,0xee,0xc9,0x35,0xdb, - 0x1b,0x52,0x59,0x6c,0x73,0xaf,0x81,0x5a, - 0x63,0x40,0xd6,0x1c,0x28,0x5b,0x9c,0xd4, - 0x6b,0xed,0xa6,0x1a,0x75,0xa4,0x9c,0x50, - 0xe5,0xe6,0xe1,0x65,0x4b,0xf,0xd3,0x5b, - 0xb9,0xec,0x6d,0x69,0xc9,0x5b,0xfd,0xa2, - 0x52,0xae,0x19,0xa0,0x27,0xc6,0xc4,0xdd, - 0xfa,0x3a,0x39,0xa2,0x1b,0xda,0xb9,0xd7, - 0xb3,0xd7,0xfa,0x8d,0xfa,0x5a,0xa8,0xec, - 0xf4,0x12,0xa5,0xd4,0x77,0x6a,0xe4,0x85, - 0x12,0xd5,0x40,0x2e,0x49,0xbc,0x45,0x78, - 0x3a,0x14,0xc7,0x8f,0xb5,0xdf,0x7d,0x8f, - 0x25,0x18,0x75,0xe2,0xf1,0x8d,0xb5,0x44, - 0xb7,0x5a,0xd6,0x72,0xb5,0x6d,0xa6,0x37, - 0xc,0xd7,0xac,0x37,0xb1,0x8c,0xf3,0x98, - 0xf8,0x71,0x9b,0xa5,0x5e,0xbb,0x9f,0x2e, - 0xd0,0xa6,0x36,0xcf,0xef,0x23,0xe6,0x46, - 0x41,0x7,0xda,0x48,0xb2,0xca,0x51,0x7a, - 0x74,0x1e,0x12,0x69,0xb3,0x41,0x45,0xe8, - 0x7e,0xe2,0xda,0xb1,0x3d,0x4c,0xd5,0xe8, - 0xd0,0xc9,0xef,0x35,0xf2,0xc1,0xc1,0x91, - 0x9f,0x7b,0x6,0x1e,0xd0,0x4b,0x11,0xed, - 0xcb,0x41,0x96,0x7e,0xbb,0x3a,0x1d,0x3b, - 0xd9,0x55,0xe8,0x50,0x89,0x5f,0x3b,0x4e, - 0xa4,0x2b,0xaf,0x77,0x1a,0xb7,0x93,0xdd, - 0x66,0xcd,0x7b,0xd8,0xb7,0x1d,0xbe,0x3, - 0xec,0xd0,0x4,0xef,0x6b,0xf0,0x15,0x31, - 0xd0,0xe9,0xa8,0x32,0x4a,0xa4,0xc5,0xfb, - 0x91,0x41,0x87,0x8b,0x38,0x93,0xc0,0x33, - 0x35,0xab,0xdd,0x86,0x95,0xbe,0x84,0x23, - 0xb8,0xc5,0x8,0xa2,0xdd,0x9a,0x66,0xa2, - 0xf6,0x51,0x5b,0x43,0x1d,0x9a,0x19,0x9, - 0x22,0xc3,0x36,0x26,0x63,0x6f,0xc5,0xe9, - 0xaf,0x40,0xa0,0xe1,0x16,0xb3,0x3,0x93, - 0x2f,0x2a,0xd0,0x7b,0xa7,0x3c,0x4a,0x9b, - 0x4e,0x48,0x55,0x15,0x91,0x51,0xb4,0x9a, - 0x6,0xf6,0xee,0xbf,0x5a,0x35,0x40,0x27, - 0xf6,0x7b,0x51,0x82,0x26,0x6d,0xfc,0x7c, - 0xb0,0x5a,0x6c,0xcb,0xbd,0x15,0xdb,0x35, - 0x8e,0xcd,0x5f,0xea,0xdf,0xaa,0xd2,0xf1, - 0x11,0xd5,0x83,0x30,0x4b,0xe3,0xc2,0x82, - 0x6f,0xe8,0x53,0x7d,0xd0,0xaa,0xc3,0x2d, - 0x8c,0x8e,0xda,0x6d,0x4a,0xbd,0x8f,0x6a, - 0xbc,0x8f,0x6a,0xbc,0x47,0x52,0xe3,0x31, - 0x19,0xf5,0x5f,0x55,0x6f,0x57,0xb4,0xea, - 0xed,0xca,0xf,0xa8,0xb7,0xab,0x2,0x7a, - 0xbb,0x2a,0xa0,0xb7,0x2b,0x49,0x6f,0x57, - 0xb5,0xeb,0xed,0x2a,0xc9,0xcd,0xfe,0x86, - 0x34,0x69,0x83,0x90,0x2a,0xed,0x6f,0x59, - 0xb9,0xa5,0x61,0x86,0xa0,0x72,0xab,0xb8, - 0x87,0x72,0xab,0x70,0x95,0x5b,0xc5,0x41, - 0xe5,0x56,0xd1,0x55,0xb9,0x55,0x78,0x94, - 0x5b,0x45,0x50,0xb9,0x55,0xb8,0xca,0xad, - 0xa2,0x5d,0xb9,0x55,0xfc,0xf6,0x95,0x5b, - 0x16,0x2a,0x77,0x77,0xca,0x9d,0x72,0x50, - 0xb9,0x55,0x3c,0x54,0xb9,0x55,0xdc,0x53, - 0xb9,0x55,0x84,0x95,0x5b,0xc5,0x43,0x95, - 0x5b,0xc5,0x3d,0x95,0x5b,0x45,0x8b,0x72, - 0xab,0x78,0xb0,0x72,0xab,0xf8,0xa8,0xdc, - 0xfa,0xa8,0xdc,0xfa,0xeb,0x2a,0xb7,0x3e, - 0x2a,0xb0,0xee,0xa1,0xc0,0xca,0x6c,0x56, - 0x5,0x68,0x63,0x9d,0xf,0xb2,0xdd,0x4, - 0x72,0xe1,0xea,0x1c,0x17,0x1e,0xa6,0xc6, - 0x64,0x86,0x7c,0x8a,0x26,0x43,0xcf,0x4, - 0xec,0x4b,0x0,0xf,0xbc,0x87,0xd2,0x89, - 0x18,0xa6,0xb0,0xda,0x29,0x7b,0x80,0xde, - 0xa9,0xf4,0xeb,0x9d,0xa0,0xa7,0x7b,0x6b, - 0x9e,0xa0,0x8e,0xa6,0x7b,0xc2,0x86,0xcb, - 0xb4,0x53,0x69,0x53,0xfb,0x84,0xbc,0xef, - 0x21,0xfd,0x13,0x94,0x89,0xb1,0xf9,0x5b, - 0xe6,0x87,0x3c,0x2c,0xb9,0x43,0x32,0x72, - 0xf6,0x77,0x77,0xe2,0x2b,0x15,0xbb,0x33, - 0x34,0x1c,0x46,0x6c,0x78,0xdf,0x27,0xae, - 0xba,0x5,0x7,0xf1,0xa1,0x15,0x2e,0x38, - 0x89,0xce,0x2a,0x97,0xf2,0x7d,0x54,0x2e, - 0x5c,0xdb,0x82,0xb1,0xac,0x81,0xa4,0x98, - 0x86,0x48,0x8a,0x69,0x17,0x95,0xcb,0x74, - 0x92,0x24,0x2d,0x3a,0x15,0xc8,0x86,0x9e, - 0xea,0x96,0x6c,0x29,0x40,0x72,0x95,0x24, - 0x53,0x4d,0x49,0xc2,0xdf,0xb2,0x68,0x29, - 0xe3,0x59,0x11,0xca,0xe5,0x7a,0x94,0x59, - 0xab,0x1e,0x65,0x96,0x86,0xaa,0x7a,0xe8, - 0x89,0xa9,0xa9,0x47,0x99,0xb,0xdd,0x6, - 0xb3,0x3e,0x9a,0xb5,0xd9,0x1b,0x4d,0x75, - 0x3d,0x4a,0xc9,0x94,0xa,0x33,0x34,0xf1, - 0x4a,0xe8,0x1,0xc,0x14,0x3e,0xcd,0xc8, - 0xd0,0x6a,0x96,0xcd,0x49,0x85,0x80,0x8a, - 0x93,0xf4,0x55,0x4b,0xf,0xb7,0x4c,0xd1, - 0x80,0xb5,0x46,0x9e,0xde,0x98,0xf6,0xe4, - 0x95,0x34,0x4,0xf3,0xe4,0x6a,0x43,0x79, - 0xbd,0x4f,0x86,0x54,0x16,0x9b,0xf3,0xcd, - 0x9b,0xa9,0x4b,0x9a,0x40,0x73,0x52,0x5d, - 0xa2,0x35,0x47,0x65,0xb1,0xcd,0xbd,0x6, - 0x26,0xaf,0xc,0xa8,0x68,0x12,0x9a,0xea, - 0x42,0xd7,0x96,0x2c,0x30,0xf2,0xcb,0xf1, - 0x71,0x84,0xf1,0x3b,0x16,0x18,0x8d,0x49, - 0xa0,0xe5,0x85,0x44,0xcb,0x5a,0x7b,0xb, - 0xa3,0xbd,0x45,0xd2,0xf9,0x2a,0x47,0x7, - 0x17,0xf,0x73,0x55,0x79,0xb8,0xb0,0xda, - 0xe5,0xb7,0xaa,0x54,0x1f,0x57,0x48,0x7f, - 0xb2,0xd0,0x2f,0x8a,0x85,0x4f,0x7f,0x52, - 0x59,0xfa,0x93,0x8a,0x6b,0x4c,0xfe,0xda, - 0xa,0x13,0x8e,0x96,0x58,0xd7,0xbb,0x6b, - 0xf4,0xd,0x97,0xb8,0x4a,0x2c,0x66,0x25, - 0x55,0x0,0x26,0x26,0x73,0x82,0x97,0xf9, - 0xeb,0x7,0x24,0xd1,0x1,0x11,0x20,0xf, - 0x79,0x35,0x2a,0xfa,0xab,0xe9,0x94,0x28, - 0x98,0x72,0x51,0xe7,0x32,0x5a,0x83,0x86, - 0xe2,0x7a,0xcd,0xb2,0x97,0x27,0x5,0x12, - 0x47,0x2c,0x37,0xbe,0x65,0x3c,0x59,0x7e, - 0x51,0xc1,0x5a,0xa3,0xdb,0x3f,0xfe,0xda, - 0x63,0x60,0x27,0x21,0x57,0xd4,0x1d,0x3, - 0x8b,0x90,0xba,0xbf,0xf4,0x68,0xe7,0x1f, - 0x53,0x7b,0x74,0x50,0xa,0xba,0x5b,0x2e, - 0x56,0xe5,0x6b,0x7b,0x81,0x3f,0x8c,0x42, - 0xe8,0xe0,0x60,0x7c,0x43,0xf9,0xa8,0xe1, - 0xe9,0xac,0xe1,0xd1,0x28,0xb8,0xc0,0x2, - 0x5b,0xef,0x2d,0x9a,0xe4,0x48,0x37,0xaf, - 0x25,0x8a,0x64,0x79,0xc8,0x75,0xc9,0x27, - 0xe0,0x34,0x1a,0x27,0x61,0x64,0x3e,0xf2, - 0xb9,0x59,0x4b,0xa9,0xa,0x4b,0xe6,0xc8, - 0xf1,0x76,0xaf,0xbf,0x4f,0x7b,0x9f,0x97, - 0x8b,0xe1,0x94,0x17,0x42,0x20,0x49,0xce, - 0xe0,0x18,0xc9,0x8d,0x77,0x36,0x2e,0x42, - 0x2,0xcd,0x21,0xbf,0x23,0x35,0xd6,0xf1, - 0x12,0x1f,0xe6,0x94,0x92,0x32,0x9e,0xc6, - 0xbd,0xcf,0x21,0x95,0x5,0x70,0x2c,0x9d, - 0xa8,0x8d,0x9b,0x7c,0xd9,0x10,0x12,0x2b, - 0x31,0x42,0x12,0x5c,0x37,0x25,0x5,0x70, - 0x74,0x5a,0x66,0xf7,0x35,0x66,0x9e,0x48, - 0xed,0xb6,0xd1,0x9,0x2b,0x10,0x57,0x14, - 0xcb,0x90,0x1a,0x53,0x5,0x8d,0xc5,0xba, - 0xe0,0x8d,0x4c,0xa8,0xab,0x60,0xe8,0xa3, - 0xd4,0x8e,0xcb,0xf0,0x5f,0x5c,0x7c,0x60, - 0x48,0x55,0x51,0xc3,0x92,0x8b,0x33,0xa6, - 0xaf,0x32,0x7f,0xe5,0xed,0x9f,0xe1,0x46, - 0x84,0x92,0xe5,0xeb,0x62,0xf5,0xce,0x16, - 0x18,0xb3,0xba,0x2c,0xda,0xaa,0x23,0x8b, - 0x17,0x95,0xea,0x8d,0xee,0x1f,0xa6,0xc0, - 0x56,0x3e,0xb1,0x88,0x81,0x77,0x54,0x4c, - 0x4f,0x77,0x8,0x4,0x21,0xb7,0x5a,0x13, - 0x17,0x76,0x41,0xd8,0xbc,0x89,0xb5,0x24, - 0xcf,0x79,0xef,0xe6,0x9,0x36,0x95,0x63, - 0xde,0x16,0x5a,0xba,0x18,0x69,0xa2,0x7f, - 0xa7,0x23,0x6d,0x53,0xd,0x60,0xa4,0x68, - 0x5f,0xc6,0x84,0xbb,0xc,0x5f,0x67,0xf0, - 0xcb,0xf4,0xd0,0xc0,0xb8,0x59,0x85,0x5f, - 0x56,0xf0,0x2,0xf1,0x90,0x18,0x25,0x8f, - 0x49,0x69,0x8c,0x27,0xb5,0x25,0x8,0x3a, - 0xb4,0x10,0x4f,0xe6,0xdf,0x60,0x43,0xd9, - 0xd2,0x49,0xec,0xa3,0xd,0xfb,0x7e,0x52, - 0x1f,0xad,0xa2,0xe7,0xbc,0x1b,0x57,0xaa, - 0xc,0x20,0x6c,0x4a,0x71,0x36,0x88,0xbc, - 0x95,0xfe,0x6c,0x90,0x6,0x80,0x2d,0xe9, - 0x0,0x8b,0xf,0x0,0xa8,0x3e,0xbd,0xe5, - 0x7,0x77,0x14,0xa4,0x8f,0x7e,0xd,0x19, - 0xd5,0x63,0xc9,0x8d,0x34,0xd0,0xea,0x24, - 0x27,0xe2,0x5f,0x5d,0xa4,0x63,0x14,0xab, - 0xc9,0x91,0x8e,0x95,0x81,0x17,0x3a,0x2a, - 0xc1,0x8c,0xb1,0xfd,0x29,0x42,0x9b,0x13, - 0x17,0x4e,0xd8,0x10,0x7b,0x5f,0x64,0x38, - 0x82,0xbb,0xbb,0xe,0x85,0x9,0x8f,0x51, - 0xd8,0xae,0x8a,0x3f,0xee,0x63,0x5d,0x22, - 0x4e,0x15,0x24,0x6e,0x19,0xd9,0x1d,0x7a, - 0xed,0xe3,0x40,0x24,0x29,0x3e,0x4f,0xf6, - 0x12,0xa7,0x88,0x1e,0x70,0xa4,0x39,0xc0, - 0x63,0xc,0xc1,0xa1,0x3f,0xb8,0xe0,0x4, - 0xef,0x71,0x64,0x57,0x73,0x9f,0xab,0x94, - 0x6a,0x4,0x58,0x43,0xb4,0x4d,0x86,0x3f, - 0x27,0x18,0x49,0x97,0xf1,0xb9,0x48,0xbe, - 0xfb,0xe2,0x9b,0x78,0xd2,0x6c,0xa3,0xe2, - 0x32,0x31,0x49,0x2a,0xb9,0xa2,0xe5,0xe4, - 0x42,0xa0,0xa,0x71,0x7d,0x28,0x2c,0x32, - 0x8e,0xc4,0x5e,0x44,0xc3,0x88,0xaf,0x74, - 0x84,0x9a,0x4b,0x65,0xac,0x40,0xfc,0x1d, - 0x47,0xa1,0xfa,0xaa,0xe6,0x8e,0xf3,0xfd, - 0x87,0x31,0x31,0x17,0x62,0x43,0x33,0x5f, - 0x10,0x70,0x1f,0x8d,0xc5,0x3b,0x1b,0x8b, - 0x87,0xac,0xb3,0x3b,0xd8,0x65,0xbb,0xc1, - 0x5f,0xee,0x65,0x1d,0xfe,0x48,0x3d,0x7, - 0xcd,0xc1,0x83,0x12,0x70,0x5b,0x74,0xae, - 0x8b,0xc1,0x3d,0x92,0xeb,0xae,0x52,0x4e, - 0xdb,0x5e,0xfc,0x6f,0xc7,0xee,0xa6,0xcd, - 0xa8,0x46,0x4a,0x19,0xa,0x1b,0x4d,0xf1, - 0x38,0xba,0x6e,0x92,0xd,0xcc,0x5,0x3d, - 0x69,0xa0,0x1b,0xde,0xc4,0x1e,0xae,0xa0, - 0x20,0xc6,0x42,0x99,0xdf,0x74,0xb4,0xbf, - 0xd1,0x90,0x93,0x21,0xc,0x50,0xd1,0xdf, - 0x8f,0xce,0x53,0x6e,0x77,0x3f,0x18,0x55, - 0xa,0x41,0x57,0x4c,0xe2,0xeb,0x43,0x9e, - 0x28,0x2c,0x41,0x6,0x45,0xbc,0x2e,0x65, - 0x32,0x4a,0x9e,0xb1,0x63,0x85,0x9,0xbd, - 0xb3,0x81,0x57,0x55,0x9d,0xa4,0x14,0xc9, - 0x4,0x12,0x49,0xa1,0x82,0x50,0x46,0x40, - 0x8c,0x3f,0x47,0xba,0x35,0x8e,0x61,0xd4, - 0x75,0xcf,0xb8,0x11,0xf,0x8e,0x18,0x21, - 0x62,0x45,0x14,0x80,0xb9,0xf9,0x9c,0x7c, - 0xc6,0x4b,0x7e,0xdb,0x24,0x62,0x5c,0xf, - 0x5b,0x28,0x69,0xc5,0xfc,0x76,0x4a,0xf, - 0x79,0x93,0x80,0x61,0x56,0xbf,0x54,0xc9, - 0xc,0x46,0xcc,0xa8,0x76,0xf5,0x78,0x81, - 0x4,0x5d,0x9e,0xa1,0xfd,0xb6,0x81,0x35, - 0x4f,0xc,0x43,0x3f,0x8a,0x0,0xae,0xf5, - 0x93,0x8c,0x3e,0xb8,0xf1,0xf3,0xe3,0xbd, - 0x84,0xd0,0xb2,0x60,0x83,0xd6,0x5,0x2b, - 0xee,0xb1,0x60,0x85,0xbd,0x60,0xc5,0xc4, - 0xa0,0x8c,0x47,0xbf,0x19,0x9b,0xeb,0x47, - 0x34,0x34,0xf6,0xb,0x9f,0x8a,0x7c,0x53, - 0xff,0xe3,0xe7,0xef,0x15,0xd7,0x10,0xee, - 0x86,0x6f,0x9a,0x45,0xfd,0x23,0x49,0x35, - 0x4,0x19,0x1f,0xb2,0x60,0xce,0x3d,0x4, - 0xff,0x62,0x95,0x57,0xce,0xb3,0x9d,0xf8, - 0x4e,0xf4,0x6e,0xb9,0x45,0xdb,0xdf,0x72, - 0xb7,0x46,0xa1,0xdd,0x25,0xbd,0x77,0x4e, - 0xf4,0x5e,0x52,0x88,0xa7,0x5c,0x59,0xa9, - 0xc9,0x5,0xbe,0xe,0x71,0x43,0x96,0x6c, - 0xf9,0x1a,0xc6,0xc,0x37,0xca,0x6,0xe6, - 0xa9,0xfc,0x85,0x28,0x8c,0xb1,0x21,0x7d, - 0x2e,0x84,0xb0,0x9e,0x9f,0x7f,0x6e,0x2, - 0xd6,0xc0,0xfd,0x50,0x2,0x1a,0xc4,0x90, - 0x5b,0x65,0xa0,0xd9,0x94,0x77,0xdf,0xdf, - 0x5c,0xd3,0xb3,0xe6,0x7c,0x14,0xe9,0x0, - 0xc3,0xe9,0xf2,0x8f,0x93,0xec,0x3c,0xd5, - 0xe6,0xb0,0x5d,0x6d,0xf3,0xc5,0x89,0x6f, - 0x2e,0x18,0xdd,0x94,0x42,0x8a,0xf3,0x95, - 0x57,0x4f,0xc7,0x8b,0x27,0x67,0xdb,0x43, - 0x6d,0x4b,0x69,0xd3,0x63,0x87,0x8e,0xfc, - 0x60,0x76,0x23,0x3e,0x11,0x80,0x1c,0x11, - 0xa9,0x44,0xe3,0x68,0xde,0x54,0x55,0xbd, - 0x8c,0xe,0x5b,0x1f,0x70,0xa1,0xed,0x91, - 0x8f,0x55,0x16,0xf,0xa2,0xda,0xbc,0x32, - 0x21,0x6e,0x4e,0x7,0x2b,0xd0,0xe5,0xc6, - 0x82,0x2a,0x41,0xd8,0x9,0x56,0x3d,0x0, - 0x9c,0x1e,0x3b,0x29,0xdc,0x84,0x30,0x12, - 0x6c,0x6,0xc2,0xae,0x13,0x2,0xd2,0x9e, - 0xcc,0xb4,0xa1,0xd7,0xa,0x73,0x87,0xd4, - 0xb7,0x53,0xa4,0x50,0xe2,0xf8,0xf8,0x3c, - 0xcb,0x5a,0x72,0x45,0x9c,0xaf,0xe3,0x63, - 0x15,0x33,0x2e,0xb7,0x0,0x9a,0x5,0xd9, - 0x97,0xa9,0xb2,0x2,0x8b,0x5f,0xaf,0x95, - 0xf7,0x55,0x33,0xa6,0x67,0x91,0x7f,0x62, - 0x18,0x18,0xe3,0x84,0x6f,0x90,0x2c,0xd9, - 0xcd,0xd8,0xa5,0xfb,0xc3,0x61,0x8c,0xc8, - 0x84,0xf5,0x13,0x8c,0x11,0xfd,0x16,0x32, - 0x18,0x1,0xfa,0x7a,0xe2,0xb3,0x73,0x77, - 0x5d,0x7f,0xbb,0x2b,0x8d,0x16,0xe,0xda, - 0xe9,0x37,0x83,0xa5,0xcb,0x57,0x4e,0x62, - 0xbb,0x5,0xd2,0x3,0xaa,0xe8,0x98,0x6, - 0x2,0xd1,0xde,0x9d,0xcd,0x19,0xde,0xc9, - 0x9c,0x45,0xc2,0x87,0xb8,0x1c,0x4c,0x94, - 0x41,0xe3,0x9b,0xfa,0xbb,0xe5,0x56,0x75, - 0x7,0xd8,0x8f,0x3d,0xda,0x85,0x68,0xcc, - 0x57,0x47,0xf3,0x13,0x65,0xb2,0x4,0xea, - 0x50,0x69,0xbe,0x2b,0xa,0x40,0xae,0xce, - 0x14,0x5,0xc0,0xf4,0xdc,0x17,0x31,0x8f, - 0xa4,0x9e,0x57,0x5f,0x6c,0xbe,0xca,0xb7, - 0xf9,0x9f,0x7e,0xfc,0x5e,0xdb,0x5a,0x54, - 0xb9,0xef,0xf7,0x12,0x99,0xd7,0x76,0xa3, - 0x35,0xf0,0x47,0x8,0x80,0x99,0xe,0x64, - 0xb9,0x64,0xdb,0x4c,0xe4,0x2d,0xa3,0x86, - 0xfe,0x11,0x9d,0x56,0xea,0xb7,0x4e,0xdc, - 0xd0,0x54,0x18,0x93,0xd4,0xe1,0x1,0xd, - 0x26,0x14,0x6e,0x58,0x39,0xbf,0xd4,0x6f, - 0xdf,0x47,0xd6,0x7e,0x10,0xcd,0xf1,0x3e, - 0x1e,0x2c,0xb4,0x13,0x7,0x94,0x4b,0xf, - 0x35,0x19,0x1e,0x6f,0xf9,0xe1,0x76,0x5f, - 0x32,0xee,0x29,0x5f,0x4f,0xdf,0x33,0x2f, - 0xf4,0x8,0x1f,0xef,0xc9,0x1b,0x20,0x40, - 0x2f,0xa0,0x65,0x1b,0x43,0xd4,0xa2,0x87, - 0x46,0x26,0x63,0xa0,0xb3,0x83,0xec,0x66, - 0xbe,0x42,0xb5,0x79,0x7c,0xf6,0x67,0x7c, - 0x98,0x77,0x18,0x5f,0xfc,0x79,0x94,0x4e, - 0x4e,0x92,0xb,0xf8,0xf7,0x8c,0x1e,0xe5, - 0xcd,0x89,0xbd,0xcb,0x2f,0xce,0x27,0xb0, - 0xf9,0x6a,0x98,0x9e,0x8e,0x9e,0x22,0x81, - 0xb5,0x9c,0x3d,0x7b,0x89,0x8f,0x8b,0x3c, - 0x3d,0xe3,0x5f,0x3d,0xe0,0x8,0x4e,0xa2, - 0xb4,0x27,0x72,0x7f,0x42,0x8e,0x44,0xcf, - 0xd5,0x58,0x8,0x8d,0xf7,0x11,0xaf,0x0, - 0x6b,0x29,0x48,0x42,0x6c,0x63,0x40,0xa5, - 0x9,0x2a,0x16,0xe5,0x2b,0xc1,0x67,0xe7, - 0xfd,0xcf,0xf0,0xbf,0xe4,0x24,0xea,0x15, - 0x37,0x5b,0xd4,0x8d,0x44,0xcd,0x55,0xce, - 0x62,0x5,0xe6,0x2a,0xb8,0xf6,0xef,0x13, - 0x4e,0x29,0x3a,0x43,0xc7,0x48,0x9e,0xc5, - 0xfa,0x59,0xc4,0x25,0x32,0xa1,0xb7,0x20, - 0x9a,0xab,0x59,0x84,0x72,0x48,0x16,0xd2, - 0x16,0xf8,0xd4,0x7f,0x6f,0xaa,0xed,0x3c, - 0x8b,0xce,0x7,0x83,0x7f,0x88,0x52,0x2d, - 0xfd,0xdb,0xba,0x99,0xcd,0xb7,0x94,0x71, - 0xfd,0x8e,0x72,0xd6,0x65,0x70,0xa7,0x8c, - 0x7,0x8a,0xf9,0xd1,0xed,0x5,0x97,0xb8, - 0xbe,0x7a,0xf6,0xdd,0x92,0xa2,0xdb,0xf7, - 0x70,0xbf,0x7a,0x7f,0xfa,0xf1,0x3b,0x16, - 0x14,0x75,0x7f,0x5f,0xd5,0xbd,0x0,0x73, - 0x1,0x56,0xf2,0x5e,0xd2,0xf9,0xa1,0x47, - 0xd2,0xcc,0x77,0xe8,0x6b,0xe0,0x7a,0xfb, - 0x3d,0x30,0x9a,0xa8,0xe3,0xc2,0xa5,0x2d, - 0xba,0x83,0xce,0xba,0xc7,0x1a,0xe5,0xbb, - 0xa1,0xbb,0x3,0xc2,0xde,0x38,0xba,0x73, - 0x37,0xc3,0xd5,0x9e,0x9b,0x18,0xea,0xd1, - 0xe3,0x8a,0x3e,0xba,0x86,0x5f,0x6d,0x9f, - 0xb9,0x7b,0x4e,0xb3,0x9e,0x1c,0xb7,0x65, - 0x51,0xa8,0x1b,0xd7,0xc5,0x4a,0x3f,0x6e, - 0x34,0xf9,0x5f,0x81,0x23,0xf8,0x6d,0x10, - 0xee,0x21,0xa7,0x52,0xb6,0xa8,0x9c,0x8a, - 0xff,0x13,0x7d,0xf4,0xe0,0x4,0x54,0xb, - 0x9b,0x92,0x67,0x5,0xdf,0x87,0x92,0xff, - 0x6b,0xd2,0xbc,0x9c,0x9d,0xb5,0x28,0xa0, - 0xd2,0x4f,0x1,0xf1,0x43,0x79,0xf9,0x50, - 0x4a,0xa8,0xe4,0x94,0x50,0x79,0x90,0x12, - 0xd2,0x6d,0xc3,0x1c,0xfa,0x66,0x54,0x0, - 0x82,0x2e,0x32,0x15,0x63,0xa0,0x3b,0xc5, - 0x54,0xfc,0x6,0x68,0xa3,0x7b,0xd8,0xc0, - 0x73,0xae,0x12,0xe1,0xd,0x50,0xee,0x17, - 0xcb,0x86,0x3d,0x91,0xfb,0xcd,0x3a,0xbf, - 0xaa,0x63,0x93,0x30,0xe2,0xf4,0xa9,0x10, - 0x8f,0x3c,0xfe,0x5,0x6d,0x43,0x44,0xa9, - 0x41,0x84,0x7d,0x43,0x53,0x71,0xf2,0xc8, - 0xce,0xf4,0x9b,0x9,0xe6,0xb5,0x59,0x41, - 0xf3,0x94,0x13,0x47,0xe2,0xe4,0xe0,0x57, - 0x4,0x84,0xd3,0x9e,0x93,0x1,0xb9,0xb6, - 0x36,0xbf,0xa0,0x5e,0x89,0xe9,0x1c,0xb0, - 0x4a,0x1e,0x25,0xfd,0x39,0x80,0xd9,0x7e, - 0xff,0x60,0x42,0xd1,0x0,0xe2,0x30,0xc1, - 0x68,0x14,0x3b,0x44,0x38,0x1a,0x85,0x13, - 0xdf,0xd3,0x65,0x46,0x89,0x56,0x7a,0xb2, - 0x20,0x91,0x79,0x41,0xc4,0x24,0x7,0xf4, - 0xdd,0xf2,0xf5,0x72,0xf5,0x76,0x29,0x1d, - 0xba,0x4d,0x84,0x21,0xe,0xce,0xe8,0x21, - 0x74,0x67,0xd1,0x4a,0x77,0x96,0x64,0xc0, - 0xe0,0x23,0x1a,0x8b,0x7b,0x13,0x8d,0xd5, - 0x1,0x98,0xac,0x2,0x30,0x59,0x5,0x61, - 0xb2,0x52,0x44,0x63,0xcb,0x6e,0x99,0xcf, - 0x9e,0xee,0x3b,0x8c,0xb4,0xb6,0x1f,0xee, - 0xe6,0xf8,0x1f,0xe6,0xbf,0x13,0x3f,0x78, - 0x4a,0x32,0xa,0xf6,0x85,0x4a,0x90,0x7, - 0x3f,0x66,0x5f,0x5b,0x42,0x12,0x25,0x11, - 0x56,0x3f,0x89,0x21,0xf7,0x87,0x1a,0xc8, - 0x35,0xa,0x22,0x57,0x68,0xb,0x2e,0x86, - 0x19,0x9c,0x98,0xcd,0x97,0xf9,0x9a,0xde, - 0xd8,0xbe,0x56,0xdf,0x99,0xbf,0x18,0xe1, - 0x70,0xdf,0xec,0x8c,0xca,0xf4,0x50,0x58, - 0xf0,0xe,0x25,0xfe,0x7f,0x3b,0x4f,0xcb, - 0xf4,0x76,0xb3,0x2b,0x4b,0xa8,0x32,0x34, - 0xaf,0x15,0x25,0xa3,0xa4,0xde,0x98,0x1, - 0x74,0xde,0x66,0xfd,0x9c,0x27,0xc3,0x3c, - 0x60,0xf7,0xfc,0x3b,0x63,0x64,0x24,0x47, - 0xe1,0xc3,0xd7,0xa9,0x2c,0x73,0xf8,0x69, - 0xed,0xea,0xc,0xd5,0x32,0xef,0xd3,0x69, - 0xde,0x2c,0x76,0xeb,0xda,0x1a,0xb6,0x2f, - 0x38,0x84,0x5a,0xf8,0x94,0x4d,0xe6,0xb1, - 0x87,0xc2,0xb4,0x7d,0x62,0x87,0x86,0xf6, - 0xfd,0xac,0xef,0x6f,0x31,0x16,0x63,0x34, - 0x2b,0xe1,0xb6,0x1a,0x65,0x61,0xa8,0xc3, - 0x60,0xd1,0x3f,0x31,0xdc,0x63,0x6f,0x38, - 0x22,0x60,0xe1,0xf6,0xe6,0xd9,0xf9,0x7c, - 0xb7,0x5d,0x5d,0xb2,0xa5,0x30,0x2d,0x8c, - 0x3c,0x5,0x50,0x7d,0xc2,0x9e,0x3f,0x41, - 0xac,0x48,0xc7,0x25,0x46,0x7a,0xe4,0xc5, - 0x6a,0xb7,0xa9,0xd9,0x27,0x3f,0x35,0x89, - 0x79,0xe1,0x1b,0xcb,0xc8,0x7c,0x30,0x3f, - 0xf2,0x77,0x7,0xf9,0xbb,0x8f,0x9c,0xdc, - 0x6f,0x97,0x93,0x13,0xc6,0xab,0xf7,0x8e, - 0xff,0xa2,0x81,0xc0,0xd1,0x91,0x1,0x4, - 0xdc,0xba,0xa9,0x5,0xc,0xfe,0x96,0xc, - 0x39,0xda,0x2c,0x26,0xfc,0xe6,0x1d,0xc2, - 0x8c,0xe2,0xa1,0xde,0xdb,0x1a,0xfb,0xab, - 0x73,0xc5,0x6d,0x86,0xba,0x1f,0x9d,0xb7, - 0x3b,0x38,0x6f,0xdb,0x96,0xd4,0x1f,0xce, - 0x23,0xf9,0xbf,0xac,0xef,0xb6,0x86,0xdf, - 0xf9,0x29,0xf,0x3c,0x59,0xd6,0x49,0xec, - 0xfe,0x28,0x5e,0x4d,0x1f,0xca,0x41,0xe9, - 0xa3,0xb7,0xd1,0x3d,0x6e,0xb0,0x8f,0xd1, - 0xe0,0x1e,0x2b,0x1a,0x9c,0x7e,0x8f,0xb2, - 0x83,0x32,0x5b,0xaf,0x76,0xd7,0x99,0x7e, - 0x74,0xfe,0xba,0x21,0xe3,0x48,0x55,0xfb, - 0xd3,0xe1,0xb8,0x71,0xfe,0xe7,0x42,0x35, - 0x91,0xee,0xfd,0x64,0xb7,0x54,0xf1,0x52, - 0xfa,0xd2,0x98,0x2d,0xb0,0xc7,0x96,0x19, - 0x7a,0xe5,0x9e,0x1f,0x7a,0xb5,0xc0,0xdb, - 0xa1,0xb2,0x35,0xe1,0xa2,0x4b,0xbb,0xdd, - 0xe9,0xed,0xf1,0x7,0xdf,0xa1,0xf7,0xb8, - 0x3a,0xd9,0x1d,0x15,0x1a,0x7,0xb7,0x34, - 0x37,0x20,0x26,0x68,0xe6,0x20,0x7f,0x72, - 0x37,0xbb,0x43,0x77,0x9a,0x16,0xfe,0x26, - 0xe0,0x2d,0x31,0x6a,0x41,0xf3,0xf9,0xe1, - 0x4b,0x40,0x5f,0x6a,0x29,0x74,0x6c,0x8d, - 0xbf,0x70,0x5b,0xd5,0x8b,0xe6,0xaa,0x41, - 0xa2,0xe,0xad,0x4b,0x69,0x31,0x7e,0x58, - 0x7e,0x9,0x5c,0xf2,0x10,0x50,0x36,0xf, - 0xcc,0x70,0x34,0xd8,0x87,0xac,0x8b,0xbd, - 0xd1,0xd4,0x34,0x47,0x48,0xaf,0x7d,0x35, - 0xf1,0xb8,0x7,0xde,0xe8,0xc,0x5f,0x10, - 0xf5,0xd5,0xf5,0xf6,0x26,0x96,0x17,0xcd, - 0xa3,0x33,0x22,0x7f,0xb,0xf7,0x5,0xad, - 0x91,0x71,0x41,0x74,0x78,0x7b,0x7c,0x24, - 0x5c,0x46,0xfc,0x9e,0x21,0xf9,0xc4,0x3a, - 0x15,0x62,0x8f,0x4d,0x67,0xee,0x96,0x32, - 0xb4,0x69,0xe4,0xf6,0xf7,0x75,0x5e,0xce, - 0x63,0x43,0xa2,0xec,0xd4,0xd0,0x5c,0xc0, - 0x99,0xdf,0x37,0x8f,0xce,0x95,0xef,0x2d, - 0x84,0xae,0xaa,0xa8,0xc7,0x4a,0x7d,0x2f, - 0x8e,0x17,0xc1,0xa7,0x58,0xf3,0x90,0xa5, - 0xbd,0x6a,0xda,0x78,0xc4,0xbd,0xfb,0x65, - 0x9c,0xca,0x38,0xe9,0x14,0x95,0xdc,0xbc, - 0xbc,0xea,0xe4,0xb6,0x36,0x2f,0xaf,0xb1, - 0xb4,0xbb,0x1e,0x56,0xe2,0xd7,0xde,0x83, - 0x46,0x13,0x7a,0x4f,0x5b,0x68,0x7e,0x9c, - 0x6c,0x8f,0x60,0xdb,0xc8,0xb6,0xde,0xa9, - 0x85,0x93,0x19,0x97,0xd6,0x83,0xdd,0x85, - 0x59,0xc3,0x50,0xb,0x28,0xc,0x47,0x73, - 0x7f,0xc1,0xae,0x59,0x18,0x90,0xb8,0x70, - 0x4d,0x5f,0x87,0xb6,0xae,0xe9,0x89,0xdc, - 0x50,0x10,0xd5,0x2d,0xde,0x89,0x44,0x22, - 0x78,0x73,0xd1,0x21,0x29,0x7c,0x2d,0x7e, - 0x8c,0xd9,0xf5,0xeb,0xb1,0x7d,0x6c,0x97, - 0x9e,0x8b,0xd2,0x5d,0x2e,0x79,0xab,0x8a, - 0xdd,0x81,0xda,0xfb,0x28,0x71,0x3,0x78, - 0x4,0x1f,0x16,0x5f,0xe7,0x55,0xb3,0xfa, - 0x57,0xa2,0xec,0xb4,0x7,0xc3,0x8b,0xec, - 0x41,0x5c,0x99,0xc4,0x26,0xe6,0xcb,0xd3, - 0xa6,0xcb,0x8d,0x1b,0x70,0x57,0x1a,0xeb, - 0x8c,0xca,0x67,0xf8,0xcf,0xe9,0xa9,0xf1, - 0x56,0xdf,0xeb,0xfa,0xe6,0x24,0x3a,0xc5, - 0x67,0xf4,0xea,0x3,0x4a,0x65,0x9a,0xc, - 0x90,0x16,0x75,0x1f,0xa5,0x25,0x99,0x21, - 0x8e,0x39,0x89,0x2e,0xd4,0x12,0x4d,0xa2, - 0xb4,0xe,0x5,0xd8,0x2a,0x27,0x90,0xd7, - 0x54,0x59,0xe5,0xd7,0x61,0xf0,0x9b,0xb9, - 0x48,0xa5,0x7c,0x54,0x2d,0xa1,0x40,0x40, - 0x23,0xf6,0xb0,0x42,0x68,0x53,0xe9,0xd4, - 0xa0,0x3,0x20,0x3d,0xdb,0xc,0x93,0x80, - 0xbe,0xa6,0x3a,0x41,0x6a,0xd,0xc7,0x80, - 0x37,0x8e,0x8,0xfe,0x8d,0xa9,0xf0,0xa6, - 0x61,0x30,0x38,0xe5,0x25,0x4f,0x19,0x77, - 0x5b,0x85,0xe0,0xc8,0x52,0xdc,0x1c,0x2c, - 0x33,0x4d,0xf6,0xb6,0x5b,0xbe,0x39,0x26, - 0xe3,0x89,0xdc,0x1f,0x19,0x3a,0xea,0x0, - 0xdf,0x46,0x85,0xc3,0xd3,0xf2,0x57,0x23, - 0x34,0x8e,0xc7,0xd4,0x17,0x38,0xed,0xf0, - 0xdc,0xdc,0x16,0x2d,0x7c,0x75,0x40,0x46, - 0x72,0x1b,0xe0,0xf0,0xe5,0xc1,0x9a,0xa9, - 0x77,0xdb,0x34,0xb0,0xe1,0x5e,0x49,0x33, - 0xe1,0xe9,0xac,0xb2,0x2e,0x66,0x86,0x43, - 0xc5,0xa8,0xb,0x26,0x10,0xa3,0x89,0x12, - 0xfe,0x2c,0x85,0x25,0x5d,0x12,0xf5,0xe2, - 0x64,0x34,0x77,0x67,0x6f,0x35,0x6e,0xb0, - 0x0,0xf3,0x7,0xc8,0xa3,0xe6,0x8f,0x18, - 0x18,0xef,0x7e,0xae,0x43,0x2a,0x64,0xb4, - 0x74,0x2f,0x77,0xd7,0x3c,0xf7,0xac,0xb9, - 0xe9,0xf5,0x73,0x68,0xcd,0x19,0x7d,0xa9, - 0x2f,0x7b,0x27,0x27,0x9e,0x36,0x79,0x90, - 0x86,0x87,0x65,0x24,0x54,0x77,0xe8,0x85, - 0x67,0xe8,0xc5,0xfb,0x80,0x4b,0x57,0x79, - 0x93,0xdd,0xa0,0x43,0x83,0x87,0xb,0x3c, - 0xb0,0xac,0x4b,0xc4,0x87,0xab,0x25,0xe9, - 0x7f,0x71,0xa1,0x98,0xda,0x80,0x43,0xb2, - 0xfe,0x27,0x1,0x35,0x59,0x67,0xf0,0x11, - 0x88,0xdc,0x84,0x20,0x76,0x31,0x66,0xb9, - 0xdc,0x6e,0x3d,0x53,0x28,0x55,0xfc,0xef, - 0x8f,0x75,0xbd,0x10,0x34,0x7a,0x5b,0xa7, - 0x15,0x2c,0xf5,0xcc,0xa8,0x0,0xe0,0x7c, - 0xbd,0xf,0x50,0xbb,0xa8,0xad,0xdd,0x36, - 0x57,0xf5,0x43,0x68,0x5d,0x31,0x71,0xaf, - 0x1a,0x86,0x4b,0x1,0xa6,0x8b,0x7c,0x7b, - 0xdd,0x94,0xaf,0xd7,0xba,0xc7,0x82,0x1e, - 0x1a,0x5a,0xcc,0x56,0x16,0xe4,0xb,0xe6, - 0xa4,0xf7,0x19,0xda,0x7a,0x89,0x83,0x8d, - 0x70,0xd8,0x18,0x15,0xc0,0x89,0xea,0x92, - 0x6,0x2a,0x2f,0x57,0xcf,0x73,0xd8,0xb3, - 0x2a,0x5f,0x67,0x11,0xce,0x37,0xf2,0x85, - 0x84,0x49,0x35,0x6f,0x4c,0x3b,0xc2,0xb8, - 0x19,0xd1,0x47,0x6f,0xfa,0xa,0x40,0x32, - 0x8b,0x36,0xb0,0x54,0xca,0x1a,0xcf,0x27, - 0xc1,0x41,0x63,0x9d,0x53,0xca,0x20,0x57, - 0x95,0x91,0x1d,0x67,0xd4,0x9,0xd4,0xa3, - 0xba,0x78,0xbb,0xce,0xaf,0x81,0x5b,0x3, - 0xac,0x76,0x2b,0x45,0x92,0xe1,0xd2,0xc8, - 0x28,0xbe,0x5c,0xcd,0x60,0x38,0xec,0x6e, - 0x38,0xca,0x50,0xf,0xad,0x53,0x83,0x9a, - 0x69,0xa,0x8c,0x25,0xb8,0x1e,0x63,0x96, - 0x35,0x8c,0x4a,0xbe,0x76,0x9c,0xab,0xdb, - 0xae,0xf3,0xe5,0x86,0xc2,0x1c,0x47,0xb2, - 0xd7,0xcb,0x2d,0xf5,0x78,0x59,0x50,0xbb, - 0x51,0x42,0x6,0x39,0xee,0xfc,0x59,0x29, - 0xe6,0xab,0x23,0x24,0xa6,0x2e,0x2d,0x64, - 0xce,0xe5,0x39,0x32,0xf1,0xce,0x54,0x6a, - 0xdf,0x54,0x88,0xdf,0x6f,0x1b,0x25,0x15, - 0xd0,0x6,0x59,0xfb,0x6,0xc9,0x5b,0xd1, - 0xc6,0x58,0x33,0x32,0x60,0x9a,0x79,0xc5, - 0x23,0xe9,0x4c,0x4f,0x5f,0xc2,0x81,0xf9, - 0xa9,0x29,0x16,0x0,0x10,0xe9,0xdc,0x61, - 0x8c,0xa0,0x4,0xa1,0x1,0x43,0xa8,0xb, - 0x44,0x4,0x46,0x30,0x1c,0x87,0x56,0xa1, - 0x59,0x42,0x6b,0x35,0x6a,0x49,0xa6,0xf0, - 0x7b,0x53,0xaf,0xb7,0x5f,0xd6,0xb0,0x45, - 0x75,0x3c,0x4f,0x67,0x18,0xfa,0x65,0xce, - 0xc5,0xc0,0x1,0xc8,0x39,0x3a,0x67,0x66, - 0x4b,0x32,0x39,0xb3,0x4f,0x67,0x9c,0x7, - 0xe,0x4e,0x92,0xb6,0xf,0x9,0x81,0xd2, - 0x88,0xc2,0xe4,0x96,0xf9,0xb6,0xa9,0x98, - 0x4c,0x5a,0x2f,0xec,0x3b,0x20,0x78,0xcc, - 0x60,0xd5,0x85,0xcd,0xee,0xde,0xff,0x18, - 0x83,0xa4,0x55,0xbc,0x2f,0x31,0x88,0xc7, - 0x2e,0xe8,0x21,0x4,0x2d,0x18,0xbd,0xfd, - 0x5e,0x80,0xe3,0x44,0x4e,0xe5,0xa5,0xe6, - 0x82,0x92,0x38,0x7d,0xca,0x31,0x79,0x56, - 0xa8,0xb6,0xd9,0xd1,0x6d,0x3b,0x38,0xe7, - 0xff,0xf2,0x4f,0x83,0xd3,0xc1,0x39,0xfc, - 0x7f,0x2f,0x3a,0xd1,0x5e,0x87,0xd0,0x3a, - 0xe4,0xad,0x49,0x37,0x27,0xb4,0x59,0xf9, - 0xa,0xc1,0x35,0x4f,0x18,0xaf,0x7f,0x5, - 0xd8,0xfb,0xec,0xbc,0xfe,0x2c,0x14,0x76, - 0x5,0x5,0x26,0xed,0xb3,0xd4,0xd1,0x33, - 0xab,0x90,0x9a,0x80,0x20,0x4c,0x7a,0xd5, - 0x79,0xab,0xb7,0x7c,0xc,0x2a,0xd4,0xea, - 0xb3,0x81,0xee,0x3d,0x45,0xd9,0x30,0xaa, - 0x4f,0x73,0x74,0x4d,0xaa,0x88,0x6a,0xdd, - 0x2d,0x16,0xff,0x51,0x93,0xb5,0x17,0x3f, - 0x21,0x7f,0xa9,0xd7,0xab,0x3f,0xe6,0x55, - 0x4c,0xd9,0x2f,0x80,0xc0,0x98,0xc7,0xc9, - 0x9,0xf0,0x7a,0x33,0x4f,0x36,0x35,0x8, - 0x2c,0xc2,0xdc,0x93,0xf7,0xed,0x6a,0xb7, - 0xde,0x60,0x66,0xe3,0x6b,0xb7,0x59,0xd2, - 0x13,0xad,0x90,0xfd,0xca,0x93,0xfd,0x53, - 0xd,0x24,0x6f,0x45,0xd9,0xaf,0xb3,0x8b, - 0x3a,0x9d,0xa6,0xc0,0x7,0x30,0xed,0xc9, - 0x29,0x9c,0xec,0x45,0x76,0x31,0x4f,0x9b, - 0xf4,0x95,0x48,0x1b,0x42,0xda,0x55,0xf6, - 0xfa,0x24,0x82,0xd,0x5b,0x8c,0xd8,0xd, - 0xe3,0xdd,0x5b,0x28,0x34,0xc,0x6f,0x3d, - 0xdc,0x13,0x57,0xd9,0x22,0x71,0xed,0x68, - 0xae,0xba,0x2e,0xfd,0x15,0x51,0xbb,0x1, - 0xb2,0x31,0x5c,0xdd,0x8a,0xfd,0xa7,0xce, - 0x3a,0xda,0x4c,0xdb,0x44,0x11,0x5f,0x28, - 0x4f,0xd8,0x82,0x38,0x1a,0x44,0x27,0x0, - 0x81,0x14,0xce,0x36,0x3e,0x7d,0x12,0x7c, - 0x6b,0xa8,0x99,0x2d,0x73,0xa8,0x50,0x7f, - 0x94,0x92,0xe9,0x61,0x66,0xa4,0xa8,0x4, - 0x88,0x54,0xa0,0xd4,0x60,0x9,0xcf,0x7e, - 0xfe,0xf7,0xb3,0x19,0x5d,0xf8,0x78,0x56, - 0xc5,0x22,0x28,0x2a,0xe8,0x27,0xb1,0x90, - 0xb0,0x1f,0xe2,0x7a,0x8f,0x50,0x2f,0x79, - 0xca,0x56,0xf3,0x94,0x64,0x97,0xa7,0x72, - 0xbd,0xa3,0x91,0x94,0x3,0xa0,0x28,0x94, - 0x9,0x1,0xbe,0xbc,0xf9,0xae,0x8a,0xcb, - 0x64,0xf4,0xa1,0x1c,0x23,0xe,0x58,0xe0, - 0x92,0x4,0x2,0x2e,0x7c,0x5b,0xe0,0x20, - 0xc6,0x7c,0x2a,0x3b,0xe0,0x74,0x4f,0x1d, - 0x6c,0xaa,0xcc,0x97,0x6f,0xf2,0x4d,0xe4, - 0xde,0xcc,0xcc,0x3a,0xa8,0x40,0xb,0xc7, - 0x50,0x37,0x11,0x7a,0x6d,0x5a,0xa2,0x98, - 0x5c,0x41,0x2a,0x2c,0x30,0x61,0x30,0x7e, - 0xf9,0xe9,0xb,0x1f,0xd7,0xe9,0xed,0x6a, - 0xf9,0xf5,0xf2,0xff,0x6f,0xef,0x5a,0xb7, - 0xdb,0x38,0x8e,0xf4,0xff,0x3c,0xc5,0x68, - 0x72,0x22,0x2,0xe1,0x0,0x2,0x49,0x49, - 0x56,0x40,0x43,0x3c,0xb6,0x63,0x6f,0x9c, - 0x63,0x25,0x59,0xc9,0xd9,0x6c,0x42,0xf1, - 0xf0,0xf4,0x5c,0x0,0x8c,0x35,0xc0,0xc0, - 0x33,0x0,0x2f,0x22,0xf1,0x14,0xfb,0x67, - 0x9f,0x6f,0x9f,0x64,0xab,0xfa,0x36,0xdd, - 0x3d,0x3d,0x17,0x80,0x20,0x45,0x3b,0x8a, - 0x23,0x10,0x98,0xe9,0x6b,0x75,0x77,0x75, - 0xd5,0x57,0xd5,0xd5,0xa1,0x1e,0xed,0x5b, - 0xcd,0xda,0x8f,0xf3,0x6f,0xa9,0x9,0xa8, - 0x7b,0x42,0xb4,0x85,0xed,0xba,0x43,0xfd, - 0x81,0x91,0x6f,0x99,0x8a,0x73,0xa,0xd8, - 0x1a,0xf5,0xee,0x61,0x8b,0x35,0x8a,0xde, - 0x90,0x79,0x9e,0x8,0xa8,0xcc,0x70,0x8c, - 0x35,0x82,0xf0,0x12,0x79,0xf2,0xf6,0x6e, - 0x4e,0xaf,0xb0,0xc4,0x8f,0x19,0xb0,0x52, - 0xf,0x31,0x4d,0x2b,0xdf,0xb,0x81,0xea, - 0x78,0x6a,0xe,0xe,0x28,0x2a,0xd7,0xb0, - 0xa9,0x8b,0x4,0xc0,0x4a,0x14,0x2b,0x1, - 0x95,0xec,0x9c,0x62,0xfc,0xbc,0x89,0x36, - 0x7c,0x53,0x73,0x3c,0x27,0x2d,0x71,0x63, - 0x7d,0xe6,0xd0,0x16,0xb9,0xe6,0x4c,0x9f, - 0x58,0xd2,0xe0,0xf9,0xc6,0x2,0x64,0xde, - 0x91,0x63,0x8f,0x16,0x21,0xc4,0xd3,0xad, - 0x60,0xe6,0x24,0x17,0xb5,0x0,0xc5,0xe4, - 0x57,0x4,0x8a,0x95,0xf2,0xd6,0xb8,0x55, - 0x6e,0xed,0x18,0x5e,0x81,0x39,0xab,0xf3, - 0x95,0xd9,0xcc,0x4a,0x8f,0x71,0x77,0xf9, - 0x10,0xc1,0x12,0xd9,0xf2,0x96,0x87,0xd0, - 0xab,0x50,0xd5,0x5b,0x7,0xe9,0x33,0x16, - 0x4b,0xd4,0xbf,0xa4,0x7e,0xfe,0x21,0x86, - 0x77,0x6,0x32,0x52,0xaf,0x7f,0x4f,0x3b, - 0x65,0x2f,0xe7,0x9,0x65,0x2a,0xe7,0x53, - 0xea,0xff,0x7f,0x12,0xf5,0xd9,0x97,0x51, - 0x45,0x82,0xa1,0x4c,0xe0,0x1e,0xd,0x6, - 0x6e,0x71,0xd2,0x3b,0xae,0x9c,0xff,0xb, - 0x64,0xef,0xea,0xcc,0x96,0xcc,0x5,0xe4, - 0xbb,0xd0,0x89,0x73,0x7,0x96,0xae,0x43, - 0x2e,0x48,0x9c,0xe0,0x38,0x7a,0xce,0x2, - 0x88,0x8c,0xe2,0xd5,0x3c,0x48,0x56,0x61, - 0xa4,0x6d,0x2,0xce,0x38,0x4b,0x67,0xce, - 0x74,0xb9,0x5c,0xe4,0xc3,0x67,0xcf,0x26, - 0xf1,0x72,0xba,0xc2,0xd0,0x1d,0xb3,0x67, - 0xf9,0x47,0x10,0x3a,0x3e,0x3c,0x93,0xa3, - 0x72,0xbe,0xc0,0xa3,0x4,0x35,0x34,0x8c, - 0x51,0x92,0xb0,0x82,0x1b,0x86,0xdf,0x4e, - 0xbb,0x5d,0xa9,0xd3,0xb0,0xc1,0x79,0x7a, - 0x98,0x27,0xd2,0xed,0x4a,0x25,0x55,0xc8, - 0xd0,0x81,0xf0,0xcc,0x11,0xa2,0xb4,0x8c, - 0xe0,0x64,0x5e,0x77,0xcd,0x2f,0xdd,0xa8, - 0x98,0x9a,0x2c,0xd6,0x3b,0xc1,0x68,0x25, - 0x5a,0x2,0x24,0x9d,0xe0,0xb6,0x4,0x67, - 0x7b,0x89,0x9f,0xfa,0x35,0xfc,0xd4,0xe7, - 0xfc,0x14,0xf4,0x25,0xab,0x4,0x66,0x8a, - 0x2d,0x35,0x7b,0xbd,0xb1,0x78,0x58,0x0, - 0xf2,0x30,0x4a,0xa2,0x65,0xe4,0xe8,0xef, - 0x4,0xf3,0x8d,0x47,0xa5,0x9a,0xe4,0x6c, - 0x13,0x5f,0xf8,0x7c,0x13,0xd4,0x23,0xec, - 0x20,0x50,0x94,0x9f,0xb8,0xfc,0xb,0x6e, - 0x45,0x97,0x91,0xff,0x21,0x5e,0xbe,0x61, - 0xf,0xc4,0xd1,0xa7,0x13,0xd7,0xfa,0x18, - 0xd3,0xcf,0xd2,0x8f,0xa5,0xc4,0xe5,0x67, - 0x34,0x65,0x5e,0x4e,0x98,0x5b,0xd2,0xa5, - 0xa5,0x64,0x69,0x29,0xd5,0x45,0x1a,0x87, - 0xce,0x60,0xdd,0x91,0x51,0xca,0xa,0xd7, - 0xa3,0x1f,0x91,0x93,0x8c,0x2,0xf5,0xfc, - 0xa9,0xc4,0x28,0x2d,0x0,0x5e,0xed,0x9e, - 0x45,0x75,0xc8,0xef,0x92,0x94,0x2c,0xdf, - 0xe2,0x8a,0xfe,0x21,0x9e,0x7f,0x60,0x2e, - 0x45,0xc3,0x6a,0x6a,0x5b,0x85,0x1b,0x49, - 0x72,0x2a,0x8e,0x8d,0xf8,0x5f,0x8c,0x40, - 0xed,0xf1,0xef,0xfd,0x20,0xcf,0x69,0x4d, - 0x23,0x37,0xc3,0xba,0x5c,0xf9,0x62,0x46, - 0xb2,0x49,0x3c,0xff,0x21,0x1a,0xd3,0xb3, - 0x47,0x78,0xf4,0x88,0x5d,0x34,0xf8,0x26, - 0xd,0x49,0x72,0xb7,0x86,0xf4,0x7d,0x12, - 0x7c,0x40,0xa7,0x32,0x58,0xf3,0x69,0x92, - 0x66,0x23,0xf7,0x72,0x1a,0x83,0xe6,0x22, - 0xeb,0xf6,0xd3,0xc,0x65,0x68,0xf7,0x60, - 0x71,0xe5,0xe4,0x29,0x1e,0x6a,0xf7,0x61, - 0xaa,0x7e,0x50,0x13,0x5c,0xbd,0x9b,0xc2, - 0x2e,0x76,0x9,0xdc,0xe,0xd2,0xe0,0x3f, - 0x23,0xc5,0x22,0xcd,0x63,0x2a,0x23,0xbb, - 0xc4,0x87,0x22,0x56,0x6a,0xf1,0x1f,0xbf, - 0xa7,0xb1,0x3a,0xa0,0x5b,0xc5,0x33,0xdd, - 0xcc,0xce,0xfb,0xfa,0x1f,0x59,0x1c,0x5a, - 0x47,0x71,0x93,0x3e,0xcb,0x92,0xde,0xa6, - 0x97,0x5b,0xd3,0xcd,0x84,0xee,0xd3,0x4b, - 0x3c,0xa,0xa5,0x34,0x12,0x91,0xe2,0xed, - 0x5b,0x98,0xab,0xc5,0xbc,0xd3,0x63,0xc3, - 0xe1,0x96,0x4f,0x2b,0xc2,0x79,0x68,0x61, - 0xc8,0x55,0x75,0x90,0xa2,0x6,0xdf,0x90, - 0x18,0xf0,0x34,0x23,0x48,0xb,0xbf,0xa5, - 0x62,0x82,0x76,0x56,0x4d,0x2f,0xb,0xed, - 0x79,0x88,0x55,0x21,0x5b,0xc6,0xc8,0x75, - 0x5c,0xa2,0x60,0xbe,0x76,0xba,0x51,0x45, - 0x4c,0x67,0x36,0x9f,0x7e,0x1b,0x4,0x81, - 0x2b,0xd3,0x53,0x4d,0xab,0x45,0x72,0x6, - 0xd6,0x36,0x97,0x2e,0x93,0x36,0x16,0xec, - 0x52,0xc2,0x15,0x9e,0x5,0x1b,0x90,0x2f, - 0x5f,0x90,0x39,0x3d,0xb5,0x5a,0x58,0x36, - 0xdd,0xff,0xfb,0x9f,0xff,0x2d,0xce,0xab, - 0x8e,0x61,0x62,0xe2,0x50,0xc1,0x3c,0x7e, - 0xc9,0xc3,0x49,0xc8,0xe7,0xff,0xe0,0xa2, - 0x80,0xf,0x6c,0xa3,0x78,0x3,0x5b,0x6f, - 0x88,0x36,0x59,0xb7,0x7f,0xf8,0x22,0x8b, - 0x66,0xca,0xb,0xb9,0x58,0xb2,0x8,0x54, - 0xf0,0xf8,0x22,0x2a,0xde,0xc9,0x85,0xc1, - 0x80,0xb1,0x9e,0x8f,0x17,0x22,0xb8,0xdc, - 0xcb,0xb4,0xa1,0xf1,0x7c,0xf8,0x83,0x72, - 0x8b,0xf,0xab,0x5a,0x3c,0x47,0x40,0x22, - 0x71,0x3d,0x9e,0xe7,0xd4,0xc5,0x97,0xbd, - 0x31,0x99,0xc5,0x20,0x55,0x9e,0x8d,0x5c, - 0xd8,0xa9,0xf3,0x5e,0x1e,0x65,0xf1,0x58, - 0xa6,0xe9,0x5f,0xc4,0x79,0xec,0xc7,0x49, - 0xc,0xa,0x8a,0xd0,0x11,0x8b,0xfc,0x5, - 0xaf,0xe9,0xd1,0x41,0xc1,0x42,0xb2,0x89, - 0x4f,0x3a,0x2f,0x6,0x9e,0x23,0xfe,0xf5, - 0xbf,0x78,0xd1,0x2d,0xca,0x63,0xac,0x6f, - 0xe4,0xe,0x1c,0x41,0xa8,0xc0,0x98,0x2f, - 0xdf,0x7d,0x85,0xff,0x15,0xcf,0xb,0xca, - 0x62,0x7a,0xe7,0x40,0xcd,0x4,0x4d,0xa0, - 0xec,0xac,0x87,0xe6,0x94,0x55,0x8e,0xf5, - 0x9b,0xc5,0x32,0x99,0xd0,0x3d,0x1c,0x68, - 0x4f,0x6d,0x2c,0x2c,0x50,0xa6,0x3,0xa1, - 0x27,0x8e,0x67,0x78,0x62,0x2c,0xbd,0x88, - 0xb2,0x91,0x76,0x85,0x47,0x99,0x32,0xf4, - 0x7b,0x12,0xb9,0xeb,0x22,0x1b,0x48,0x26, - 0x17,0x51,0x53,0x3e,0x4e,0xd1,0xb5,0xb1, - 0x54,0x3,0xba,0x22,0x4b,0x80,0xc6,0x6, - 0x33,0x5c,0x78,0x43,0x48,0x26,0xb1,0x1, - 0x27,0x30,0xf,0x99,0x54,0x5d,0xb2,0x52, - 0x6,0x5c,0x88,0xca,0x95,0x2a,0xa7,0x1f, - 0xab,0xc2,0xc2,0xa,0xea,0xbb,0x34,0x3d, - 0x92,0xfd,0x29,0x5d,0x2a,0x4a,0x4e,0xfc, - 0x3e,0x7a,0xe7,0xe1,0x86,0x12,0x61,0x2c, - 0xa8,0xa1,0x6f,0xfa,0xac,0xea,0x1d,0xab, - 0xe,0xd6,0x6a,0x2,0x23,0xf2,0xd2,0x80, - 0xd2,0x4e,0x6b,0x5f,0xbd,0x72,0xd7,0xe3, - 0x13,0xf,0xf,0x26,0xca,0xfd,0xbd,0x1c, - 0xc3,0xbe,0x4,0xe0,0xb6,0x1,0x56,0xe8, - 0x91,0x6e,0xb3,0x15,0xbc,0xfa,0xd0,0x38, - 0x3b,0x5f,0xd8,0xbd,0x23,0x76,0xab,0xd, - 0x31,0xe3,0x4d,0x46,0x34,0x9a,0xec,0x69, - 0x74,0xd6,0xd0,0xaf,0x22,0x5,0x5b,0xc4, - 0x6f,0xd9,0xb0,0x1e,0xf2,0xb3,0xd3,0x1a, - 0xbd,0x21,0x6d,0x11,0x6f,0x36,0xc0,0x98, - 0xe3,0xc6,0xfc,0xe,0x29,0x41,0x94,0xd0, - 0xfa,0x9b,0xb0,0x6f,0xee,0x1c,0x2d,0x7, - 0x44,0xde,0x32,0x63,0xc4,0xdf,0xf7,0x3d, - 0x39,0xf0,0xef,0x2e,0x63,0x2a,0xd4,0xd7, - 0x4c,0x66,0x35,0xce,0x7f,0x79,0x26,0x97, - 0xe4,0x2a,0x6a,0x4e,0x62,0xf0,0x4a,0x13, - 0x47,0xd7,0xf7,0x15,0x2a,0x2f,0xba,0xf1, - 0x92,0x80,0x82,0x5e,0xcf,0xa8,0xc5,0x3b, - 0xa1,0x7d,0xb2,0xb9,0xe4,0x6b,0xa3,0xf0, - 0x75,0xa,0x9b,0xdf,0x6c,0x34,0x30,0x1e, - 0x33,0xe1,0xf2,0x85,0xba,0x15,0x48,0x46, - 0x3a,0x70,0xf0,0xbf,0x23,0xf5,0x9d,0x36, - 0x59,0x75,0x8a,0xd9,0xae,0x5a,0x92,0x2b, - 0xa1,0x40,0x1c,0xf3,0xaf,0xaf,0x7f,0x24, - 0x93,0xbf,0x60,0x20,0x9,0x97,0x69,0xd1, - 0x2e,0xb3,0x53,0x54,0x97,0xc3,0x26,0xbc, - 0x7d,0xe8,0xd8,0x4b,0x56,0x80,0xfa,0xa2, - 0x94,0x3d,0x18,0x5,0xd4,0x59,0x98,0x68, - 0xde,0xa6,0xca,0x6d,0x75,0x18,0xa3,0xd8, - 0x57,0x63,0x14,0xdf,0xd4,0x3,0x8e,0xa2, - 0xf1,0x25,0xc0,0x91,0x6a,0xa0,0x40,0x9d, - 0xd3,0x10,0xaf,0xa5,0xd3,0xf8,0xd,0x86, - 0xe4,0xbc,0xbd,0xc5,0x37,0xd0,0xe,0x1d, - 0x70,0x64,0x56,0x2b,0xe4,0xb1,0x30,0x55, - 0x88,0x31,0xd5,0x9b,0x64,0xc9,0x25,0xcf, - 0xd6,0x4e,0xdf,0xb8,0x54,0xc3,0x1c,0x10, - 0x63,0xee,0x1c,0xb1,0x18,0x7,0xaa,0x94, - 0x1f,0x7f,0xa4,0xd3,0x81,0x6f,0xa1,0xc8, - 0xe3,0x38,0x9f,0x7a,0x8b,0x30,0xa0,0xb9, - 0x2a,0x55,0xf6,0x54,0xc5,0x2c,0x33,0x16, - 0x31,0x59,0x34,0xd6,0xb4,0xf8,0xce,0xe2, - 0x39,0xc6,0xe5,0xf0,0x4a,0xcf,0xc9,0x15, - 0x45,0x72,0xcd,0xe7,0xa0,0xa4,0x2f,0x5c, - 0x4f,0x72,0xb,0xbd,0xb6,0xd,0x18,0x6, - 0x33,0xb2,0x57,0x8a,0xcc,0xcc,0xce,0xc8, - 0x58,0x85,0x71,0xe7,0xa2,0xe1,0xbb,0xae, - 0xa3,0x59,0x6,0x71,0xbc,0xb0,0x69,0x6a, - 0x69,0xaa,0x41,0x9,0xb6,0x46,0xf4,0xa0, - 0xc7,0x11,0x2e,0x97,0x62,0x1a,0x91,0xb9, - 0x89,0x69,0x57,0xd8,0xf8,0x22,0xb2,0xe3, - 0x49,0x87,0xe8,0x56,0x60,0x1f,0xbd,0xdb, - 0xe3,0x2c,0x5f,0xd2,0x8c,0x40,0x3e,0xc4, - 0xbe,0xf4,0xb8,0x15,0xdd,0x61,0xc7,0xf2, - 0xd4,0x8b,0xcc,0xdd,0xc3,0xb,0xcc,0x66, - 0xc0,0x70,0x44,0x5c,0xf4,0x6,0xd9,0x65, - 0x19,0x85,0x7f,0x23,0xf3,0x28,0xb9,0x7, - 0xf5,0x99,0xf3,0x2b,0x4d,0x4d,0xae,0x56, - 0xa0,0x35,0xf5,0x96,0xbf,0x91,0x2a,0x2e, - 0x55,0x42,0xf8,0xe4,0xfe,0x31,0x5d,0x3c, - 0xae,0x96,0x73,0xc1,0x44,0xc2,0xf3,0x65, - 0x3c,0xa2,0x35,0xb0,0xa1,0x58,0xa7,0x36, - 0x58,0x1e,0xb,0x75,0x69,0x14,0x5c,0x94, - 0x18,0x32,0x53,0x55,0xe1,0xaa,0xe9,0xdc, - 0x38,0x3,0x45,0xba,0xfa,0xc2,0xdd,0xbe, - 0x88,0xf2,0x19,0x30,0xb,0x81,0x74,0x7, - 0x10,0x71,0x54,0x8c,0xe6,0x6f,0xc8,0xd9, - 0x4c,0xda,0x92,0x92,0xd9,0x46,0x5c,0x93, - 0x66,0x10,0xc9,0x10,0xd9,0x9d,0x43,0xfc, - 0xb9,0xbc,0x6,0x81,0x15,0x8e,0x9b,0x44, - 0x27,0xf4,0xb8,0x61,0x3e,0xa4,0x9b,0x5f, - 0xf1,0xc6,0xc2,0x6d,0x70,0x93,0x3b,0x56, - 0x97,0xfa,0x71,0x97,0x18,0xb1,0x40,0x14, - 0x36,0x70,0x1c,0xd0,0x20,0x2d,0xa6,0xa2, - 0x31,0x42,0x3,0xb7,0xdf,0x64,0x86,0xe3, - 0x5a,0x67,0xd4,0x4a,0x91,0xf0,0x69,0x0, - 0x17,0xc3,0xf0,0x46,0xd9,0x8d,0xc1,0x78, - 0xd1,0x30,0xb,0xb2,0x23,0xa3,0xf0,0x8f, - 0xa6,0x17,0x6a,0xc3,0xd8,0x2c,0x69,0xc0, - 0x72,0x25,0xaf,0x1,0x2,0x35,0x65,0xcf, - 0xd4,0xbc,0x38,0xbf,0x36,0xc9,0x8c,0xa6, - 0x68,0x35,0xff,0xd7,0x69,0x78,0xbd,0x49, - 0x7e,0x1f,0xd2,0x9b,0xf5,0x47,0xd9,0x37, - 0x51,0xb2,0x89,0x96,0xb7,0x9c,0xaa,0x2b, - 0x57,0x53,0x80,0xf8,0xda,0xa5,0x65,0xeb, - 0xa5,0x36,0xca,0x1c,0xa1,0x9,0xb0,0xa9, - 0xc7,0x6b,0xb6,0x65,0x2b,0x8c,0x59,0xfa, - 0xa,0xb3,0xf4,0x75,0xbd,0x3f,0x8b,0x28, - 0x9a,0xb2,0x81,0x9e,0xaa,0x9d,0x89,0x2d, - 0x81,0x6a,0xe6,0xd9,0x57,0x63,0x27,0x87, - 0xcc,0x62,0xce,0xd8,0x5e,0xb3,0xdc,0x75, - 0x29,0x18,0x71,0x4b,0x4a,0x9c,0x20,0x8a, - 0xb,0x8a,0x42,0x34,0x6,0x15,0x20,0x54, - 0xb5,0x54,0x34,0xd,0x7b,0x41,0xbb,0xd, - 0x26,0xd0,0xe2,0x6d,0xc1,0x2b,0x87,0xd1, - 0x70,0x6f,0x8c,0x98,0xf2,0xd0,0x49,0x60, - 0xf,0x39,0x76,0xa8,0xcc,0x37,0x74,0xe, - 0x8e,0x60,0x2f,0x39,0xde,0x73,0xa8,0x48, - 0x31,0xda,0x83,0xa5,0x91,0xef,0x39,0x71, - 0x38,0xda,0xa3,0x11,0xb9,0xf6,0x5e,0x7f, - 0xf9,0xc,0xa,0x78,0x4d,0x4b,0xe1,0x49, - 0x2,0x36,0x53,0xf6,0x44,0xa9,0x6c,0x63, - 0xea,0x61,0xa9,0x50,0xdc,0x21,0x2b,0xce, - 0x5e,0x2,0xcf,0x41,0x8d,0x2f,0x43,0x3f, - 0x5,0xb1,0x5a,0xbc,0x6,0x61,0x4d,0xec, - 0xb1,0xf,0x4d,0x1c,0xad,0xe7,0xd6,0x3e, - 0x6d,0xd7,0x25,0x2b,0xcd,0x4a,0x85,0xd0, - 0x8e,0xd3,0xcb,0xa0,0xa9,0x7a,0x97,0x1b, - 0xd3,0x51,0x86,0xa1,0xa6,0xa1,0xfd,0xbb, - 0xbe,0xf5,0xd6,0x29,0x2e,0x22,0xe0,0x8d, - 0xc7,0x3e,0xd,0x29,0xed,0x5,0x49,0x9a, - 0x47,0xf9,0xd2,0x52,0xd8,0x31,0x48,0x87, - 0xe4,0xc9,0x48,0x12,0xeb,0x98,0xf9,0xc1, - 0x91,0xd3,0xf8,0x8c,0x5b,0xd4,0x9e,0x1c, - 0xd0,0x48,0xc2,0xf0,0x0,0xd9,0xb1,0x58, - 0xcf,0x78,0xb6,0x52,0x71,0x54,0x5c,0x8b, - 0xb4,0x6b,0x8f,0xb,0x90,0x24,0x8f,0x3, - 0x36,0x7a,0x46,0xad,0xbe,0xb2,0x95,0xe8, - 0xd2,0x26,0x62,0x65,0xca,0x3b,0x65,0xc7, - 0x11,0xab,0xc4,0x7a,0xd4,0xb3,0xe5,0x38, - 0x1b,0x12,0x70,0x80,0xa7,0x88,0x7c,0x81, - 0xe3,0x8d,0x2,0x85,0xa1,0x30,0x7b,0x7b, - 0x31,0x6,0x78,0xa5,0x3b,0x13,0x7,0x87, - 0x25,0x51,0x90,0x3d,0xa7,0x16,0x62,0xf6, - 0x72,0xe0,0xe0,0xe7,0x1,0xa,0x64,0xc8, - 0x47,0xbf,0x4a,0xe2,0xc9,0x7c,0xe8,0x6, - 0x28,0x26,0x66,0xae,0x47,0xdd,0x16,0x99, - 0x2d,0xd8,0x3d,0x62,0xf1,0xb,0x69,0x1, - 0x6f,0x29,0xec,0x38,0xe4,0x7a,0x36,0x7d, - 0xc4,0xf4,0x71,0x8a,0x8d,0xf0,0xb7,0x3, - 0xfe,0x6,0xc8,0xaa,0x3f,0x2e,0x54,0xfe, - 0x21,0x47,0x93,0x83,0x55,0x96,0x3,0xa7, - 0x71,0x17,0x69,0x4c,0x2b,0xc6,0xdb,0x4c, - 0x95,0x5,0x75,0x17,0x3a,0x72,0xb2,0x95, - 0xc8,0xd9,0x8e,0x8e,0x2e,0x65,0x3a,0xee, - 0xd0,0xc5,0xb5,0x24,0xba,0xda,0x82,0xac, - 0x94,0xb4,0x77,0x25,0xac,0x22,0x4e,0xeb, - 0x4f,0xde,0xb2,0x8c,0xad,0xa8,0xcf,0xde, - 0x60,0x19,0x5b,0xd1,0x9f,0xf8,0x7c,0x6b, - 0xb5,0x30,0xb5,0xc2,0x92,0x24,0x6e,0x47, - 0x3c,0x38,0x53,0x46,0x6d,0x9b,0x8c,0x32, - 0x57,0x8d,0x94,0xab,0x69,0x31,0x5c,0xcc, - 0xd5,0x6a,0xac,0xc9,0x6b,0x2a,0x41,0x98, - 0x1d,0xb8,0xe5,0x7,0xc8,0xfc,0x55,0x80, - 0x46,0x8a,0xf2,0xa9,0x64,0x75,0x46,0xe0, - 0x8d,0x23,0xbe,0x77,0x93,0x2e,0x48,0x10, - 0x2f,0xaf,0x87,0x7,0x5e,0x81,0x8e,0xd, - 0xb9,0xc1,0x11,0x48,0xa7,0xb0,0xf9,0xe2, - 0xc2,0xbe,0x7e,0x96,0x5e,0x62,0x95,0x27, - 0xf2,0x5b,0xe9,0x1c,0xf0,0x50,0xd,0xd8, - 0x69,0xbe,0x94,0xed,0xfc,0x7e,0x4e,0x36, - 0x6f,0x69,0xff,0x85,0xd6,0xd4,0x3b,0xb4, - 0x92,0xda,0x32,0xeb,0x5a,0xca,0xce,0x14, - 0x73,0x41,0xc3,0x58,0xb9,0xca,0x88,0xf, - 0xce,0x4a,0xc1,0x4e,0x31,0x8b,0x6d,0xbd, - 0xd7,0xe7,0x42,0x1d,0x5,0xd1,0x46,0xdd, - 0x94,0xd8,0x24,0xed,0x91,0x1a,0x5c,0x5b, - 0x0,0xbf,0x7a,0xd9,0x77,0x33,0x97,0x4b, - 0x6b,0x67,0x7e,0xd7,0x72,0xd8,0xeb,0x37, - 0x51,0x18,0x13,0xc3,0x7a,0xca,0x34,0x33, - 0x62,0x50,0xc8,0xb4,0x8,0x9,0x98,0x4c, - 0xd7,0x87,0x44,0xb9,0xdf,0x63,0x60,0xd2, - 0x76,0xe5,0xfa,0xa5,0x22,0x50,0xe5,0xc5, - 0x5d,0x50,0x1f,0x42,0x65,0xbd,0x5b,0xb7, - 0x4b,0xe,0xaa,0x88,0x3,0x1,0x43,0xfd, - 0x24,0xbc,0x90,0xa4,0xd,0xf7,0x5b,0xea, - 0x65,0x95,0xf7,0xfd,0x34,0x5d,0xa2,0xb3, - 0xc4,0xe2,0x70,0x64,0xf8,0x4d,0xa8,0x5e, - 0x13,0x35,0xb8,0x9e,0xca,0x1f,0x34,0x7, - 0xf1,0xdd,0x19,0xeb,0xcb,0xa7,0xb7,0x79, - 0x81,0xbd,0x71,0xb2,0x8a,0x43,0xcd,0xe8, - 0xbe,0x5b,0x7b,0xbe,0x51,0x41,0xa3,0x55, - 0x4d,0xa3,0x42,0xc9,0x12,0xd0,0x2,0xe3, - 0x37,0x6c,0xc4,0xcd,0x4e,0x0,0xa5,0x56, - 0x53,0x7d,0x7b,0x9f,0xaf,0xeb,0x7a,0x33, - 0x49,0x7d,0x6b,0x75,0x64,0xbf,0x14,0x13, - 0xf7,0xf,0xaf,0x7e,0xe7,0x9a,0xc6,0xc6, - 0x2a,0x78,0xb5,0x55,0x45,0xa2,0xc0,0x3a, - 0x20,0x95,0x8a,0xaa,0x5a,0x4,0x24,0x2a, - 0xfe,0x5a,0x42,0x22,0x31,0x1,0x18,0x68, - 0xe4,0x8a,0xb7,0x3d,0xfa,0xda,0x65,0xf7, - 0xbe,0xa8,0xe1,0x82,0x2c,0x69,0x73,0xe9, - 0xcf,0xac,0xbd,0xe3,0xfe,0x9c,0xa5,0x3a, - 0xd9,0x18,0xa0,0x9,0x63,0x54,0xf5,0xa2, - 0xf0,0xec,0xd2,0x9a,0xc3,0x9c,0xbc,0x8a, - 0x97,0xa7,0xce,0xd9,0xcd,0xa1,0xb7,0xc6, - 0xc7,0x8e,0xd6,0xd4,0x6d,0xaa,0xc8,0x1b, - 0x4b,0xb7,0xd9,0x83,0x78,0xcf,0x7f,0x5e, - 0x45,0xab,0x48,0xd1,0x93,0x59,0xb4,0x5, - 0x75,0x40,0x6d,0x29,0x8e,0xb9,0x67,0x5a, - 0x65,0x2,0x2e,0x24,0xea,0xb1,0x6a,0x3d, - 0x9f,0x5b,0x3b,0x76,0x83,0xaf,0x1a,0x2b, - 0xe2,0x32,0x4a,0x12,0xd7,0xa3,0x7f,0x7a, - 0xf9,0x8c,0x24,0x89,0xd2,0x75,0x2e,0xf, - 0x4a,0x5b,0x18,0xd9,0x81,0x6f,0x88,0x51, - 0x7d,0xc,0xa3,0xd1,0xc3,0xf3,0xd5,0xd4, - 0xf3,0x1e,0x1a,0xb2,0x58,0x41,0x43,0x98, - 0x63,0x57,0xf7,0xb1,0xb8,0x81,0xfc,0x7b, - 0xb9,0x74,0xe8,0x4f,0xa9,0x3d,0x16,0x6d, - 0x28,0xdc,0x34,0x8b,0x27,0xfd,0xfe,0xbb, - 0xd3,0x3b,0xfc,0x2,0x52,0x75,0x1d,0xf9, - 0xe8,0x9f,0x9d,0x1e,0xad,0xb5,0xfb,0xcb, - 0x75,0x6,0xd9,0x1,0xca,0x6f,0x4c,0xee, - 0x69,0x94,0x2c,0x7a,0x6c,0xf6,0xd1,0xc9, - 0x6c,0x83,0x12,0xef,0x6e,0xf8,0x8a,0x6c, - 0x12,0x80,0xc2,0xd2,0x1b,0x22,0x7c,0x68, - 0xec,0x61,0x5c,0x51,0x56,0xce,0x2c,0x67, - 0x86,0xa1,0x6c,0x52,0xb6,0xf7,0x75,0x4f, - 0x3a,0x91,0x11,0x82,0xc3,0x2b,0x8b,0x28, - 0xd2,0xf9,0xc3,0x2b,0x89,0x7d,0x63,0x53, - 0x97,0xe,0x31,0x72,0x88,0x61,0x4f,0x1b, - 0x97,0xac,0xb0,0xa0,0xab,0x76,0x87,0xec, - 0x86,0xa7,0x2a,0x72,0x70,0xe7,0x1d,0xcf, - 0x34,0xff,0x55,0x55,0x61,0x34,0xcc,0xec, - 0x16,0xb5,0xe1,0x8d,0xed,0x36,0xbc,0x7a, - 0xb3,0x8a,0xee,0x19,0xa3,0x5b,0x55,0x4c, - 0xad,0xa1,0xca,0xb0,0x55,0x5f,0xf6,0x76, - 0x5b,0x81,0xbf,0x9c,0x17,0x62,0x40,0xb3, - 0x75,0xa6,0x2c,0xd4,0x16,0xf6,0x98,0x72, - 0xc9,0x78,0x38,0x5,0xca,0xe7,0x12,0xb6, - 0x2b,0x8c,0xcf,0x25,0xeb,0x44,0x3,0x8a, - 0xce,0x8c,0x13,0x95,0x5d,0x60,0xef,0x3d, - 0xf6,0xb7,0xc7,0x58,0x1e,0x8f,0xc1,0x6f, - 0x73,0x1f,0x2a,0xc9,0x6d,0xd2,0x95,0xb6, - 0xe,0x5,0x2f,0x2a,0x57,0x24,0x8d,0x13, - 0xf4,0xb4,0xee,0x98,0xe2,0x57,0x21,0xa2, - 0x54,0x88,0x45,0x45,0xd3,0xd9,0xfd,0x1a, - 0xd8,0x52,0xf8,0x36,0xcb,0x27,0x27,0xe2, - 0x4b,0x59,0x91,0xef,0x88,0x57,0x75,0x5c, - 0x49,0x16,0x64,0xe5,0x4a,0x5c,0xba,0x66, - 0xb5,0x42,0x22,0x5d,0x9c,0xd2,0xaf,0x10, - 0x60,0xc5,0x74,0x95,0x12,0x55,0x46,0xe6, - 0x77,0xbb,0xd4,0xcb,0xbc,0x53,0x29,0xd5, - 0x8c,0x58,0x6c,0xb6,0x1a,0xc3,0x81,0x4e, - 0x99,0xdb,0xdb,0x46,0x39,0x49,0xb4,0x84, - 0x52,0xd5,0x4e,0x26,0x3e,0x94,0x55,0x34, - 0x17,0xa1,0x50,0x38,0xd9,0xbb,0xf,0x62, - 0x7a,0x28,0xcf,0x56,0xbf,0x98,0xb0,0x39, - 0x45,0xd4,0xe9,0x61,0x78,0x15,0x85,0x5f, - 0x25,0x2,0x27,0x9f,0x93,0xb,0x7,0xfe, - 0xf5,0x18,0x18,0xaf,0xa3,0xe5,0xab,0xe4, - 0xb5,0x81,0xd7,0xf7,0x38,0xac,0xee,0xa0, - 0x68,0xe7,0x14,0xf2,0x5d,0x15,0xcc,0xfe, - 0x30,0xf6,0x85,0x6,0xa,0xa0,0x20,0xd0, - 0x9a,0x2,0x5b,0x13,0xa0,0x86,0x2,0x1b, - 0xa2,0xc1,0x49,0xec,0xe2,0x75,0xea,0x46, - 0xaf,0xb0,0x89,0x78,0x5b,0xa6,0xdb,0x74, - 0xa0,0x93,0x54,0x3b,0xf5,0x48,0x87,0xf3, - 0x7d,0xdf,0x3c,0x9e,0x47,0x1,0x66,0x63, - 0xbb,0xda,0x1a,0xcf,0x7e,0x6c,0x3d,0x78, - 0xc,0x88,0xf0,0x5d,0x36,0x51,0x9c,0x78, - 0xa0,0x43,0x44,0x72,0xf,0xad,0xc4,0x8e, - 0x77,0x57,0x4b,0x35,0xc4,0x4c,0x71,0x5a, - 0x33,0x33,0x3,0x78,0xdd,0xf6,0x18,0x6d, - 0x45,0x7e,0xd,0xa6,0xad,0x48,0x53,0x8f, - 0x2b,0x9b,0xcd,0x13,0x4c,0xf9,0xe,0x2d, - 0x34,0x8b,0xa8,0x68,0xa4,0x99,0xec,0x61, - 0x11,0x65,0xe5,0xe2,0x96,0x4d,0x67,0x44, - 0x69,0x2a,0x88,0xfb,0x5e,0xdc,0x6e,0xc3, - 0xa5,0x9f,0xda,0x8c,0x2a,0x4d,0xa,0x9f, - 0x64,0x8a,0xc2,0xcd,0xc5,0xa4,0x32,0x94, - 0xeb,0xd3,0x9,0x57,0xba,0x7e,0xc6,0x24, - 0x0,0xdd,0x97,0x15,0x38,0x56,0x2d,0x15, - 0xd8,0xee,0xef,0xca,0x77,0xe4,0x14,0x77, - 0xd8,0x94,0x42,0x8f,0x55,0x77,0xd9,0x93, - 0x5f,0x7b,0xe8,0xbb,0xbe,0xa0,0x37,0x2f, - 0xc9,0xc9,0x53,0xd9,0x2,0x6,0x52,0x77, - 0x6b,0x90,0x61,0x76,0x75,0x1f,0x69,0x67, - 0xc,0x2c,0x71,0x4f,0xea,0x18,0xd9,0x63, - 0x64,0x73,0xbb,0x25,0xf3,0x60,0x9d,0x17, - 0x2d,0x3a,0xbb,0xda,0xa4,0x67,0xb3,0x14, - 0xea,0x2e,0x2b,0xb7,0xd5,0x75,0x3,0x7c, - 0x7d,0x54,0x7,0x5f,0x6f,0x7,0x83,0xd6, - 0x7b,0x59,0x6e,0x83,0xcd,0x6,0xa0,0xa3, - 0xcd,0xc2,0x1e,0x83,0x67,0x77,0x8e,0x73, - 0xd2,0x6,0xa,0xed,0x66,0x13,0xf4,0xf2, - 0xb1,0xa1,0x80,0x3b,0xf4,0x79,0x6e,0xf0, - 0x94,0x6d,0x72,0x5a,0xae,0x37,0x6e,0x6c, - 0x87,0x7b,0x17,0xd8,0x0,0xbb,0x35,0xa9, - 0xc5,0x44,0xdb,0xa5,0xf7,0x70,0x19,0xe3, - 0xc0,0x4d,0x7,0x31,0x8d,0xd,0x20,0xc, - 0x52,0x3e,0x3c,0xf6,0x1c,0x35,0xf7,0x48, - 0x9b,0x4b,0xb0,0x73,0x0,0x83,0x75,0x11, - 0x7c,0x88,0xea,0xfd,0x85,0x49,0xb7,0x15, - 0xde,0x59,0x9c,0x8b,0x65,0x7a,0xc4,0xb0, - 0x63,0xf7,0x85,0x96,0x2a,0xfe,0xd6,0x60, - 0x49,0xf4,0xe9,0xfd,0x9b,0x6b,0x51,0xec, - 0x87,0x85,0xb0,0x27,0xc9,0xf5,0x62,0x8a, - 0x38,0x36,0x34,0x40,0x7e,0xff,0x8c,0x69, - 0x7f,0xc6,0xb4,0x7f,0xbd,0x98,0x36,0x9b, - 0x76,0x5d,0xcf,0xe6,0xd7,0xfe,0x19,0xfb, - 0xfc,0xf7,0xc3,0x3e,0x1b,0xa0,0xcd,0x29, - 0xc9,0x7b,0x8f,0x7,0xde,0x64,0x4d,0xac, - 0x80,0x38,0x39,0x8a,0xfb,0xeb,0xc3,0x39, - 0x95,0x31,0xe8,0x3e,0xb8,0x9b,0x75,0x81, - 0xe0,0x71,0x21,0xff,0xd0,0x11,0x50,0xde, - 0x22,0x4e,0x92,0x9c,0x7e,0xcb,0x97,0x4, - 0xa3,0xf5,0xaa,0xb8,0x9e,0x3,0x1d,0x8a, - 0x28,0x98,0x87,0xa1,0x65,0x2c,0x30,0x1f, - 0x2f,0xee,0x60,0xe0,0x6c,0xb,0xf8,0x3d, - 0xac,0x4b,0x75,0x33,0x94,0xd9,0xd8,0xe5, - 0x87,0x45,0x36,0x8d,0xb8,0x59,0x29,0xe5, - 0x30,0xb,0xd0,0xb8,0x21,0x11,0xe1,0x27, - 0x3a,0xef,0x9,0x21,0x34,0x53,0x93,0x2c, - 0x26,0x3d,0x69,0x8f,0xb4,0x1d,0x6c,0xe4, - 0xcd,0x3,0xa,0xb9,0xe5,0x97,0x7a,0x5c, - 0x5c,0x96,0x66,0xe7,0x30,0xea,0xbf,0x27, - 0xb9,0xee,0x15,0xde,0xac,0x6c,0x34,0x26, - 0x48,0x1e,0xe,0x66,0x6d,0xd3,0x8e,0xcf, - 0x40,0xec,0xe,0x80,0xd8,0x26,0x7c,0x74, - 0xe0,0xf9,0xa3,0x83,0xc1,0x0,0x18,0xf0, - 0xc0,0xdb,0x38,0x56,0xa6,0x81,0x96,0x6e, - 0x7b,0xa8,0x58,0xc2,0x8e,0xc,0x36,0x8d, - 0xaa,0x16,0x3e,0x4b,0x65,0x4f,0x44,0x17, - 0x28,0x3d,0xfd,0x3e,0x4f,0x2f,0xe9,0x79, - 0xec,0xdf,0x54,0x27,0x11,0x67,0xbc,0x6b, - 0xa,0xe1,0xa7,0xbd,0x23,0x65,0xc3,0x9, - 0x10,0x6a,0x2d,0x7,0xeb,0xc,0x9b,0x11, - 0x5c,0x15,0xfd,0x54,0x71,0x54,0xa0,0x38, - 0xc5,0x6f,0x4b,0xbc,0xce,0xe8,0x4d,0xc9, - 0x31,0x38,0xd4,0x8c,0x7a,0xe1,0xba,0x25, - 0xfe,0x5b,0xb4,0xc3,0xd7,0xda,0x71,0xbc, - 0x2d,0x28,0xec,0x97,0xaf,0x2b,0xd6,0x9b, - 0x5e,0x2,0xc1,0x99,0x47,0xb3,0xaf,0x5, - 0x42,0x58,0xdf,0x33,0x76,0x2c,0x54,0x91, - 0x12,0x74,0xbc,0x55,0x80,0x58,0xa5,0xcc, - 0x9e,0xd,0x4c,0xe,0x95,0x68,0x26,0xa3, - 0xc1,0x71,0x54,0x40,0xd2,0xd1,0xfe,0x7e, - 0xd7,0x8,0x7d,0x82,0x31,0x48,0x5a,0x3, - 0xcf,0xcf,0x7f,0x55,0xc0,0xb3,0x29,0xbe, - 0x3f,0x30,0xe8,0xdc,0xfd,0x8c,0xff,0x6e, - 0x8c,0xff,0xb6,0x8b,0xfc,0xd3,0x80,0xfe, - 0x86,0xbb,0x40,0x7f,0x43,0x3b,0xfa,0xbb, - 0x1b,0xa4,0x37,0xdc,0x1c,0xe9,0x55,0x9, - 0x29,0xe1,0xde,0xb0,0xc,0xf7,0xda,0xa0, - 0xdd,0x8a,0xb8,0x43,0xf7,0x2,0xed,0x6, - 0x24,0x43,0x6,0x8e,0x7f,0x7a,0xf4,0x78, - 0xb7,0xe7,0xfa,0x93,0x5e,0xc2,0xd1,0x54, - 0x72,0xdf,0x78,0x17,0x25,0x13,0x2e,0x9e, - 0xcf,0x70,0xd7,0x86,0x70,0x57,0x4e,0x2f, - 0x6,0x20,0xd9,0xf5,0xbd,0x2,0x5e,0x5, - 0xd0,0x25,0x90,0x2f,0xd,0xff,0xdf,0x5, - 0xe6,0xd5,0x60,0x6b,0xb4,0xa1,0x5d,0x21, - 0x72,0x4d,0x6,0x77,0x99,0x7b,0x71,0xde, - 0x8b,0xe7,0x17,0x78,0xbf,0xe8,0x43,0x80, - 0x61,0xc5,0xec,0xc5,0x4b,0x77,0x68,0xb5, - 0xbd,0x71,0x14,0x85,0x88,0xdd,0xb7,0xc6, - 0xc4,0x2a,0xe0,0xb0,0x46,0xac,0xab,0x3d, - 0x74,0x55,0xd2,0x6,0xc,0x2a,0xb5,0xc0, - 0xb6,0x4,0xc5,0x9b,0xc1,0xad,0xfa,0xe0, - 0xeb,0x41,0xd,0xe6,0x63,0xb,0xe7,0xe2, - 0x5a,0xe0,0xa8,0x43,0x1,0xe8,0x4,0x14, - 0x87,0xd1,0x41,0x9f,0x71,0x12,0x5d,0xa1, - 0xc1,0x4,0x84,0x93,0x2,0x0,0x13,0x38, - 0x4f,0xe9,0x6c,0xbc,0x8a,0xf6,0x48,0xb0, - 0x4b,0x2f,0x9e,0xc3,0x3c,0xbe,0x3d,0xe2, - 0xaa,0xdf,0xca,0xb3,0xa5,0xc1,0x5f,0xe5, - 0xd1,0xa1,0x64,0x16,0x24,0x50,0xec,0xf, - 0x2a,0x12,0xb8,0xf7,0x38,0x3d,0xfd,0x2c, - 0x85,0x24,0xf1,0xfc,0x83,0x6b,0xb,0xd5, - 0x75,0xcd,0x34,0x49,0x66,0x6,0x1b,0xd2, - 0x68,0xb,0x96,0x74,0x6,0x34,0xd4,0xc, - 0xe5,0xfc,0x42,0x3c,0xa,0xdb,0x53,0xea, - 0xfe,0x28,0xf0,0x19,0xdd,0x6a,0x89,0x6e, - 0x29,0xde,0x56,0x8f,0x1c,0xe8,0xb2,0xb6, - 0xf4,0x33,0xe6,0xf5,0x29,0x30,0xaf,0xcf, - 0x90,0xd7,0x67,0xc8,0xeb,0x9e,0x21,0xaf, - 0x45,0x16,0x59,0x3d,0x31,0x77,0xe,0x7b, - 0x8d,0xd1,0x19,0x86,0x9a,0x79,0xea,0x60, - 0xaf,0xda,0x98,0x84,0x5b,0x5c,0x4d,0xa0, - 0xa1,0x44,0xee,0xc1,0x8b,0x42,0x73,0xbc, - 0xcb,0x1,0x77,0x58,0x7d,0x9a,0x8e,0x54, - 0x72,0x5b,0xd2,0x82,0xe0,0x2a,0xa0,0x6, - 0xb,0x80,0xdb,0x2a,0x3a,0x70,0x65,0xe5, - 0x6a,0x20,0x9a,0x91,0xfb,0x8a,0x97,0xd8, - 0xec,0x13,0x2a,0x14,0xb4,0x6,0xa8,0xcd, - 0xee,0xd2,0xc9,0xb3,0x57,0xa0,0x78,0x5, - 0xe4,0xf4,0xe9,0x5c,0x3f,0xef,0x29,0xc2, - 0xc2,0xe,0xc3,0x14,0x8,0xc6,0x61,0x9b, - 0x99,0x2a,0xb2,0x6,0xda,0xc1,0xc0,0x1d, - 0x8a,0xa0,0xfa,0x3b,0xc7,0x70,0x8c,0x83, - 0xb6,0xe5,0x49,0xda,0x63,0x0,0x4b,0x5d, - 0x0,0xe9,0xfb,0x43,0xb4,0xa4,0x48,0x55, - 0xeb,0xa3,0xb8,0x3b,0x60,0xa9,0x21,0xa2, - 0x7a,0x75,0xd4,0xd7,0x8b,0x28,0x5b,0xc6, - 0x1,0x49,0x68,0x74,0xa9,0x91,0x3b,0x8b, - 0xc3,0x30,0x89,0xee,0x15,0x96,0xa2,0x65, - 0xde,0x13,0x32,0xc5,0xa2,0x1b,0x28,0x77, - 0xa4,0x85,0x2d,0x5d,0x9d,0xa4,0x8f,0xd3, - 0xe,0xce,0x6d,0xb2,0x10,0x6f,0x5f,0x85, - 0x3f,0x11,0x8c,0xd5,0x85,0x5b,0x2b,0x6c, - 0xc6,0xc8,0xd7,0x70,0x83,0xf2,0xf6,0xbe, - 0xa4,0x8d,0xe4,0x3a,0x2d,0x2f,0x1a,0x14, - 0x57,0xfa,0xf4,0xf5,0x5e,0x51,0x89,0x16, - 0x6e,0x4e,0xf,0x17,0xfe,0x8d,0x88,0x78, - 0x21,0x9b,0x6,0x4a,0xfd,0xfd,0x3b,0x36, - 0x6d,0xe5,0xd1,0xd4,0x70,0x28,0xd3,0xab, - 0x5,0x8e,0x3e,0xe1,0x51,0x1a,0xdd,0xa3, - 0xb6,0x84,0xbc,0xcc,0xa2,0x65,0xf4,0x88, - 0x4f,0xd3,0x6c,0x7d,0x2a,0x26,0xe0,0xfb, - 0xac,0x7e,0x43,0xef,0x5d,0x64,0x33,0x2b, - 0x42,0xaa,0x88,0x6e,0x63,0xdc,0x8c,0x2c, - 0xca,0xba,0x21,0xb8,0x5,0xaa,0xe0,0x76, - 0xd3,0x26,0xde,0xc1,0xb8,0xd6,0x46,0x2a, - 0x38,0xc4,0xd8,0xce,0x8,0x97,0x29,0xc6, - 0x4f,0xc7,0x8b,0x1b,0xca,0x53,0x57,0xc4, - 0x50,0x31,0x22,0x3,0xa0,0xf8,0x68,0xf4, - 0x62,0xdc,0x5d,0xb,0x56,0xd5,0x24,0x4e, - 0x1e,0x8d,0xea,0xde,0xaa,0xc2,0x65,0xeb, - 0x5d,0x43,0x5c,0x52,0x6b,0x6e,0x16,0x85, - 0xd9,0xaa,0xff,0x12,0x7d,0xa6,0x77,0x12, - 0xdb,0xc9,0x1a,0xbc,0xe9,0xe1,0xcf,0x5b, - 0x33,0x44,0x54,0x55,0xca,0xf6,0xbe,0xc, - 0x25,0xb7,0x45,0x8c,0xd1,0x11,0x23,0xed, - 0x2c,0x2f,0x53,0x87,0xa1,0xb4,0xb9,0x8b, - 0x28,0xa2,0xbb,0xb7,0xef,0xef,0xef,0x21, - 0x33,0xe,0x35,0xe0,0x91,0x9d,0x5b,0x16, - 0x10,0x2d,0x7c,0x54,0xe5,0x8a,0x2f,0x5e, - 0xef,0x7d,0xb2,0x73,0xd6,0x2d,0x7a,0x3e, - 0x4d,0xb3,0xf8,0x23,0x82,0x15,0x89,0xcb, - 0xe3,0xb6,0xa,0xd4,0x51,0x8d,0xf4,0xea, - 0x94,0x83,0xbf,0x6e,0x42,0x9e,0xcb,0x28, - 0xb9,0x88,0xa,0xa,0xe9,0xf5,0xb4,0xaf, - 0x42,0xd0,0xb2,0xc9,0xd4,0xcf,0xd4,0xd1, - 0x53,0x17,0xef,0x61,0x86,0x9d,0x9f,0x2a, - 0x32,0x2e,0x8c,0x2c,0x7e,0x4e,0xb3,0x8, - 0x7f,0xc1,0x32,0xc2,0x3b,0xe8,0xc7,0xd4, - 0xc0,0xea,0xe6,0xf1,0x15,0x7e,0xe2,0x6d, - 0x9e,0xe8,0x3d,0xcc,0xee,0x97,0x73,0xe7, - 0x31,0xcb,0xc8,0x1e,0x26,0xfc,0x2d,0xeb, - 0x8c,0x7b,0x76,0x6c,0x73,0x28,0xa0,0xfd, - 0x3,0x1e,0xe1,0x9f,0x6d,0x19,0xae,0x95, - 0x72,0xbd,0xc7,0x7c,0x70,0xfc,0xa1,0x5b, - 0xf8,0x4b,0x3f,0x18,0xce,0xd7,0x80,0x7e, - 0x40,0xd5,0x72,0xb1,0x81,0xa2,0xbf,0xdf, - 0xb,0xea,0xbb,0x69,0x3b,0xee,0xdb,0xa7, - 0x71,0x87,0x61,0x4a,0x77,0xe6,0xc5,0xf8, - 0xc8,0x83,0x92,0x36,0x48,0xb,0xcf,0x3f, - 0xa9,0xb4,0xb0,0x8d,0xfb,0x15,0xe3,0x96, - 0x6e,0x2,0x8c,0x3f,0xea,0xc9,0xf8,0x8c, - 0x2d,0x11,0x81,0x66,0xd1,0x83,0xb7,0xf0, - 0x15,0x3b,0x66,0x77,0x5f,0x2,0x4d,0xc3, - 0xa8,0xbc,0x68,0x3d,0x2a,0xf7,0xd6,0xef, - 0x3b,0xc,0xcd,0x2c,0xa,0xe3,0xd5,0xac, - 0x18,0x9b,0xbb,0x29,0xe5,0x34,0x52,0x63, - 0x68,0xb,0xce,0xf8,0x3e,0xff,0x3d,0x95, - 0xa0,0x59,0x70,0xc6,0x7d,0xd7,0x61,0x17, - 0x9b,0x87,0xf,0x7c,0x64,0xa5,0x52,0x2e, - 0xdc,0x40,0xd8,0xa9,0xca,0xf2,0xeb,0x10, - 0x4,0x37,0x20,0x44,0x75,0x81,0xd,0xe2, - 0xdd,0x67,0xb9,0xe9,0xb3,0xdc,0xe4,0x2a, - 0xee,0x1c,0x9f,0x5c,0x76,0xda,0xa6,0x2d, - 0x9f,0xe5,0xa7,0x5f,0x9a,0xfc,0xf4,0xb2, - 0x76,0xa7,0x7e,0xa1,0x6e,0xd5,0xf7,0xe4, - 0xf1,0x9a,0x24,0xe9,0x6a,0x49,0x15,0xd1, - 0xc2,0x85,0x52,0xdc,0x8c,0xd6,0x56,0x2b, - 0x7f,0x28,0x98,0x1e,0x14,0x61,0xdc,0xa2, - 0xab,0x2,0x26,0xef,0x38,0x38,0x78,0xc9, - 0x66,0xf5,0x98,0x2e,0xd,0x3c,0xa9,0xbf, - 0x30,0x70,0x48,0x4e,0xac,0xb7,0x3,0x9a, - 0x98,0x30,0xbb,0x44,0xb0,0x5d,0x90,0xd, - 0x62,0x9,0xb2,0x51,0x67,0xd4,0x40,0x33, - 0x3d,0x83,0xdd,0xd5,0xef,0x4d,0x36,0x8d, - 0x6e,0xa5,0x4d,0x43,0xc0,0xb7,0x54,0xa2, - 0x73,0xdd,0xe3,0x28,0xc9,0xa3,0x9b,0x56, - 0xe1,0x28,0x2,0x2b,0xcd,0x59,0xcd,0x1e, - 0x3a,0x80,0x8a,0xe0,0x8,0xd2,0x32,0x5b, - 0x71,0x2d,0x2a,0xf7,0x5d,0x37,0xd7,0x79, - 0x50,0xeb,0x7c,0xdb,0xe3,0x97,0x57,0x16, - 0x16,0x95,0x60,0x6d,0xb7,0x8e,0xac,0x37, - 0xf1,0x73,0xad,0xf3,0x64,0x2d,0x55,0xa9, - 0x98,0x70,0x70,0x20,0x4b,0xf,0x8d,0x3b, - 0xe7,0x84,0x3f,0xee,0xa7,0x40,0x4e,0x27, - 0xa0,0x36,0xf4,0xae,0xca,0x92,0x63,0x21, - 0xf1,0x71,0x5,0xe1,0xd0,0x9,0x30,0x14, - 0x8b,0x90,0xf3,0xd4,0x4b,0xb5,0x5c,0xc5, - 0x13,0xd6,0x2d,0x70,0x56,0x90,0x14,0x5d, - 0x87,0x39,0xe8,0xa1,0xf4,0xa9,0x49,0x82, - 0x36,0x97,0x58,0x51,0xd3,0xc1,0xa0,0xb6, - 0xaa,0xa,0x61,0x54,0xa9,0x4a,0x3c,0x32, - 0x24,0xcf,0x4f,0x2d,0xa1,0x53,0x52,0x5f, - 0x57,0x93,0x9a,0xad,0x34,0xda,0x75,0x95, - 0xa0,0x8d,0x74,0xdc,0x5,0x41,0x36,0xba, - 0xcd,0x6a,0xe3,0x8b,0xad,0xee,0x7c,0xc7, - 0x95,0xdd,0xf3,0x94,0x76,0x8d,0xdd,0x89, - 0xf8,0x8b,0x8d,0xc7,0xf9,0x29,0xfb,0xb0, - 0xa9,0x1e,0x60,0xde,0xbd,0xd2,0x5a,0x97, - 0x50,0xbd,0x32,0x1f,0x42,0xad,0xc8,0x7b, - 0x15,0x9e,0x18,0xf,0xa6,0x4c,0xb4,0x6c, - 0xc1,0x86,0x2a,0x4,0x6c,0x39,0x8a,0x6a, - 0x62,0xf8,0xbb,0x5a,0x5c,0x18,0xd9,0xc5, - 0xef,0xec,0x4,0x4d,0xb6,0x6a,0x96,0xf3, - 0x3b,0x95,0x7e,0xba,0x7a,0xcd,0x52,0x1b, - 0x68,0x51,0x25,0x6,0x6f,0xaf,0xf6,0xed, - 0xd5,0xcb,0x55,0xd4,0x88,0x36,0x25,0x6f, - 0xa7,0xf3,0xd4,0x12,0xd1,0xee,0x4f,0x29, - 0xab,0xde,0x8a,0x80,0xf6,0x8a,0x45,0xba, - 0xa6,0x1a,0x2b,0xe9,0x67,0x2f,0xb6,0x48, - 0xd9,0x58,0x70,0x2b,0xb5,0x4c,0xa1,0x4d, - 0x7b,0xd,0xcd,0xb6,0xde,0xed,0xe7,0x4f, - 0xb6,0xb8,0xf6,0x49,0xe5,0x42,0x56,0x7d, - 0x6f,0xba,0x9c,0x25,0x75,0x6e,0x9a,0xbb, - 0xd6,0x58,0xac,0x3e,0x71,0x47,0xa6,0x17, - 0x9a,0xcd,0x4a,0xbe,0x73,0x3c,0x58,0x8d, - 0x36,0xc7,0x43,0xb2,0xd,0xbc,0xd,0xee, - 0x61,0xda,0xc6,0x55,0xae,0xd6,0x8c,0xc0, - 0xce,0xf0,0x69,0x57,0x8b,0x87,0x61,0xe8, - 0x9a,0x5c,0x51,0x70,0x44,0x23,0x9a,0x9c, - 0xed,0xaa,0x72,0x76,0x1b,0x21,0x27,0x70, - 0xf3,0xd,0xe5,0x2d,0xee,0x0,0x6c,0xe1, - 0xb6,0x5b,0xdb,0x47,0x7d,0xe0,0x5f,0x15, - 0xed,0x7a,0x4,0x8e,0x7e,0xe6,0xe4,0x68, - 0xe5,0x0,0x58,0x71,0x9a,0xb3,0xc5,0x40, - 0x4b,0x5f,0x65,0xf3,0x26,0x79,0x2b,0xa9, - 0xc4,0x2e,0xd8,0xa8,0xd6,0xaa,0x55,0x7c, - 0xa3,0x5c,0x7f,0xdc,0xa8,0xc5,0xf2,0x28, - 0x8a,0x8a,0xee,0xda,0xe0,0x3,0x7c,0xdc, - 0x78,0x28,0x93,0x1d,0x26,0x2c,0x2a,0xd4, - 0x36,0x2a,0xca,0x9d,0x59,0x74,0x32,0x11, - 0x9b,0x4c,0x6d,0xd8,0x48,0xff,0x49,0x6f, - 0xf,0x35,0x9a,0xae,0xde,0xee,0x1c,0xd8, - 0xcf,0x6d,0x16,0xea,0xac,0xea,0xc5,0x5f, - 0x14,0xd4,0xf2,0xc6,0xf1,0x46,0xed,0xd7, - 0x42,0x75,0xb7,0x75,0xdc,0xb2,0x16,0x3e, - 0x7c,0x78,0xec,0xc5,0x1f,0xd,0x6a,0xf4, - 0x29,0xc5,0x6d,0xaf,0x88,0x71,0xa9,0x11, - 0x7c,0x86,0x7,0x45,0xd8,0xbd,0xac,0xda, - 0x73,0x7a,0x2,0x82,0x9d,0xdc,0x68,0xe5, - 0x86,0x47,0xaa,0xf2,0xb7,0xf7,0xbf,0x23, - 0xe5,0x1d,0x97,0x95,0x52,0x1,0x4b,0xfe, - 0xf4,0xf3,0x2a,0xca,0xae,0x57,0x71,0xdd, - 0x56,0xb5,0xe1,0x4a,0xd4,0xe7,0x22,0x28, - 0x92,0x9c,0xbd,0xba,0xde,0x8b,0xf2,0x49, - 0x30,0x7c,0x9f,0xe3,0x35,0x9f,0xf8,0x7e, - 0xd0,0x55,0xd7,0x7e,0xed,0xe5,0xea,0x2d, - 0xc3,0x77,0xac,0x62,0x8c,0xfb,0xb6,0x8c, - 0x7a,0xca,0x69,0x95,0x46,0x9f,0xb1,0xaa, - 0xbb,0xd7,0x2b,0x3a,0x5c,0xae,0xf2,0x32, - 0xe,0xa1,0x24,0xa9,0x2,0x77,0x77,0xce, - 0x89,0x5b,0xb1,0xda,0x97,0x2a,0xab,0xad, - 0xe2,0xdd,0x1b,0x4b,0x0,0x90,0x5c,0x49, - 0x65,0x3b,0xd9,0x51,0x6a,0x5b,0xeb,0x3, - 0x2,0x4d,0x60,0x6b,0xc9,0xf0,0xb,0xaf, - 0x4a,0x81,0x3d,0xb4,0xb0,0xca,0xac,0xe2, - 0xe2,0xbe,0x62,0x8c,0xd5,0xaa,0xc6,0x4a, - 0x96,0x3b,0xff,0x11,0x5e,0x79,0xec,0x76, - 0x87,0xa5,0x17,0xcf,0xe9,0x35,0xd3,0xaf, - 0xe8,0x6b,0x1e,0x62,0x78,0xbb,0x13,0x4, - 0xa6,0x53,0x6f,0xbd,0xdc,0x64,0x93,0x83, - 0xac,0x17,0x7c,0xdd,0x7,0x0,0xf,0x53, - 0x98,0x61,0xf0,0xb0,0x56,0x5d,0x5b,0xc8, - 0x91,0xfe,0x17,0x1b,0xf8,0x6e,0x56,0x42, - 0x11,0xc,0x58,0x6d,0xe1,0xfb,0x50,0x29, - 0xf3,0x56,0x13,0x64,0xc3,0x38,0x2d,0xc2, - 0x25,0xb7,0xec,0x4d,0x2c,0x69,0x1,0x1b, - 0xaa,0x5c,0xda,0xec,0x3b,0xe3,0x2c,0x22, - 0xec,0x2a,0x7d,0x14,0xa4,0x19,0x5e,0x8d, - 0xca,0x7c,0x74,0xfd,0xa7,0x4f,0x9f,0x10, - 0x4b,0x78,0x17,0x59,0x64,0x8f,0x86,0x72, - 0x4e,0xe7,0xc9,0x35,0x65,0x4c,0xf5,0xc9, - 0x16,0x59,0x3c,0x43,0x53,0xd,0xad,0x47, - 0x7b,0x62,0x89,0xa2,0x32,0xf4,0x6b,0xeb, - 0x45,0xba,0x99,0x65,0xec,0xb6,0xfe,0xa6, - 0xca,0x59,0xa7,0x1b,0xe,0x8c,0xea,0x4b, - 0x26,0xaa,0x2f,0x92,0x1e,0x7,0xd5,0x26, - 0xc4,0xed,0x6d,0x70,0x7b,0xeb,0xf6,0x6d, - 0xc7,0x35,0x8d,0x5d,0x88,0x41,0x5f,0x1e, - 0x8b,0x34,0x93,0x8b,0x39,0x84,0x72,0x8a, - 0x85,0x17,0x11,0x53,0xe2,0xd9,0xdd,0x8c, - 0x9,0x60,0xc6,0xf8,0x27,0x1d,0xd2,0x6e, - 0xc6,0x4,0x77,0x18,0x31,0xd3,0xb0,0xd3, - 0x1d,0x6,0xb5,0xf5,0xda,0x66,0xcc,0x6e, - 0xeb,0x27,0x3b,0x9c,0x31,0x9b,0x4e,0x15, - 0xff,0xf6,0x36,0x64,0x53,0x85,0x98,0x53, - 0x85,0xd8,0xa7,0x4a,0xd8,0xbd,0xbf,0x3, - 0x5c,0x65,0x9,0xa2,0x3c,0x53,0x4a,0xaa, - 0xeb,0x1,0x86,0x2f,0xef,0x3f,0x57,0xf7, - 0x7c,0x5d,0xcf,0x39,0x14,0x31,0x7f,0x5a, - 0xdf,0x7d,0xa1,0x5d,0x2a,0x97,0x3f,0xd6, - 0x83,0x8b,0x9b,0x84,0x93,0xce,0x4f,0x3a, - 0x3b,0x89,0x89,0x63,0xa8,0x5f,0x55,0x42, - 0x67,0x61,0xe7,0x6c,0xba,0xfa,0xee,0x81, - 0xe2,0x42,0xe7,0x3b,0x8c,0x9,0xdd,0xdd, - 0x4,0x38,0x16,0x30,0x61,0x31,0xb5,0xa7, - 0x54,0x18,0x96,0xe8,0x67,0xa3,0xdc,0xfe, - 0x8,0xfc,0x55,0x8c,0xc5,0x59,0xd9,0x3, - 0xa5,0xb3,0xbb,0xe9,0x44,0x4b,0x7,0x17, - 0x7b,0xac,0x44,0x92,0x45,0x3e,0xbc,0xce, - 0xef,0x3,0x8c,0xdc,0x1,0x7e,0xb8,0x3d, - 0xb8,0x77,0x37,0xd8,0x6c,0x57,0x1a,0xd9, - 0xe6,0x58,0x55,0xb,0xa8,0xe9,0xb1,0x3, - 0x4a,0x9f,0x31,0xa1,0x5f,0x33,0x26,0x34, - 0x83,0x52,0xb3,0x18,0x94,0x4e,0x50,0xf5, - 0xaa,0x98,0xc6,0x36,0xbe,0xde,0xb6,0xd3, - 0x98,0xb9,0x74,0xf9,0xae,0x5f,0x8b,0x6, - 0x82,0xae,0x2f,0xc6,0x5a,0x45,0x58,0x18, - 0xab,0x6b,0x25,0xc6,0x3a,0xcd,0x11,0x4f, - 0xb5,0x96,0xb6,0x1,0x7e,0x97,0xaa,0xe, - 0x7a,0xf0,0x80,0x12,0x88,0x30,0x8,0x33, - 0xfa,0x6,0x7,0xc8,0x2f,0xc9,0x45,0x94, - 0xf7,0xa2,0xf1,0x38,0xa,0x50,0xe2,0x63, - 0x3f,0x13,0x7e,0x46,0x8c,0xc5,0xd5,0xd, - 0x4b,0x9a,0xf8,0xa0,0xff,0x5,0xbb,0x7c, - 0x26,0x34,0xee,0xac,0x3e,0xd4,0xa2,0x82, - 0x6a,0x8,0x88,0x25,0x5e,0xa8,0x62,0x10, - 0xe,0x4d,0xc9,0x72,0xe0,0xc,0xfa,0xbc, - 0x8e,0xb6,0x48,0x8d,0x37,0xe6,0x18,0xcc, - 0x31,0xb0,0xb3,0xb1,0x11,0xf6,0x74,0x4c, - 0x99,0x5c,0x54,0x1f,0x70,0x90,0x15,0x34, - 0x69,0x12,0xf4,0x55,0x4e,0xa3,0xe8,0x65, - 0x5e,0x49,0x47,0xd3,0x17,0xd1,0x18,0x9d, - 0xc0,0xfc,0x7e,0x6c,0xbb,0xb,0xcb,0x12, - 0x71,0x55,0x7d,0x0,0x5c,0xe,0xf9,0xae, - 0x63,0xba,0xcb,0x49,0x2d,0x55,0x9c,0xba, - 0xb5,0xc3,0x55,0xde,0x18,0x6f,0xf5,0x6, - 0xb1,0x20,0x5b,0xe6,0xff,0x88,0x97,0x53, - 0xe8,0x9,0xb5,0x85,0xba,0xdd,0xdb,0xdb, - 0xc8,0x7e,0x68,0x58,0x1c,0x52,0xa6,0x74, - 0xa4,0x37,0x21,0x21,0x11,0xe9,0xa4,0x34, - 0xae,0x29,0xd7,0xee,0x79,0xaa,0x9,0x99, - 0x41,0x47,0xda,0x19,0x38,0xa8,0x12,0x20, - 0xac,0xe5,0x5b,0xd0,0x30,0x97,0x87,0x75, - 0xad,0xbe,0xd2,0xe8,0x9f,0x9d,0x1e,0x86, - 0x9e,0xed,0x3a,0x79,0x40,0x92,0xa8,0x33, - 0xe8,0xbf,0xea,0x4a,0xdd,0xe3,0xd4,0xed, - 0x5d,0x46,0xfe,0x87,0x78,0xd9,0x93,0x39, - 0xf1,0xfe,0xa4,0x6d,0xf3,0xf6,0xd2,0x2c, - 0x86,0x76,0x63,0x11,0x3,0x6c,0xb0,0x4c, - 0x59,0x95,0xa2,0xdb,0xbd,0x13,0x56,0x57, - 0x7f,0x97,0x25,0xb0,0xdb,0xeb,0x22,0x66, - 0xab,0x25,0xf8,0x7,0x8f,0x5d,0x53,0x15, - 0xcd,0x75,0x83,0x86,0x4c,0x5f,0xc8,0x76, - 0xb8,0x18,0x7a,0x69,0x3e,0x51,0x1d,0xc1, - 0xc,0x0,0x6c,0xe8,0x97,0xa2,0xfd,0xb6, - 0x95,0x91,0x5a,0x2a,0xaa,0x46,0x2c,0x20, - 0x25,0x8a,0xec,0xbd,0xc5,0xe6,0xed,0x19, - 0x91,0xea,0x76,0x1b,0xe3,0xb5,0x8,0x67, - 0x65,0xb9,0xd0,0xa8,0xba,0xb7,0xb4,0x15, - 0x6f,0xd3,0xcb,0xd,0xf6,0x99,0x65,0xe6, - 0x76,0x75,0xdb,0xc6,0x26,0x99,0x51,0xd7, - 0x50,0xf3,0x7f,0x9d,0xaa,0x8a,0x7b,0x73, - 0x7e,0x1a,0xd9,0xb8,0xdb,0xd2,0xb6,0x52, - 0xdd,0x8a,0x9a,0x20,0x38,0x4d,0xc6,0x93, - 0xca,0x42,0x43,0xb7,0x2c,0x4c,0x57,0x4d, - 0xd3,0x53,0xcd,0x27,0x14,0x98,0xa1,0x93, - 0x1f,0xba,0xaf,0xf7,0xbc,0x3d,0xc7,0x71, - 0x4a,0xce,0x8a,0xdc,0x71,0x93,0x71,0xc7, - 0xa1,0x83,0x31,0x7a,0xa5,0x27,0xfb,0x32, - 0x5d,0xc,0x61,0x5b,0x7b,0x75,0x8,0x2c, - 0xf3,0xd8,0xe9,0xcd,0xf2,0x1e,0x8d,0x9b, - 0x1a,0xc6,0x59,0x44,0x6b,0x1c,0xf2,0x43, - 0xe4,0xf0,0x8e,0xf3,0xa2,0xaa,0xf7,0x55, - 0xcf,0xb9,0xd0,0x39,0xd4,0xa,0x50,0x1e, - 0xd3,0x9f,0xd8,0x76,0x17,0xdb,0x8e,0x2e, - 0x94,0x30,0x9,0x45,0xc,0xd1,0x72,0x37, - 0xf,0x6,0x34,0xed,0x97,0xf4,0xfd,0x59, - 0xff,0xa7,0x34,0x9e,0x77,0xdc,0xf7,0x28, - 0x13,0x6c,0xcb,0xc5,0xf0,0xa8,0x96,0xa7, - 0x2f,0xb1,0x12,0xcb,0xda,0x41,0x68,0x57, - 0xc3,0xab,0xa6,0xc1,0x24,0x10,0xd7,0x34, - 0x98,0xc5,0xd5,0xe4,0xc,0x77,0xe4,0x2b, - 0xd6,0x6b,0x6,0xe,0x2d,0x16,0xc9,0x35, - 0x35,0x99,0xe4,0x1d,0xdf,0xbb,0xa1,0xdb, - 0xdf,0x90,0x6f,0x7f,0x38,0x57,0xa9,0x93, - 0xc1,0x90,0x9,0x6e,0x5e,0x21,0xf,0xd, - 0xb9,0x3c,0x34,0xd5,0x7e,0x9,0x1,0x6b, - 0xc8,0xa3,0xab,0x7,0xab,0x2c,0x7,0x35, - 0xc4,0x5d,0x0,0xdd,0x31,0xf8,0xca,0xba, - 0xeb,0xd9,0x98,0x6d,0x1d,0x20,0x22,0x6c, - 0xef,0x35,0xcd,0x26,0xf7,0xdd,0x6c,0x8f, - 0xca,0xf,0x43,0x76,0x8f,0xe2,0xe1,0xd1, - 0x2b,0xef,0xe0,0x60,0x0,0xff,0x5e,0x78, - 0x7,0xb0,0xfd,0xd2,0xbd,0x94,0x6,0x85, - 0x1f,0x8a,0x9b,0xf,0x69,0x72,0xa7,0xff, - 0x22,0x77,0x22,0x92,0xa3,0xd6,0xc1,0x9c, - 0x5f,0x58,0x95,0x47,0x85,0x7b,0xc5,0xf3, - 0x43,0xfc,0xf,0xa8,0xd2,0x4,0xa8,0x3c, - 0x6a,0x22,0x80,0x2c,0xdd,0xa5,0x7d,0xd8, - 0xfe,0x5c,0x9b,0xd5,0x8b,0xb3,0x81,0x39, - 0xd3,0x65,0x5a,0xf,0xa,0x50,0x25,0xdf, - 0xb,0xb5,0xb0,0x4c,0xc7,0xa1,0x88,0x44, - 0x67,0x6a,0xcb,0xd4,0xdb,0xb6,0x29,0xe, - 0xb5,0xf5,0x4c,0x86,0x88,0xe5,0xd,0xfb, - 0xa0,0x10,0x70,0x2,0x1d,0x8d,0xf4,0xcc, - 0xd8,0xfc,0x4d,0xda,0x3a,0x5d,0xf0,0x5e, - 0x20,0x9b,0xce,0xdb,0x81,0x8a,0x1,0xe8, - 0x56,0xfe,0x28,0xa8,0xf,0x2f,0xc5,0x9b, - 0x51,0x77,0xa7,0x75,0xa0,0x1d,0x64,0xa0, - 0x37,0x57,0xaf,0x5,0xeb,0xa2,0xbb,0x74, - 0xb9,0x51,0xa2,0xcd,0x75,0x29,0x76,0x75, - 0x83,0x88,0xf,0x8c,0x36,0x87,0xb5,0x54, - 0x5c,0xcf,0xe8,0xef,0xfa,0xa2,0x8d,0x6a, - 0xb7,0xa6,0xf2,0x65,0x11,0x99,0x6a,0x21, - 0xc0,0xe7,0xdf,0xd1,0x2b,0x5a,0x47,0xee, - 0x2c,0x9d,0xa7,0xe8,0x89,0x21,0x1d,0xb0, - 0xbe,0xe1,0x3a,0x5b,0x35,0x24,0xa6,0x7, - 0xf5,0x53,0xef,0xad,0x28,0xda,0x16,0x73, - 0x1d,0x98,0x75,0xe3,0xef,0xab,0x38,0xec, - 0x8,0x59,0xee,0x4d,0x1a,0x92,0xfb,0x90, - 0x15,0x3d,0xf7,0x23,0x50,0x7b,0xb1,0x9c, - 0xf6,0x8e,0x6c,0x96,0x12,0x8d,0x32,0xb6, - 0x1b,0x57,0xc5,0xbb,0x8f,0x28,0xd4,0x5e, - 0xa1,0xe4,0x67,0xf1,0xa3,0x90,0xa1,0xfd, - 0x8b,0x8e,0x95,0xd7,0xbc,0x7b,0xc5,0xff, - 0xd7,0xa3,0x1f,0xcf,0xf1,0xe3,0x5a,0xfc, - 0x14,0xff,0x73,0x8b,0xe3,0xe9,0xa7,0x57, - 0xd7,0x67,0xcf,0x26,0x5e,0x79,0xae,0x1d, - 0xbc,0xfc,0xfd,0x1b,0xb2,0x9c,0xf6,0x81, - 0x45,0x87,0xe9,0xac,0xd3,0xbd,0x45,0x70, - 0xca,0x45,0x75,0x1a,0xb4,0x80,0xe1,0xd1, - 0x53,0xff,0xf6,0x55,0x1,0x44,0x2d,0xd3, - 0x77,0x54,0x55,0xe8,0x1c,0xbc,0xec,0xae, - 0x39,0xc6,0x23,0x50,0x9c,0xef,0x83,0x74, - 0xfe,0x43,0x8c,0xcb,0x4e,0x20,0x39,0x33, - 0x58,0xcf,0x78,0x56,0xfa,0x6,0xd8,0x62, - 0x42,0x16,0x39,0xf0,0x4d,0xd7,0x8b,0xae, - 0x80,0x94,0x21,0x7e,0x73,0x99,0xc1,0xc0, - 0xa5,0x4f,0x41,0x87,0xc0,0xbf,0x40,0x49, - 0xfc,0x13,0x90,0x79,0x0,0xc2,0x3e,0x7c, - 0xcb,0xc9,0x5,0xcd,0x86,0x6b,0x6a,0xb5, - 0x10,0xdf,0x42,0xc4,0xa2,0x10,0x64,0x47, - 0xdb,0xdf,0xf9,0x22,0x8b,0xc6,0xf1,0x15, - 0xbe,0x43,0x75,0x1,0x9e,0xd0,0xa5,0x6e, - 0xe3,0xab,0x74,0xbe,0xf0,0x66,0x9d,0x92, - 0xb3,0x13,0xfa,0x5b,0x29,0x63,0xdf,0x48, - 0x30,0x9c,0xaf,0x92,0x64,0x2d,0x8a,0xad, - 0x71,0x5c,0x91,0xb5,0xe2,0x7a,0x45,0x53, - 0x97,0x2f,0x42,0x8d,0x61,0x9,0xd,0xd7, - 0x1c,0xc7,0x95,0x87,0x6a,0xd8,0xf6,0xd5, - 0x51,0x9e,0xa2,0x94,0xb2,0x48,0x62,0xc8, - 0xe5,0xa0,0x2a,0x1a,0x18,0x38,0x1b,0xf6, - 0x25,0x89,0x7d,0xe5,0x22,0xa3,0xc3,0x51, - 0x69,0x88,0xea,0x6,0x8,0x16,0xda,0x45, - 0x96,0xce,0x7b,0x48,0xe1,0x62,0xb0,0xc4, - 0x53,0x7a,0x6a,0x52,0xe,0x1b,0x94,0x99, - 0x4f,0xc5,0xd8,0x1,0xe7,0xe,0xe2,0x84, - 0x8f,0xe0,0x22,0x59,0xe5,0xc5,0x28,0xfa, - 0x64,0xde,0xb,0xe2,0x2c,0x40,0xeb,0x26, - 0x1b,0xcf,0xf4,0x43,0x31,0xa2,0x4,0x38, - 0xe4,0x25,0x2d,0xb9,0x18,0x59,0xf6,0x8c, - 0xb5,0x1,0xb2,0x11,0xdc,0x53,0x29,0x5b, - 0x95,0xe5,0x2c,0xe3,0x19,0x94,0x83,0x9f, - 0x58,0xf,0xf0,0xec,0x10,0x13,0x89,0x6f, - 0xe6,0xcc,0xa0,0x26,0x62,0xb7,0x89,0x54, - 0x47,0xbb,0x24,0x55,0xc6,0xe1,0x35,0x49, - 0x2d,0xd6,0x81,0x16,0xe4,0x1a,0x27,0xe9, - 0x62,0x71,0xdd,0x13,0xe9,0x19,0xc5,0xf8, - 0x43,0xfc,0x11,0x3e,0x2c,0xed,0xe4,0xcd, - 0xe0,0x4e,0x71,0x47,0x78,0x15,0x29,0x91, - 0xeb,0x93,0xcb,0x28,0x4f,0x67,0xd1,0x23, - 0x21,0x66,0x79,0xee,0xe1,0xe7,0x23,0x9a, - 0x7d,0xa,0xc9,0x9e,0x6f,0x48,0x32,0xd8, - 0xac,0x97,0xbd,0xfc,0xe7,0x15,0xfc,0xed, - 0xa5,0x26,0xe5,0xf4,0x97,0x25,0x2,0x62, - 0xdb,0xf3,0x76,0xf4,0xdb,0x92,0x70,0xe9, - 0xe2,0x1a,0xa6,0x6d,0xc,0x82,0x77,0x2f, - 0x95,0x74,0xa4,0xd5,0x72,0x32,0xe2,0x63, - 0x46,0xc8,0x0,0xad,0x4e,0x34,0x55,0x23, - 0x2d,0xc7,0xc4,0x19,0x93,0x36,0xc4,0x7c, - 0xb1,0xd,0x31,0x6d,0x34,0x6c,0x24,0xdd, - 0x7d,0xd0,0xd,0x3f,0xad,0x44,0xd3,0x48, - 0xd6,0x8e,0x60,0x79,0x3d,0xc5,0x44,0x78, - 0x80,0xd,0x37,0x8a,0x59,0x3c,0xc7,0xfe, - 0xa,0x5a,0xb1,0xde,0x57,0x2d,0x50,0xfc, - 0xe4,0x64,0x82,0xf,0xe8,0x69,0x50,0x50, - 0x8a,0x1f,0x9c,0x66,0xb4,0xa2,0x72,0x1e, - 0x2a,0x7a,0x5,0xc1,0x56,0x8b,0x1e,0xa5, - 0x8f,0x4a,0x30,0xfc,0x14,0x4f,0xb5,0x15, - 0xba,0x39,0x79,0xb0,0xff,0xd,0xb,0x54, - 0xd,0x66,0xb9,0x3b,0xa,0x5d,0xd9,0x57, - 0x1f,0x99,0x44,0x3d,0x82,0x47,0x48,0x4, - 0x7d,0xae,0x76,0xc1,0xbf,0xae,0xb6,0x9e, - 0x3e,0x71,0x25,0x61,0x2c,0xe,0xde,0x2d, - 0xa8,0x2,0xf2,0x23,0x99,0x4f,0x60,0xf5, - 0x1f,0xf4,0x14,0xe2,0x28,0x4f,0xa3,0xf6, - 0x22,0x6,0x48,0x5f,0xac,0x17,0x8c,0x52, - 0xd4,0x4a,0xcd,0x9f,0x31,0x5a,0x81,0x4c, - 0x6d,0x4a,0x1a,0xf4,0x3d,0x54,0x33,0x2f, - 0x51,0x4c,0xbc,0xc9,0x25,0xd5,0x38,0x9f, - 0xa2,0xe5,0x6e,0xca,0xf4,0xb9,0x63,0x9a, - 0x23,0x1c,0xd4,0xaa,0xa8,0x28,0x4d,0xa2, - 0xf0,0x20,0xdf,0x8c,0x94,0xb4,0xd5,0xe7, - 0x61,0x96,0x2e,0xce,0x71,0x2,0x8,0x5a, - 0x2a,0x8f,0xd9,0x1c,0x28,0xc8,0xc9,0xbf, - 0x58,0x57,0xa5,0x42,0x47,0xfa,0xb7,0x66, - 0xbe,0x41,0x75,0x97,0xf4,0x72,0x3b,0x83, - 0x82,0xb4,0x3e,0xf6,0x46,0xb0,0x31,0xaa, - 0xdc,0x9f,0x6b,0xec,0x6c,0xa,0xc,0x95, - 0x1a,0x1f,0xcf,0xd3,0xf1,0x58,0x90,0x95, - 0x4,0x41,0x94,0xe7,0xe7,0x55,0xd4,0x3d, - 0x5f,0x82,0x46,0x7,0x45,0xac,0x16,0x49, - 0x4a,0x42,0x3a,0xd4,0xab,0xf0,0x9c,0xfd, - 0x12,0x94,0xa7,0x32,0x32,0x2c,0x3b,0x4e, - 0x50,0x4a,0x76,0x18,0xcb,0x6d,0x54,0x84, - 0xa2,0xbc,0x46,0xe1,0xbf,0x50,0x16,0xb6, - 0x92,0xfb,0x4d,0xb4,0xc4,0xa8,0xbe,0xe2, - 0xcc,0xb4,0xe2,0xd3,0x50,0x68,0xe,0xa5, - 0x43,0xd0,0x86,0x9,0x3e,0x9a,0x2d,0xd0, - 0x40,0x96,0x9f,0xba,0x2,0x30,0x38,0x1b, - 0x95,0xf4,0xca,0x1b,0xbc,0x70,0x20,0x4e, - 0x22,0x4b,0x77,0xd1,0x48,0xb3,0xc,0xa6, - 0x9d,0x67,0x37,0x37,0xef,0xf3,0xdf,0x77, - 0x4e,0x49,0xef,0xe3,0x57,0xbd,0x7f,0xd, - 0x7a,0x7f,0x78,0xdf,0x3b,0x77,0xde,0xf7, - 0xcf,0xf6,0xbb,0xf0,0x78,0xbd,0x7e,0x36, - 0x41,0x8c,0xc8,0xc7,0x1b,0x30,0x39,0x94, - 0x82,0x74,0x9,0x4,0x5d,0xca,0xe8,0x15, - 0x59,0x2b,0x18,0xcc,0xe9,0x99,0x17,0x8d, - 0xcc,0xba,0x3,0x78,0xe6,0x3,0x85,0x15, - 0x75,0xf6,0x66,0x7d,0xb6,0xcf,0x42,0xad, - 0xf5,0x81,0x77,0x80,0xde,0x2a,0xd4,0xa2, - 0x3e,0xda,0x33,0x47,0x91,0x52,0xf7,0xf8, - 0xf5,0x1,0xb7,0xf9,0x1e,0x7,0x45,0xd1, - 0x7e,0xf7,0x6,0x6b,0x9d,0x8c,0x7c,0x8f, - 0x8c,0x6,0xc7,0xe4,0x4b,0xb4,0x7b,0x4e, - 0x46,0x93,0xd3,0x8,0x2a,0x3a,0xf3,0x26, - 0xdd,0x63,0xb2,0xbf,0x2f,0xa9,0x3b,0x59, - 0x73,0xdb,0xec,0x28,0x3a,0x1d,0x9c,0x79, - 0xc1,0xc8,0x6,0xda,0x9d,0x46,0x67,0xeb, - 0xe3,0xb0,0xbf,0x58,0xe5,0xd3,0xce,0x4d, - 0x3e,0xc4,0x16,0x7b,0xd9,0x30,0x40,0xdc, - 0x6f,0xc,0x55,0x8c,0xbf,0xc,0x8e,0xc7, - 0x50,0x66,0xd4,0x19,0xcb,0x72,0xd5,0xe6, - 0x30,0xfb,0xf6,0x64,0x44,0xf6,0x5d,0x97, - 0x52,0x44,0xcb,0x34,0xa,0x4f,0xc7,0xd0, - 0xac,0xd1,0x44,0x12,0x21,0xea,0xe7,0x5e, - 0xd4,0xcf,0xd0,0xaf,0x45,0x69,0xe6,0x7a, - 0x6d,0x1d,0xf4,0x7e,0xf4,0x53,0x5e,0x1e, - 0xed,0x27,0x4f,0x2e,0x63,0x50,0xfb,0x2f, - 0xfb,0xdf,0xfe,0xf9,0xdd,0xd3,0xa7,0x35, - 0x63,0x3f,0x8f,0x2e,0x9d,0x22,0x69,0xe7, - 0x6,0xb1,0xa2,0x21,0x59,0x97,0xfb,0x51, - 0x90,0x3,0x2f,0x6f,0x99,0x87,0x14,0xc1, - 0xaa,0x6e,0xd5,0x14,0x38,0x56,0x12,0xf9, - 0x24,0xb3,0x34,0x4e,0x54,0xf8,0x27,0x99, - 0xa6,0xaa,0x90,0x74,0x42,0xe6,0x35,0x9d, - 0xfb,0x13,0xbe,0xaf,0xed,0x9e,0x9a,0xb0, - 0xcf,0x93,0x29,0xc8,0xdb,0xb6,0xbd,0x4b, - 0x80,0x69,0xe5,0xd3,0x9a,0x96,0x9d,0x57, - 0xb4,0xca,0x32,0x3b,0x74,0x9a,0x9c,0xcb, - 0x5a,0x20,0x39,0x8d,0xc,0x55,0xd5,0x6, - 0x14,0xa6,0x56,0xb,0x4b,0x1b,0x3a,0xa2, - 0x11,0x6f,0x20,0xc5,0xed,0xad,0xfa,0xab, - 0xbf,0x5a,0x74,0xb7,0x6d,0x19,0xcf,0xcf, - 0x7d,0x68,0x2b,0x5b,0x5,0x9b,0x37,0x1, - 0x61,0xaf,0x86,0x36,0x6f,0x78,0x92,0xad, - 0x1b,0xc2,0xf3,0xcb,0x81,0xaa,0x6d,0x50, - 0x7e,0x19,0x4f,0xaa,0xa7,0x20,0xbe,0xad, - 0xc8,0x88,0x7e,0x97,0x59,0x1e,0xa4,0x99, - 0xd6,0x97,0xdf,0xdc,0xc7,0x40,0xdb,0x3a, - 0x80,0xae,0x53,0x23,0x17,0x8f,0x84,0xbb, - 0xb6,0xf6,0x8d,0x24,0xaf,0x57,0xdf,0xa6, - 0xd4,0x6b,0x21,0x1f,0xdd,0xac,0x2d,0x4f, - 0xfb,0x8b,0xc,0x1a,0xba,0x3c,0xf7,0x69, - 0xd0,0x93,0x73,0x26,0x32,0x8c,0x9e,0xc, - 0x6c,0x49,0xd9,0x6,0x3c,0x32,0xfd,0x9a, - 0x70,0xe3,0x4d,0xd1,0x37,0x28,0x9d,0x74, - 0xdc,0xbf,0xd3,0x34,0xe,0x5b,0xe9,0x99, - 0x93,0x45,0x3f,0xaf,0xe2,0x2c,0xa,0x1d, - 0x28,0xdd,0x61,0xf9,0x9d,0x88,0x7a,0x10, - 0xa0,0xa9,0x42,0xed,0x82,0xf0,0xe8,0x18, - 0xd9,0xa2,0x90,0x28,0x9,0x13,0x90,0x1c, - 0x57,0x20,0x36,0xe7,0xa7,0x96,0x87,0x67, - 0x7c,0xf7,0x59,0x4e,0x51,0x59,0xe0,0x6e, - 0x6c,0x8e,0x78,0xeb,0xb8,0xfb,0x96,0x3c, - 0x7c,0xcf,0xd,0x80,0x7f,0xdf,0xde,0x36, - 0x55,0xc4,0xbf,0x9c,0xcb,0xa,0xb9,0x24, - 0x60,0xb,0xb0,0x13,0x1a,0xcd,0x90,0x5d, - 0x74,0x98,0x7,0x6,0x34,0x87,0x60,0x5e, - 0xbf,0x5b,0x77,0xbd,0xd3,0x28,0x94,0x5b, - 0x0,0xb2,0xe5,0xb7,0xd1,0xe4,0xdb,0xab, - 0x45,0xc7,0x7d,0xff,0xfe,0x6,0xfe,0xef, - 0xee,0x47,0xfb,0xee,0x7a,0xd,0x42,0x1f, - 0x7a,0x53,0x6a,0x97,0x3f,0x85,0x1a,0x79, - 0xcd,0x76,0x8f,0x5c,0xd4,0x64,0x2d,0xbd, - 0x1d,0xd5,0x64,0xb2,0xa5,0x87,0xad,0x66, - 0x3e,0xba,0xa1,0x5a,0xdd,0xf9,0x3c,0x5d, - 0x82,0x44,0x3e,0x74,0xff,0x6,0xc2,0x68, - 0x94,0x2d,0xaf,0x1d,0x5c,0xf7,0x8e,0xf, - 0xfd,0xc5,0x73,0x2b,0x32,0xd,0x4c,0xd6, - 0x25,0x48,0x8b,0xff,0x85,0xae,0x83,0x72, - 0x82,0x88,0xf7,0xd1,0x7c,0x35,0x13,0xef, - 0x44,0xf6,0x74,0xe,0xff,0xc6,0x20,0xab, - 0xc1,0x8e,0xc,0xaf,0xa3,0xc,0x68,0x18, - 0x3a,0xd4,0xf5,0x30,0x17,0xf9,0xc8,0xfc, - 0xfa,0xaf,0x63,0x2d,0x23,0xd,0x66,0x85, - 0xd4,0x26,0x13,0x12,0xcf,0xe1,0x1,0x59, - 0x3a,0x20,0x92,0xc2,0x17,0xa5,0x3c,0x98, - 0xfd,0x17,0x71,0x8,0xa5,0xe5,0xc0,0x3b, - 0x66,0x44,0x16,0x7,0x49,0x9a,0x8a,0x8b, - 0xae,0x40,0x6e,0x4f,0xae,0xeb,0x4a,0xeb, - 0x3b,0xdf,0x2f,0x9d,0x60,0x95,0xa1,0xbd, - 0xa,0x52,0x8a,0x22,0x72,0x59,0xc6,0xcd, - 0xcd,0x60,0xbd,0x16,0xb9,0x45,0x26,0x85, - 0x54,0x5a,0xb,0xe0,0x77,0xb9,0x15,0x96, - 0x6a,0x45,0x7e,0x9c,0x86,0xe7,0xab,0x39, - 0xb5,0xc3,0x56,0x12,0x54,0xe6,0xc5,0xd4, - 0xb9,0x9a,0xb5,0x94,0x69,0x4c,0xd3,0xb0, - 0x36,0x8b,0x84,0xa0,0x72,0x61,0x14,0xc0, - 0x4b,0x4b,0x3d,0xd8,0xdc,0x8a,0xba,0x44, - 0x2e,0xb3,0x5a,0xf1,0xdc,0x5a,0x8e,0xad, - 0xfa,0x19,0xcc,0xc5,0x78,0x91,0x98,0x63, - 0x5,0xc9,0x89,0x23,0xde,0x61,0x4e,0x3d, - 0x13,0xb9,0x8a,0x67,0xab,0xd9,0x79,0x74, - 0x15,0x24,0x66,0xb6,0x4,0xd4,0x12,0x68, - 0x2b,0x99,0xdb,0xb3,0xc4,0xf3,0x72,0x16, - 0x98,0x56,0xb3,0x54,0x8c,0xa5,0xcc,0x10, - 0xcf,0x2b,0xeb,0x98,0x50,0xa1,0x3e,0xb3, - 0x55,0xc3,0x73,0x55,0x54,0xc3,0x66,0xaf, - 0xd9,0xb0,0x1f,0x28,0xb3,0xa8,0x6d,0x95, - 0x13,0x4c,0x9,0x6a,0x99,0xb0,0x75,0x39, - 0x49,0x8a,0x27,0xa4,0x65,0x7d,0x95,0xb9, - 0x95,0xca,0xaa,0xb2,0x2f,0xc8,0x12,0x9e, - 0xe9,0xa3,0x4e,0x95,0x6,0x36,0xda,0xec, - 0xad,0xde,0x5e,0xb4,0x9d,0x21,0x73,0x27, - 0xc9,0xf7,0xc0,0x7,0x40,0x7f,0xfb,0x4b, - 0xea,0x14,0xcf,0x1c,0xbc,0x79,0x15,0x56, - 0x7,0x9f,0x1b,0x31,0xd3,0xcf,0x1c,0xd0, - 0x36,0x51,0x1b,0x94,0x3d,0xe6,0x59,0x95, - 0x5a,0xa7,0xa0,0xb5,0x1a,0x5d,0xa6,0x45, - 0x29,0x1d,0xad,0xce,0xa4,0xf6,0x54,0xcb, - 0x5,0x73,0xfa,0xe7,0x55,0xc4,0x33,0x7e, - 0x85,0x8d,0x50,0x32,0xb2,0x97,0x46,0x35, - 0xe4,0x8a,0xf3,0xbe,0x38,0x82,0x2c,0x7f, - 0xf5,0x7f,0x8a,0x82,0x65,0x65,0xb,0x17, - 0x32,0xa9,0xd2,0xcc,0xa6,0xfc,0x6a,0x63, - 0xcb,0x5,0x8,0x6e,0x2a,0xf3,0x2,0xf5, - 0x66,0x71,0x9e,0xe3,0x6e,0x83,0x63,0x22, - 0xb7,0xe3,0x85,0x60,0xd1,0x7b,0xb4,0xa8, - 0xbd,0xf2,0xf8,0x9c,0x2f,0x94,0x96,0xe8, - 0xa3,0x54,0xbc,0x11,0x43,0xe5,0x39,0xfe, - 0x6a,0x59,0x14,0xca,0x69,0x99,0xab,0x8c, - 0x3f,0xa4,0x97,0x1b,0x46,0xf3,0x0,0x58, - 0xff,0x1b,0xd9,0x23,0x3d,0x8b,0x4c,0xb, - 0xeb,0x63,0xe8,0xfe,0x11,0xf9,0x9c,0x98, - 0x91,0x74,0x2e,0x44,0x28,0x46,0xc0,0xc, - 0xd3,0x53,0x33,0x48,0xe1,0x47,0xf8,0x6c, - 0x93,0x1a,0xcb,0xc6,0x1c,0xe7,0x49,0x1a, - 0x90,0x84,0xd5,0xb2,0x6c,0x99,0x97,0x47, - 0x48,0x3c,0x8f,0x16,0x69,0x30,0x35,0x1a, - 0xa8,0xad,0xea,0x3,0xe7,0xcf,0x64,0xbe, - 0x22,0xd9,0xb5,0x73,0xf0,0x87,0x2f,0xd0, - 0x31,0x96,0x7a,0x84,0x73,0xe9,0xea,0x1c, - 0x88,0x6,0xf3,0x9,0x2f,0xf9,0x2a,0x3d, - 0x3f,0xa7,0xc7,0x2,0xa1,0x68,0x76,0xba, - 0xca,0x92,0x28,0x81,0xf1,0x1f,0xba,0x3f, - 0x28,0x9c,0xa0,0xfc,0xde,0x28,0xc5,0x92, - 0x18,0x46,0xf3,0x1c,0x21,0x1c,0x9e,0xf0, - 0xab,0x30,0x34,0x12,0x20,0xd6,0x43,0x1, - 0x1e,0x91,0xe4,0xd,0x3c,0x70,0x18,0xc2, - 0xa4,0x26,0x59,0x2d,0xb4,0x4,0x88,0x4c, - 0xe9,0xed,0x51,0x6a,0xe1,0xcd,0xb1,0x36, - 0x5b,0x26,0x3b,0xcf,0xa7,0x69,0xb6,0x14, - 0x89,0x65,0xb2,0x2,0x7,0xfb,0x86,0x7f, - 0x93,0xaf,0x4,0x12,0xf6,0x2d,0xfd,0xeb, - 0x7a,0x63,0x90,0xb1,0x16,0x71,0xf0,0x1, - 0x61,0x24,0xbc,0x4a,0xf9,0x9c,0xa5,0x83, - 0x29,0xc2,0x6f,0x56,0x2e,0x12,0x50,0x8c, - 0x4a,0xbe,0xff,0x6,0x7f,0xb9,0x28,0x37, - 0x2d,0x92,0xd5,0x24,0x46,0x91,0x19,0xc4, - 0xae,0xe1,0xd,0x15,0xbb,0xa9,0x1,0xfa, - 0x5d,0xc,0x82,0x76,0xf4,0xe6,0x8f,0xdf, - 0xe,0x41,0x98,0xce,0x3,0x26,0xc9,0xd2, - 0xef,0xd4,0xc3,0xe3,0xb0,0xf8,0x8a,0x7e, - 0x43,0x37,0x20,0xbd,0x8f,0x3b,0x8a,0xd0, - 0xc4,0xd2,0xe7,0x9e,0x2e,0xe2,0x96,0x13, - 0x20,0xf8,0x21,0xa4,0x76,0x5f,0x7c,0x43, - 0x2f,0x27,0x1d,0xe3,0xc9,0x22,0x90,0xbb, - 0x2f,0x80,0x2b,0x83,0x5a,0x92,0x4f,0xe3, - 0xf1,0xb2,0x63,0x1c,0xc1,0x14,0xae,0xbe, - 0xca,0x19,0x31,0xfc,0xc2,0xc1,0x19,0x57, - 0xec,0x90,0xee,0x86,0xc5,0x3e,0x61,0xc5, - 0xe0,0x81,0x90,0x82,0x15,0x88,0x42,0x53, - 0xca,0x78,0xdc,0x2d,0x5b,0x3a,0xb2,0xb6, - 0x94,0xff,0xda,0xba,0xcc,0x91,0x68,0xb0, - 0x9b,0xc7,0x93,0x39,0x81,0x22,0x23,0xf6, - 0x94,0x2d,0x72,0xd1,0xf4,0xe2,0xe5,0xa6, - 0x35,0xa1,0x43,0xd8,0x24,0xca,0xb4,0xaa, - 0x40,0x4a,0x95,0xb5,0xeb,0xf5,0xf0,0x37, - 0x9b,0x56,0xe2,0xa7,0xa0,0x65,0x91,0x79, - 0x51,0x49,0xd7,0x12,0xb2,0x42,0xd4,0x75, - 0x7b,0x4b,0xc4,0xc4,0xc1,0x71,0x12,0x2a, - 0x9c,0x48,0x7a,0x52,0x64,0x1a,0xca,0xe9, - 0xde,0x97,0x53,0x17,0x84,0x7a,0xf4,0x68, - 0x3a,0x71,0xe5,0x13,0x77,0x28,0xe,0x18, - 0x6c,0xda,0x6c,0x90,0xcc,0xcb,0x4d,0xde, - 0x76,0xea,0x59,0xc6,0x94,0xf4,0x31,0xd2, - 0x2a,0x1,0x8a,0xfb,0x24,0x8f,0x5e,0x3e, - 0x67,0xef,0xe8,0xb3,0xbe,0x1f,0xcf,0x81, - 0x9,0x7f,0x3b,0xf,0x52,0x74,0xd9,0x11, - 0x95,0xf3,0x74,0x3b,0x98,0x4e,0xab,0x2c, - 0x51,0x89,0xae,0x50,0x5a,0x25,0x3a,0xd7, - 0x9b,0x47,0xa0,0x56,0x3f,0x7d,0xca,0x35, - 0xfd,0xef,0xe2,0x24,0x7a,0x4b,0x9d,0xa7, - 0x45,0xab,0x4,0xbc,0xbd,0x29,0x79,0xa9, - 0x70,0xa4,0x36,0x8a,0xf9,0xaa,0x5b,0xe6, - 0x1d,0x7b,0xb1,0x61,0x5,0xa4,0x8f,0x3a, - 0xd7,0xbb,0x74,0x95,0x5,0x72,0x39,0xde, - 0xef,0x8c,0x21,0xa7,0x2e,0x56,0xe9,0x9e, - 0x59,0x3b,0x78,0x7b,0x2b,0x58,0x4c,0x69, - 0x52,0xd1,0x5c,0x54,0x1b,0x87,0x2f,0xbe, - 0xba,0x1c,0x21,0x53,0x69,0x89,0xc2,0x33, - 0x73,0x44,0xb7,0xed,0xdf,0x9d,0xc7,0x8c, - 0xf4,0xa9,0x1c,0xf9,0xf4,0xe9,0x13,0x2a, - 0x66,0xf6,0xe3,0x9c,0xfe,0xed,0xf0,0xe7, - 0x5d,0x4c,0xa1,0x48,0xa3,0x4f,0x9f,0x9e, - 0x8a,0xb6,0x7b,0xa2,0xaf,0x9e,0xec,0xe1, - 0x59,0x3f,0x46,0x7f,0xb3,0xbf,0x8e,0x45, - 0x76,0xd6,0xb7,0xd7,0xa3,0x1,0x1f,0x50, - 0xfa,0x50,0x12,0x59,0x5d,0x91,0xbc,0x43, - 0x48,0xc3,0x6a,0x1a,0x20,0x1b,0x55,0x8, - 0xa7,0x54,0xc1,0x8b,0xa2,0xdd,0x7b,0x27, - 0xe9,0xb4,0xde,0x78,0xc6,0x51,0xed,0x1b, - 0x39,0x18,0xd5,0xea,0xef,0xca,0x33,0x14, - 0x5a,0xd9,0x48,0x44,0x5b,0xfe,0x64,0x34, - 0xea,0x1d,0x20,0x59,0x51,0x3c,0xa4,0xb1, - 0xe2,0x67,0xd4,0x32,0xc9,0x85,0xc3,0x1e, - 0x15,0x16,0xb5,0x6c,0x7c,0x69,0xd1,0x8c, - 0xa2,0x85,0x22,0xf9,0x2e,0x58,0xb,0x1e, - 0xed,0xaa,0xde,0x42,0x94,0xb7,0x50,0x97, - 0x2,0x45,0x42,0x69,0x9c,0xc3,0xfc,0xf4, - 0x9f,0x68,0xb0,0xbd,0xbd,0xe5,0x3f,0xff, - 0x15,0x2d,0x96,0xa9,0x70,0x8d,0xac,0x49, - 0x72,0x4c,0xfa,0x3f,0xe5,0x30,0x0,0x54, - 0x12,0x51,0xd0,0x20,0x8c,0x11,0x3f,0x57, - 0x5f,0xd9,0x2d,0x64,0x1e,0x3f,0x43,0x8c, - 0xd1,0x9a,0x3b,0x6e,0x91,0xdc,0xa5,0x8e, - 0x72,0xfc,0xbc,0x28,0x76,0x88,0x49,0x12, - 0x2,0xaa,0xa3,0x1a,0x1,0x68,0xbf,0x4b, - 0x76,0x5c,0xd4,0x29,0x32,0x3a,0xc,0x99, - 0x74,0x26,0xd1,0x12,0xbb,0xfb,0x2c,0x67, - 0x7f,0xa9,0x8c,0xce,0x4a,0xa3,0x98,0x5f, - 0x87,0x64,0x13,0x6a,0x33,0xcb,0x39,0x7a, - 0xf6,0xfa,0xa0,0xdb,0x95,0xc6,0x32,0xc8, - 0x4c,0x15,0xbf,0xe,0x9a,0xe0,0x72,0xf1, - 0x43,0x66,0x39,0x3d,0x38,0x63,0xa7,0xf1, - 0x6e,0x78,0x1b,0x29,0xc6,0xb2,0x55,0x33, - 0x79,0x66,0x1c,0x18,0xe9,0x62,0x5a,0x6a, - 0xd9,0x49,0xd0,0x17,0x95,0xe8,0x8d,0x18, - 0x2a,0x2f,0xba,0x6b,0x37,0x8c,0x60,0x62, - 0xa4,0x8c,0x53,0x9c,0x4,0x4f,0x9f,0x76, - 0x82,0x3e,0x7f,0xd4,0xe1,0x61,0x32,0x4a, - 0x64,0xf6,0xd0,0x12,0x89,0x61,0x56,0x21, - 0xb9,0x9a,0x3a,0xa0,0x46,0x9d,0x69,0x47, - 0xb8,0x30,0x76,0x30,0x46,0x5a,0x65,0x21, - 0x1,0xfa,0x6b,0xc3,0xd0,0x82,0x94,0x40, - 0xe6,0x13,0x14,0x99,0x8b,0x19,0xe6,0xa3, - 0x9,0x6e,0x2,0xab,0x48,0xbe,0xed,0xae, - 0x45,0xf2,0xc,0x3,0x81,0x54,0xa5,0x66, - 0x2f,0x21,0xb1,0xbc,0x50,0x14,0x6b,0x5f, - 0xaf,0xd7,0xd0,0xbc,0xe9,0xba,0x7b,0xfc, - 0x9b,0x67,0xcf,0x7e,0xeb,0xe4,0x74,0xa3, - 0x79,0xc3,0xcc,0xac,0x7f,0x7f,0xfb,0xc3, - 0xa8,0x68,0x16,0xde,0xf5,0xe,0x13,0x10, - 0x6d,0xb0,0xff,0xf,0x19,0xa4,0x7b,0x54, - 0xc,0x8,0x3,0x0,}; - -const uint PAGE_js_jsoneditor_size = 37668; diff --git a/src/sensesp/net/web/js_sensesp.h b/src/sensesp/net/web/js_sensesp.h deleted file mode 100644 index e8705b480..000000000 --- a/src/sensesp/net/web/js_sensesp.h +++ /dev/null @@ -1,307 +0,0 @@ -#include -const uint8_t PAGE_js_sensesp[] PROGMEM = { - 0x1f,0x8b,0x8,0x0,0x62,0x38,0x8f,0x64, - 0x2,0xff,0xcd,0x19,0xed,0x72,0xdb,0xb8, - 0xf1,0x55,0x18,0x34,0x63,0x91,0x63,0x8a, - 0xb6,0x93,0xbb,0x3f,0x96,0xa1,0x4c,0x9a, - 0x4b,0x2f,0xb9,0xcb,0x25,0x99,0xc4,0xd7, - 0x76,0xc6,0xf6,0x58,0x10,0x9,0x59,0xb4, - 0x29,0x92,0x5,0x40,0xc5,0xaa,0xa2,0xe7, - 0xe9,0x7b,0xf4,0xc9,0xba,0x8b,0xf,0xa, - 0x94,0xa8,0x64,0xf2,0xaf,0x99,0x89,0x45, - 0x2e,0x76,0x17,0xbb,0x8b,0xfd,0x4,0x97, - 0x4c,0x4,0x2c,0x55,0xf9,0x92,0xbf,0xce, - 0x72,0x55,0x9,0x49,0xaf,0x6e,0xe2,0x8c, - 0x2f,0xf3,0x94,0xbf,0x2d,0x67,0x15,0x2d, - 0x9b,0xa2,0x88,0xd3,0x46,0x8,0x5e,0xaa, - 0x8f,0xec,0x8e,0x53,0x92,0x3,0x98,0xc4, - 0x35,0x3c,0xcb,0x77,0x15,0xcb,0x78,0x46, - 0x9f,0x9c,0xc5,0x8a,0x89,0x3b,0xae,0x24, - 0x5d,0x6f,0x46,0xb3,0xa6,0x4,0x7e,0x55, - 0x19,0xb0,0x7b,0xf6,0x18,0x2e,0xb8,0x9a, - 0x57,0x59,0xdc,0x88,0x22,0xce,0x98,0x62, - 0x71,0x5a,0x95,0xa,0x58,0x5d,0xae,0x6a, - 0x1e,0xad,0x5,0x57,0x8d,0x28,0x83,0x92, - 0x7f,0x9,0x3e,0x8a,0x6a,0x91,0x4b,0x1e, - 0x86,0x8e,0x3c,0x14,0x5c,0x56,0xc5,0x92, - 0xc7,0x82,0xdf,0xf3,0x54,0x45,0xeb,0x25, - 0x48,0x2a,0xf8,0xbf,0x1a,0x2e,0x15,0x45, - 0x8a,0x7f,0xfe,0xf1,0xee,0x8d,0x52,0xf5, - 0x27,0x3,0x1a,0xd9,0xa5,0xa4,0xaa,0x79, - 0xe9,0xef,0xfa,0xe4,0x34,0x8a,0xdb,0xb5, - 0xb2,0x0,0x89,0x69,0xbb,0x45,0xb4,0x7e, - 0x76,0x7a,0x4a,0x29,0x75,0xeb,0x52,0x31, - 0xd5,0xc8,0x17,0x76,0xe7,0xd0,0x81,0xe1, - 0xbd,0xae,0x4a,0xc9,0xa3,0x73,0x23,0x4b, - 0xf8,0x5a,0x88,0x4a,0x84,0x5d,0xaa,0x4b, - 0xfe,0xa8,0xa2,0x68,0xe3,0xed,0xc5,0x11, - 0xcb,0xdf,0xac,0x43,0x4d,0xde,0x73,0xf5, - 0xa5,0x12,0xf,0x81,0x7e,0x25,0x48,0xea, - 0xd9,0xe6,0xe8,0xa8,0xe5,0xce,0x95,0x55, - 0xf1,0xd,0x7,0x6b,0x3,0xe1,0x2b,0x83, - 0x36,0x44,0x3c,0xd2,0x31,0x68,0xbc,0x25, - 0x2a,0xb3,0x10,0xed,0x1d,0x6d,0x80,0x71, - 0x5a,0x30,0x29,0x83,0xf7,0x6c,0x79,0xa9, - 0x4f,0x69,0xd,0x24,0x52,0x89,0x26,0x85, - 0xe3,0xe,0x1f,0xf8,0x2a,0xce,0xcb,0x65, - 0xf5,0xc0,0xff,0x66,0x5,0x8d,0x8b,0xbc, - 0x7c,0x88,0xd6,0x6a,0x9e,0xcb,0xe4,0x77, - 0xbe,0xa2,0x88,0xa1,0x5f,0xc,0xb5,0x43, - 0xa3,0x3b,0x54,0x1a,0xe5,0x1d,0x90,0x52, - 0xa4,0xdf,0x6c,0x5a,0x37,0x0,0x9a,0xd7, - 0x8b,0x5a,0xad,0xac,0xd8,0xbf,0xe4,0xcb, - 0xd0,0x1c,0xe6,0x82,0xe5,0x25,0xcd,0xaa, - 0xb4,0x59,0x0,0x38,0x41,0xb4,0x82,0xe3, - 0xe3,0x5f,0x57,0x6f,0xb3,0x90,0x58,0xbd, - 0x48,0x34,0xb2,0x5e,0x82,0xe8,0x9,0x47, - 0x4e,0x61,0x14,0xdf,0x15,0xd5,0x94,0x15, - 0xc6,0x65,0x8d,0x8f,0xe2,0x72,0x67,0xd3, - 0xcf,0x79,0x79,0x57,0xf0,0xdf,0x64,0x55, - 0x1a,0xb4,0x90,0x1b,0xf6,0x68,0xb1,0x59, - 0x7e,0x17,0xcb,0x74,0xce,0x17,0xac,0xe3, - 0x84,0xbf,0x7d,0xfe,0xf0,0x7e,0x7,0x79, - 0x6d,0xd0,0xce,0xcd,0x4f,0xc,0x67,0x2d, - 0xd4,0x92,0x15,0xe7,0x96,0x49,0x59,0xdd, - 0xb2,0xc,0x28,0x60,0x4f,0x56,0xdc,0xd6, - 0x2,0xbc,0x4f,0xa8,0x9c,0xcb,0xf3,0x27, - 0xa7,0x71,0x96,0x4b,0x36,0x2d,0xf8,0x6d, - 0x5a,0x15,0x5,0xab,0x25,0xf7,0x61,0xfd, - 0x98,0x1c,0x38,0xdd,0xde,0x83,0xc4,0x8, - 0x94,0xf3,0xea,0xcb,0x6d,0x55,0xab,0xdb, - 0x5c,0xbf,0x2a,0xd8,0x9f,0x9f,0x93,0x69, - 0x55,0x29,0x38,0x3c,0x56,0xff,0x44,0x36, - 0xd1,0x56,0xdf,0x54,0x70,0xa6,0xb8,0xb3, - 0x33,0x48,0x66,0xd4,0x40,0x63,0xe7,0x65, - 0xc6,0x1f,0x9d,0x9a,0x93,0xeb,0x32,0x80, - 0x7f,0x17,0x59,0xbe,0xc,0xb4,0x5b,0xd0, - 0x41,0xca,0x44,0x16,0x2c,0xa6,0xc3,0xe7, - 0x83,0xf1,0xde,0x22,0xc1,0xc5,0xe1,0xb4, - 0xca,0x56,0xc4,0x2d,0xce,0x7f,0xe,0xf2, - 0xcc,0x50,0xdd,0xaa,0x5c,0x81,0xd4,0x4f, - 0xd7,0x7a,0x8b,0xcd,0xa0,0x43,0xa4,0xd7, - 0x90,0xef,0x4f,0x64,0x6c,0x44,0x6a,0x4, - 0x43,0x59,0x2f,0x4e,0xe6,0x3f,0xfb,0x3b, - 0xb5,0xdc,0x32,0x2e,0x53,0x91,0xd7,0x88, - 0xb3,0xc7,0x73,0x80,0xee,0x0,0x27,0xcc, - 0x45,0x50,0xcb,0xe1,0xa9,0x95,0xf7,0xe2, - 0x4,0x18,0xec,0xf2,0xe2,0x5a,0xf3,0xdb, - 0x79,0x55,0x40,0xb4,0x6c,0x19,0xed,0x23, - 0xb7,0x9c,0x8b,0xe1,0xd9,0xb3,0x56,0xf9, - 0x69,0xa3,0x14,0x18,0x14,0x39,0xc9,0x66, - 0xba,0x80,0x3,0xd9,0xca,0xa2,0x20,0xc8, - 0xe8,0xc0,0x60,0xb4,0x92,0x4d,0x55,0x19, - 0xc0,0xff,0x61,0x2d,0xf2,0x5,0x13,0xab, - 0x60,0xa1,0x50,0xb4,0xcf,0x6c,0xc9,0x2f, - 0x4e,0xc,0xaa,0x63,0xed,0xb,0x70,0xe0, - 0x79,0xb2,0x61,0x72,0x55,0xa6,0x41,0x7b, - 0xb0,0x98,0xb0,0x8c,0xf9,0x42,0xe3,0x72, - 0x1f,0x99,0x9a,0x47,0xeb,0x82,0xab,0xc0, - 0xa5,0x25,0xca,0xbe,0xb0,0x5c,0x99,0x74, - 0x4b,0x7e,0x7d,0x7d,0x49,0x62,0x72,0x62, - 0x70,0xc9,0xb1,0x47,0x13,0xa3,0x63,0x51, - 0x74,0xf1,0xa4,0x66,0x42,0x62,0x7a,0xb3, - 0x69,0xcd,0x46,0xd8,0xda,0x20,0x9f,0x23, - 0x5e,0xd2,0x9,0x12,0x3,0xb2,0x21,0xe0, - 0x1d,0x93,0x81,0x7b,0x0,0x2f,0xec,0x51, - 0xf0,0x97,0x45,0x61,0x64,0x97,0x9e,0xf0, - 0xb2,0xd,0x39,0xf,0x96,0x2c,0x58,0x1d, - 0x7a,0x48,0x74,0xdc,0xaf,0x78,0xe4,0xf9, - 0x7c,0xe,0xb2,0xb,0xa5,0x6b,0x90,0xf8, - 0x5c,0xe7,0x25,0x38,0x87,0xb,0xdb,0xb7, - 0x59,0xb4,0x3e,0x94,0x59,0xb6,0x28,0x89, - 0xa6,0x79,0x73,0xf9,0xc7,0x3b,0x3a,0xe8, - 0x3a,0x11,0x29,0x34,0x57,0xe2,0x3c,0x3a, - 0x1b,0xce,0xa,0xfe,0x18,0xdc,0x37,0x52, - 0xe5,0xb3,0xd5,0xd0,0xe6,0xa6,0x61,0xa, - 0x7f,0x0,0xab,0x27,0x6e,0xa4,0x91,0x7, - 0x42,0x47,0x68,0x3e,0xa2,0x2a,0xa0,0x74, - 0x9a,0x4a,0xe1,0xf0,0x81,0x42,0xd6,0xac, - 0x74,0x24,0xcb,0x5c,0x36,0xac,0x28,0x56, - 0xc3,0x79,0x9e,0x65,0xbc,0x24,0x63,0xd4, - 0xc,0x72,0x58,0x92,0x24,0x17,0x27,0x88, - 0xd8,0xe7,0x3a,0x9a,0xc1,0x56,0x60,0x5, - 0x45,0xa8,0x15,0x7a,0x21,0x87,0xcf,0xbe, - 0xc3,0x65,0xe0,0x65,0x90,0x82,0x33,0xd1, - 0x6b,0xcc,0x68,0x6d,0x1f,0x3c,0x7b,0x11, - 0xb2,0xeb,0xa8,0x98,0xae,0x4c,0xca,0xf5, - 0x13,0x90,0x77,0x76,0x36,0xef,0xfe,0x2, - 0x55,0xc9,0x16,0xfb,0xd8,0xa6,0x26,0x74, - 0xe6,0xed,0xa2,0x75,0xe7,0x7d,0x6c,0xe3, - 0x7f,0x74,0xbb,0x60,0x3d,0x72,0x64,0x7e, - 0x12,0x9d,0x71,0xbe,0x7e,0xd,0xfd,0x57, - 0x4a,0x2,0xa8,0x20,0xb8,0x81,0xd5,0xe1, - 0x60,0xc1,0x99,0xf4,0xe7,0x8d,0x49,0x34, - 0xfa,0x86,0x65,0xc,0x67,0x53,0x85,0xbe, - 0x5f,0x72,0xb4,0xcc,0xdd,0xea,0x33,0xd2, - 0xb5,0x38,0x98,0x73,0x7d,0x48,0x74,0x6b, - 0xad,0x4,0x92,0xf,0xe4,0x79,0x0,0x86, - 0x67,0xd1,0xe8,0xa0,0xd0,0x3d,0x69,0x78, - 0x12,0x25,0xe8,0x6,0xb6,0xdc,0x52,0xcb, - 0xfa,0x3b,0x2c,0xfa,0x72,0xef,0xc4,0xf, - 0x10,0x4f,0x3,0xf,0xd7,0xd5,0xe6,0x83, - 0xcc,0x77,0x52,0x28,0xb0,0x84,0x72,0xf9, - 0x7a,0x9,0xeb,0xef,0x72,0x9,0xf2,0x61, - 0x3f,0x93,0x16,0x79,0xfa,0x40,0xe2,0xd0, - 0xeb,0x94,0x24,0x64,0x4f,0x1b,0xfc,0xdb, - 0x5e,0x34,0x31,0x90,0x2b,0xcd,0xea,0x26, - 0x36,0x66,0xc7,0x1d,0xff,0xce,0x8a,0x86, - 0x87,0x11,0xf6,0x3a,0x16,0xba,0x75,0x6b, - 0x8f,0x93,0x51,0xe1,0xb6,0x46,0x5f,0x5c, - 0x22,0x9,0x64,0x22,0x93,0x34,0x3f,0xfe, - 0xd9,0x93,0x34,0xd,0xa2,0xce,0x97,0xe6, - 0x20,0x20,0xf2,0x43,0x4b,0x17,0x13,0x56, - 0xd7,0x20,0xb6,0x2e,0x68,0x27,0x98,0x5, - 0x9,0x58,0x7d,0xe,0x9d,0x67,0x9b,0x55, - 0xe9,0x78,0xcd,0xa,0x88,0xc8,0x70,0x82, - 0xa5,0x20,0xb3,0xfe,0x6c,0x6b,0x60,0x30, - 0xab,0x44,0xf0,0x74,0xed,0x6d,0xb4,0x9, - 0x64,0x93,0xa6,0x5c,0xca,0x19,0x34,0x33, - 0xab,0x64,0x82,0xca,0x24,0xc0,0x3f,0x9d, - 0x87,0x21,0x34,0x92,0x5b,0x6e,0xba,0x5d, - 0x44,0xb5,0x40,0xa2,0x1d,0xa6,0x5d,0x86, - 0xe7,0xf0,0xe,0x94,0xc9,0x2,0x98,0x42, - 0xb3,0xbe,0xd1,0x2c,0x37,0x9d,0x78,0xb5, - 0x86,0x31,0x11,0xa8,0xdb,0xb1,0xbe,0x66, - 0xcd,0xfa,0x68,0xd9,0x2c,0x6c,0x32,0xa7, - 0x7b,0x67,0x92,0x14,0xbc,0xbc,0x53,0xf3, - 0x51,0x37,0x92,0x6d,0xe0,0x4a,0xba,0x53, - 0xb,0xf6,0xc8,0xdd,0x16,0xe8,0x8a,0x52, - 0xbb,0xdb,0x4b,0x21,0xd8,0x2a,0x99,0x1, - 0x83,0x50,0x3f,0x86,0xdb,0xdd,0xa3,0x38, - 0xc,0x1f,0xe3,0x3c,0xa2,0xe3,0x6f,0x35, - 0x3d,0x50,0x29,0x92,0xfb,0x2a,0x2f,0x43, - 0x72,0xd,0x67,0x33,0xd2,0xcd,0xa3,0xe7, - 0xcd,0x6e,0xa3,0x11,0x1c,0x44,0x88,0x52, - 0xe7,0xf4,0x74,0x94,0x5f,0x6c,0x77,0x19, - 0xe5,0xc7,0xc7,0x51,0x5f,0x85,0xd9,0xcf, - 0x13,0x98,0x23,0xbe,0xc9,0xe6,0x40,0x6a, - 0xec,0xf1,0xec,0x9b,0xfd,0x24,0x29,0x11, - 0x9a,0x3b,0xef,0xb2,0xb9,0x6,0xbc,0xc1, - 0x9f,0xd9,0x92,0xba,0x91,0x73,0xbb,0xd6, - 0x3d,0x65,0xfe,0xc8,0xd3,0x46,0xc1,0xbe, - 0x8b,0x5,0x83,0x91,0xa0,0x64,0xb,0x8e, - 0x8d,0x65,0x53,0x98,0xda,0x2a,0x16,0xd1, - 0x3a,0x3c,0x7b,0x42,0x3b,0xa0,0xaf,0x5f, - 0x53,0xf3,0x10,0x92,0xd7,0x86,0x3c,0x20, - 0xc7,0x48,0x79,0x4c,0x5e,0xc0,0x9c,0x72, - 0x74,0x14,0xa2,0x42,0xc6,0x2a,0x21,0x74, - 0xa6,0x16,0xb,0xfd,0xd1,0xe1,0x41,0xb5, - 0x21,0x51,0xbc,0xd3,0x91,0x68,0x11,0x5e, - 0x60,0xb1,0xd2,0x58,0x6d,0xc0,0x80,0x36, - 0x3e,0xc3,0x33,0x20,0xd4,0xae,0x2e,0xf6, - 0x63,0xa0,0x17,0xf,0x96,0x10,0xd3,0xd3, - 0x5a,0x34,0xe5,0x2f,0xda,0xb8,0x4e,0x6f, - 0xab,0x10,0xce,0x68,0xb1,0x15,0x24,0x5a, - 0x3b,0x2d,0xbd,0x45,0x50,0xae,0x23,0xb4, - 0x39,0xa2,0x13,0x4c,0x9,0x86,0xc8,0x93, - 0xf9,0xa0,0x90,0x1d,0xa9,0xf6,0x2,0x4e, - 0x41,0x2b,0x60,0x7,0x20,0xa8,0xc0,0xfd, - 0x1,0x97,0xcf,0xb0,0x17,0xd2,0x3b,0xee, - 0x4,0x9b,0x81,0x45,0x36,0xde,0xc6,0xa7, - 0xd1,0x7a,0x80,0x1d,0x79,0x4f,0xe3,0xbd, - 0xc2,0xc6,0xfb,0xe5,0x36,0x4b,0x5,0x8e, - 0xa1,0xd7,0x7f,0xef,0x76,0x2d,0xd8,0xc6, - 0xde,0x89,0xaa,0xa9,0xc9,0x78,0xa0,0x5d, - 0x1a,0xa5,0x34,0x2e,0xed,0xa8,0x5d,0xa4, - 0xa3,0x5f,0xaf,0x27,0x17,0xff,0xfd,0x8f, - 0x47,0xeb,0xb7,0xc1,0x24,0xa8,0x4a,0x9d, - 0xd8,0x29,0xd9,0xf1,0xc1,0xc1,0xd3,0xb5, - 0x53,0x8e,0x3a,0xae,0xe0,0xe3,0x51,0xf2, - 0x1e,0x9c,0x62,0x33,0x88,0x31,0x8b,0x69, - 0x68,0x62,0xfd,0x71,0x13,0x91,0x60,0x2e, - 0xf8,0x8c,0x92,0xbf,0x90,0xf1,0x76,0xf5, - 0x12,0xf5,0xdc,0x5c,0x9c,0xb0,0xf1,0x64, - 0x43,0x4c,0x3b,0x43,0x36,0x28,0xb0,0x63, - 0xea,0x46,0xe3,0x4e,0x73,0x67,0xa4,0xbd, - 0xd6,0x13,0xc7,0xf5,0xe0,0x80,0x1d,0xf6, - 0xa6,0x1e,0x37,0xf9,0x1c,0x1a,0x70,0x8c, - 0xb7,0x1d,0x34,0x31,0x6b,0xe5,0x6f,0xad, - 0x72,0x3d,0xd8,0x73,0x52,0xf2,0x89,0xeb, - 0xf1,0x32,0x30,0x27,0xfe,0x82,0xc4,0x1, - 0x11,0x6,0x4,0x19,0xec,0x7a,0x70,0xc8, - 0xd2,0x63,0x4b,0x87,0xa6,0xf8,0xf1,0x4d, - 0x5f,0xa,0x1e,0xac,0xaa,0x6,0xca,0x8f, - 0x7d,0xf8,0xc2,0x4a,0x15,0xa8,0xa,0xc7, - 0xb,0xee,0x64,0xc1,0xf7,0x19,0xc3,0xb, - 0x83,0x55,0x0,0x50,0x8c,0x75,0xe9,0xe4, - 0xe3,0xfd,0xd2,0x65,0xac,0xbc,0xc3,0xde, - 0xf8,0x93,0x66,0x3,0xf4,0x19,0x9f,0xb1, - 0xa6,0x50,0x72,0x47,0xcc,0xbd,0x41,0x68, - 0xf0,0x43,0xee,0x6f,0xcf,0xf8,0x98,0x92, - 0xfd,0x99,0x56,0xf,0x62,0xbb,0x60,0x7d, - 0xae,0x0,0x6e,0x4f,0x73,0xb0,0x73,0x9a, - 0x83,0xf1,0x2b,0x68,0xf3,0xab,0x45,0xf7, - 0x34,0x89,0x8e,0x87,0x6f,0xc4,0x82,0xe7, - 0x79,0xa3,0x56,0xa8,0x9,0x9c,0xc2,0xff, - 0x43,0x7c,0x78,0x56,0xd2,0x36,0x76,0xe1, - 0x2,0x7f,0xbb,0x3d,0x1e,0x62,0xed,0xa4, - 0x2c,0x6d,0x8c,0xd0,0x5c,0xf0,0x45,0x9d, - 0xc,0x7c,0xda,0x49,0xf1,0x6,0x43,0x5f, - 0x1,0xb9,0x34,0xb9,0xdc,0x4f,0xd9,0x7d, - 0xf9,0xce,0x9f,0x2b,0x2e,0xe6,0x67,0x63, - 0x72,0x6c,0x79,0xfd,0xce,0x57,0xc7,0x20, - 0xb1,0x6,0x2d,0x7f,0xa8,0x18,0x74,0xe7, - 0x50,0xf4,0x9e,0xd0,0x35,0x7b,0x36,0xb5, - 0xeb,0x6b,0xcc,0x9e,0xa6,0xcd,0xbb,0xfb, - 0xec,0x9d,0x95,0xcd,0x39,0x9b,0xc4,0xd2, - 0xa7,0x4c,0xac,0x13,0xa8,0xb9,0x9,0x35, - 0xf3,0xf,0x34,0x36,0xf6,0xba,0x67,0x5, - 0x33,0x6b,0xe0,0x39,0xf4,0xc7,0xf6,0x16, - 0xc8,0xf8,0x8f,0x43,0xfb,0x30,0xbd,0xa7, - 0xbd,0x68,0x57,0xe,0xe3,0x66,0xe4,0xe1, - 0x6a,0xcf,0xa0,0xe,0xa0,0x25,0xd4,0x42, - 0xe8,0x8b,0xb1,0x51,0xb8,0x7d,0xa6,0xd4, - 0x8,0x77,0xe5,0x13,0xff,0x8a,0xa0,0x9b, - 0x17,0x7,0x57,0xe8,0x1a,0xd9,0x9f,0xef, - 0x2d,0xc4,0x5b,0xb1,0xce,0xaf,0x6e,0x36, - 0xe7,0x7,0x19,0x44,0x9e,0x2,0xa6,0x53, - 0xf1,0x70,0xa0,0x95,0x7e,0x53,0x49,0x85, - 0xd,0x1,0xa1,0xb4,0x55,0x2,0x9a,0x8c, - 0x83,0x37,0x83,0xc6,0x32,0x9a,0xc2,0x77, - 0x1d,0x7f,0x63,0x3d,0x11,0xc4,0x2d,0x7, - 0x33,0xa,0xee,0x21,0x1c,0x93,0x60,0x18, - 0xfc,0x83,0x4f,0xff,0x7c,0x4b,0xc0,0x61, - 0xda,0xc3,0x7a,0xe0,0xfa,0x9c,0x8c,0x3e, - 0xd1,0x1a,0x17,0xac,0xd,0xad,0x8a,0x80, - 0xd0,0x55,0x4a,0x56,0xe0,0x79,0x61,0xc8, - 0xe2,0x29,0x74,0xa5,0x2c,0xf9,0x80,0x33, - 0xff,0x70,0x6a,0x7e,0x61,0x26,0xb1,0xee, - 0xb2,0x95,0x15,0x13,0x43,0xf7,0x6,0xa, - 0x13,0xd2,0x73,0x8,0x5e,0xbd,0x83,0x89, - 0x74,0xf0,0xfb,0xe7,0xe3,0x49,0x6c,0x52, - 0x8e,0x81,0x7b,0x5b,0x7a,0xa9,0xe7,0x7b, - 0xec,0xf1,0x1e,0xc0,0x5d,0x98,0x15,0x6c, - 0xca,0xb,0xb7,0x0,0x9a,0x2d,0x86,0x1a, - 0x32,0x68,0xb7,0xf6,0x7c,0x2d,0xbf,0x71, - 0x82,0x68,0x9c,0xf1,0x45,0x5e,0xd6,0x8d, - 0xb2,0x97,0x60,0x38,0x62,0xe,0xa0,0x46, - 0xb0,0xac,0x2a,0x8b,0x55,0x87,0x63,0x6a, - 0x9a,0x9c,0x41,0xa0,0x87,0x25,0x3a,0xe8, - 0x67,0xad,0x4f,0xa0,0xbd,0x96,0x9b,0x8c, - 0x7a,0xb4,0x68,0xab,0xfa,0x81,0x16,0x8b, - 0xd8,0xb2,0x8b,0xa1,0xac,0xe3,0x1c,0x6a, - 0x54,0x5e,0xf0,0xec,0x1c,0xfa,0x50,0x9c, - 0x7c,0xbc,0x8b,0xf9,0x4d,0xf7,0xe2,0x28, - 0x57,0x39,0x2b,0xf2,0x7f,0x73,0x1c,0x7d, - 0xda,0xfc,0xe0,0x3e,0x62,0x58,0x3a,0xfd, - 0x91,0xa1,0xbd,0x34,0xf,0xdd,0xe5,0x4d, - 0xec,0x8,0xb6,0xf8,0x9d,0x29,0x6c,0x97, - 0xac,0xb3,0x48,0xe2,0xed,0xd8,0xd5,0xa1, - 0x47,0x83,0xf5,0x50,0x22,0xb8,0xa5,0xc1, - 0x97,0x28,0x3e,0x18,0x16,0x38,0xe2,0xc0, - 0x5b,0x43,0xbe,0x35,0x63,0x63,0x86,0xc3, - 0xfc,0x60,0xb6,0xc6,0xeb,0x7d,0x9e,0xd8, - 0x64,0x8b,0x9f,0xb,0xa0,0x54,0xdb,0x57, - 0x2b,0x1c,0xb5,0x32,0x5e,0xb5,0x4,0x37, - 0x23,0xcc,0x24,0x4f,0xec,0xc2,0xd1,0x91, - 0xa5,0xee,0x7e,0x1c,0x70,0xe5,0x2,0xcd, - 0x6e,0x85,0x4c,0x20,0xfc,0x54,0x85,0xce, - 0x63,0x2e,0xf1,0xfd,0xf,0x23,0xae,0xd5, - 0x4c,0xe7,0x79,0x91,0x51,0xfd,0x25,0x1, - 0xfc,0xc9,0xa9,0xf7,0xa,0xa1,0x23,0xbd, - 0x36,0x8a,0xf4,0xa2,0xe0,0x8b,0xa,0xc6, - 0x7a,0x84,0x84,0x1a,0xe,0x31,0x76,0x98, - 0x74,0x33,0xfa,0x1f,0xea,0x17,0xf3,0x72, - 0xe5,0x1a,0x0,0x0,}; - -const uint PAGE_js_sensesp_size = 2420; diff --git a/src/sensesp/net/web/static_file_data.h b/src/sensesp/net/web/static_file_data.h new file mode 100644 index 000000000..eb423794e --- /dev/null +++ b/src/sensesp/net/web/static_file_data.h @@ -0,0 +1,19 @@ +#ifndef SENSESP_NET_WEB_STATIC_FILE_DATA_H +#define SENSESP_NET_WEB_STATIC_FILE_DATA_H + +namespace sensesp { + +const char kContentType[] = "Content-Type"; +const char kContentEncoding[] = "Content-Encoding"; + +struct StaticFileData { + const char* url; + const char* content; + const unsigned int content_length; + const char* content_type; + const char* content_encoding; +}; + +} // namespace sensesp + +#endif // SENSESP_NET_WEB_STATIC_PAGE_DATA_H diff --git a/src/sensesp/net/web/static_file_handler.cpp b/src/sensesp/net/web/static_file_handler.cpp new file mode 100644 index 000000000..116e69c6b --- /dev/null +++ b/src/sensesp/net/web/static_file_handler.cpp @@ -0,0 +1,23 @@ +#include "static_file_handler.h" + +#include "autogen/web_ui_files.h" + +namespace sensesp { + +void add_static_file_handlers(HTTPServer* server) { + for (int i = 0; kWebUIFiles[i].url != nullptr; i++) { + const StaticFileData& data = kWebUIFiles[i]; + HTTPRequestHandler* handler = new HTTPRequestHandler( + 1 << HTTP_GET, kWebUIFiles[i].url, [data](httpd_req_t* req) { + httpd_resp_set_type(req, data.content_type); + if (data.content_encoding != nullptr) { + httpd_resp_set_hdr(req, kContentEncoding, data.content_encoding); + } + httpd_resp_send(req, data.content, data.content_length); + return ESP_OK; + }); + server->add_handler(handler); + } +} + +} // namespace sensesp diff --git a/src/sensesp/net/web/static_file_handler.h b/src/sensesp/net/web/static_file_handler.h new file mode 100644 index 000000000..4998319f0 --- /dev/null +++ b/src/sensesp/net/web/static_file_handler.h @@ -0,0 +1,21 @@ +#ifndef SENSESP_NET_HTTP_STATIC_FILE_HANDLER_H_ +#define SENSESP_NET_HTTP_STATIC_FILE_HANDLER_H_ + +#include + +#include "ArduinoJson.h" +#include "sensesp/net/http_server.h" +#include "sensesp/system/configurable.h" +#include "static_file_data.h" + +namespace sensesp { + +/** + * @brief Provide handlers for static web content. + * + */ +void add_static_file_handlers(HTTPServer* server); + +} // namespace sensesp + +#endif // SENSESP_NET_HTTP_STATIC_PAGE_HANDLER_H_ diff --git a/src/sensesp/net/ws_client.cpp b/src/sensesp/net/ws_client.cpp index 295abc1d8..269f5a952 100644 --- a/src/sensesp/net/ws_client.cpp +++ b/src/sensesp/net/ws_client.cpp @@ -7,6 +7,7 @@ #include "Arduino.h" #include "elapsedMillis.h" +#include "sensesp.h" #include "sensesp/signalk/signalk_listener.h" #include "sensesp/signalk/signalk_put_request.h" #include "sensesp/signalk/signalk_put_request_listener.h" @@ -37,47 +38,45 @@ void ExecuteWebSocketTask(void* parameter) { delta_loop_elapsed = 0; ws_client->send_delta(); } - if (ws_client_loop_elapsed > 20) { - ws_client_loop_elapsed = 0; - ws_client->loop(); - } delay(1); } } /** - * @brief WebSocket event handler. - * - * This function will be called in the websocket task. + * @brief Websocket event handler. * - * @param type - * @param payload - * @param length + * @param handler_args + * @param base + * @param event_id + * @param event_data */ -void webSocketClientEvent(WStype_t type, uint8_t* payload, size_t length) { - switch (type) { - case WStype_DISCONNECTED: - ws_client->on_disconnected(); +static void websocket_event_handler(void* handler_args, esp_event_base_t base, + int32_t event_id, void* event_data) { + esp_websocket_event_data_t* data = (esp_websocket_event_data_t*)event_data; + switch (event_id) { + case WEBSOCKET_EVENT_CONNECTED: + debugD("WEBSOCKET_EVENT_CONNECTED"); + ws_client->on_connected(); break; - case WStype_ERROR: - ws_client->on_error(); - break; - case WStype_CONNECTED: - ws_client->on_connected(payload); + case WEBSOCKET_EVENT_DISCONNECTED: + debugD("WEBSOCKET_EVENT_DISCONNECTED"); + ws_client->on_disconnected(); break; - case WStype_TEXT: - ws_client->on_receive_delta(payload); + case WEBSOCKET_EVENT_DATA: + // check if the payload is text) + if (data->op_code == 0x01) { + ws_client->on_receive_delta((uint8_t*)data->data_ptr); + } break; - default: - // Do nothing for other types + case WEBSOCKET_EVENT_ERROR: + ws_client->on_error(); break; } } WSClient::WSClient(String config_path, SKDeltaQueue* sk_delta_queue, String server_address, uint16_t server_port) - : Configurable{config_path, "Signal K Server Settings", 200}, - Startable(60) { + : Configurable{config_path, "Signal K Server Settings", 200} { this->sk_delta_queue_ = sk_delta_queue; conf_server_address_ = server_address; @@ -97,12 +96,16 @@ WSClient::WSClient(String config_path, SKDeltaQueue* sk_delta_queue, ws_client = this; load_configuration(); -} -void WSClient::start() { - xTaskCreate(ExecuteWebSocketTask, "WSClient", ws_client_task_stack_size, this, - 1, NULL); - MDNS.addService("signalk-sensesp", "tcp", 80); + // Connect the counters + delta_tx_tick_producer_.connect_to(&delta_tx_count_producer_); + + ReactESP::app->onDelay(0, [this]() { + debugD("Starting WSClient"); + xTaskCreate(ExecuteWebSocketTask, "WSClient", ws_client_task_stack_size, + this, 1, NULL); + MDNS.addService("signalk-sensesp", "tcp", 80); + }); } void WSClient::connect_loop() { @@ -146,13 +149,10 @@ void WSClient::on_error() { * @brief Called when the websocket connection is established. * * Called in the websocket task context. - * - * @param payload */ -void WSClient::on_connected(uint8_t* payload) { +void WSClient::on_connected() { this->set_connection_state(WSConnectionState::kWSConnected); this->sk_delta_queue_->reset_meta_send(); - debugI("Websocket client connected to URL: %s\n", payload); debugI("Subscribing to Signal K listeners..."); this->subscribe_listeners(); } @@ -165,7 +165,7 @@ void WSClient::on_connected(uint8_t* payload) { */ void WSClient::subscribe_listeners() { bool output_available = false; - DynamicJsonDocument subscription(1024); + JsonDocument subscription; subscription["context"] = "vessels.self"; SKListener::take_semaphore(); @@ -173,14 +173,14 @@ void WSClient::subscribe_listeners() { if (listeners.size() > 0) { output_available = true; - JsonArray subscribe = subscription.createNestedArray("subscribe"); + JsonArray subscribe = subscription["subscribe"].to(); for (size_t i = 0; i < listeners.size(); i++) { auto* listener = listeners.at(i); String sk_path = listener->get_sk_path(); int listen_delay = listener->get_listen_delay(); - JsonObject subscribePath = subscribe.createNestedObject(); + JsonObject subscribePath = subscribe.add(); subscribePath["path"] = sk_path; subscribePath["period"] = listen_delay; @@ -195,7 +195,8 @@ void WSClient::subscribe_listeners() { serializeJson(subscription, messageJson); debugI("Subscription JSON message:\n %s", messageJson.c_str()); - this->client_.sendTXT(messageJson); + esp_websocket_client_send_text(this->client_, messageJson.c_str(), + messageJson.length(), portMAX_DELAY); } } @@ -211,7 +212,7 @@ void WSClient::on_receive_delta(uint8_t* payload) { debugD("Websocket payload received: %s", (char*)payload); #endif - DynamicJsonDocument message(1024); + JsonDocument message; // JsonObject message = jsonDoc.as(); auto error = deserializeJson(message, payload); @@ -240,7 +241,7 @@ void WSClient::on_receive_delta(uint8_t* payload) { * * @param message */ -void WSClient::on_receive_updates(DynamicJsonDocument& message) { +void WSClient::on_receive_updates(JsonDocument& message) { // Process updates from subscriptions... JsonArray updates = message["updates"]; @@ -277,6 +278,7 @@ void WSClient::process_received_updates() { SKPutListener::get_listeners(); take_received_updates_semaphore(); + int num_updates = received_updates_.size(); while (!received_updates_.empty()) { JsonObject value = received_updates_.front(); received_updates_.pop_front(); @@ -297,6 +299,7 @@ void WSClient::process_received_updates() { } } release_received_updates_semaphore(); + delta_rx_count_producer_.set(num_updates); SKListener::release_semaphore(); } @@ -308,7 +311,7 @@ void WSClient::process_received_updates() { * * @param message */ -void WSClient::on_receive_put(DynamicJsonDocument& message) { +void WSClient::on_receive_put(JsonDocument& message) { // Process PUT requests... JsonArray puts = message["put"]; size_t response_count = 0; @@ -332,7 +335,7 @@ void WSClient::on_receive_put(DynamicJsonDocument& message) { SKListener::release_semaphore(); // Send back a request response... - DynamicJsonDocument put_response(512); + JsonDocument put_response; put_response["requestId"] = message["requestId"]; if (response_count == puts.size()) { // We found a response for every PUT request @@ -345,7 +348,8 @@ void WSClient::on_receive_put(DynamicJsonDocument& message) { } String response_text; serializeJson(put_response, response_text); - this->client_.sendTXT(response_text); + esp_websocket_client_send_text(this->client_, response_text.c_str(), + response_text.length(), portMAX_DELAY); } } @@ -358,7 +362,8 @@ void WSClient::on_receive_put(DynamicJsonDocument& message) { */ void WSClient::sendTXT(String& payload) { if (get_connection_state() == WSConnectionState::kWSConnected) { - this->client_.sendTXT(payload); + esp_websocket_client_send_text(this->client_, payload.c_str(), + payload.length(), portMAX_DELAY); } } @@ -383,8 +388,8 @@ void WSClient::connect() { if (!WiFi.isConnected() && WiFi.getMode() != WIFI_MODE_AP) { debugI( - "WiFi is disconnected. SignalK client connection will connect when " - "WiFi is connected."); + "WiFi is disconnected. SignalK client connection will be initiated " + "when WiFi is connected."); return; } @@ -414,7 +419,8 @@ void WSClient::connect() { if (this->polling_href_ != "") { // existing pending request - this->poll_access_request(this->server_address_, this->server_port_, this->polling_href_); + this->poll_access_request(this->server_address_, this->server_port_, + this->polling_href_); return; } @@ -441,32 +447,32 @@ void WSClient::test_token(const String server_address, String full_token = String("Bearer ") + auth_token_; debugD("Authorization: %s", full_token.c_str()); http.addHeader("Authorization", full_token.c_str()); - int httpCode = http.GET(); - if (httpCode > 0) { + int http_code = http.GET(); + if (http_code > 0) { String payload = http.getString(); http.end(); - debugD("Testing resulted in http status %d", httpCode); + debugD("Testing resulted in http status %d", http_code); if (payload.length() > 0) { debugD("Returned payload (length %d) is: ", payload.length()); debugD("%s", payload.c_str()); } else { debugD("Returned payload is empty"); } - if (httpCode == 426) { + if (http_code == 426) { // HTTP status 426 is "Upgrade Required", which is the expected // response for a websocket connection. debugD("Attempting to connect to Signal K Websocket..."); server_detected_ = true; token_test_success_ = true; this->connect_ws(server_address, server_port); - } else if (httpCode == 401) { + } else if (http_code == 401) { this->client_id_ = ""; this->send_access_request(server_address, server_port); } else { set_connection_state(WSConnectionState::kWSDisconnected); } } else { - debugE("GET... failed, error: %s\n", http.errorToString(httpCode).c_str()); + debugE("GET... failed, error: %s\n", http.errorToString(http_code).c_str()); set_connection_state(WSConnectionState::kWSDisconnected); } } @@ -481,7 +487,7 @@ void WSClient::send_access_request(const String server_address, } // create a new access request - DynamicJsonDocument doc(1024); + JsonDocument doc; doc["clientId"] = client_id_; doc["description"] = String("SensESP device: ") + SensESPBaseApp::get_hostname(); @@ -544,7 +550,7 @@ void WSClient::poll_access_request(const String server_address, if (httpCode == 200 or httpCode == 202) { String payload = http.getString(); http.end(); - DynamicJsonDocument doc(1024); + JsonDocument doc; auto error = deserializeJson(doc, payload.c_str()); if (error) { debugW("WARNING: Could not deserialize http payload."); @@ -554,8 +560,8 @@ void WSClient::poll_access_request(const String server_address, String state = doc["state"]; debugD("%s", state.c_str()); if (state == "PENDING") { + set_connection_state(WSConnectionState::kWSDisconnected); delay(5000); - this->poll_access_request(server_address, server_port, href); return; } else if (state == "COMPLETED") { JsonObject access_req = doc["accessRequest"]; @@ -601,17 +607,35 @@ void WSClient::poll_access_request(const String server_address, void WSClient::connect_ws(const String host, const uint16_t port) { String path = "/signalk/v1/stream?subscribe=none"; set_connection_state(WSConnectionState::kWSConnecting); - this->client_.begin(host, port, path); - this->client_.onEvent(webSocketClientEvent); - String full_token = String("Bearer ") + auth_token_; - this->client_.setAuthorization(full_token.c_str()); -} -void WSClient::loop() { - if (get_connection_state() == WSConnectionState::kWSConnecting || - get_connection_state() == WSConnectionState::kWSConnected) { - this->client_.loop(); + esp_err_t error; + + String url = String("ws://") + host + ":" + port + path; + + esp_websocket_client_config_t websocket_cfg = {}; + websocket_cfg.uri = url.c_str(); + + String full_auth_header = + String("Authorization: Bearer ") + auth_token_ + "\r\n"; + + websocket_cfg.headers = full_auth_header.c_str(); + + debugD("Websocket config: %s", websocket_cfg.uri); + debugD("Initializing websocket client..."); + this->client_ = esp_websocket_client_init(&websocket_cfg); + debugD("Registering websocket event handler..."); + error = esp_websocket_register_events(this->client_, WEBSOCKET_EVENT_ANY, + websocket_event_handler, + (void*)this->client_); + if (error != ESP_OK) { + debugE("Error registering websocket event handler: %d", error); + } + debugD("Starting websocket client..."); + error = esp_websocket_client_start(this->client_); + if (error != ESP_OK) { + debugE("Error starting websocket client: %d", error); } + debugD("Websocket client started."); } bool WSClient::is_connected() { @@ -620,7 +644,7 @@ bool WSClient::is_connected() { void WSClient::restart() { if (get_connection_state() == WSConnectionState::kWSConnected) { - this->client_.disconnect(); + esp_websocket_client_close(this->client_, portMAX_DELAY); set_connection_state(WSConnectionState::kWSDisconnected); } } @@ -630,9 +654,10 @@ void WSClient::send_delta() { if (get_connection_state() == WSConnectionState::kWSConnected) { if (sk_delta_queue_->data_available()) { sk_delta_queue_->get_delta(output); - this->client_.sendTXT(output); + esp_websocket_client_send_text(this->client_, output.c_str(), + output.length(), portMAX_DELAY); // This automatically notifies the observers - this->delta_count_producer_.set(1); + this->delta_tx_tick_producer_.set(1); } } } @@ -646,19 +671,6 @@ void WSClient::get_configuration(JsonObject& root) { root["polling_href"] = this->polling_href_; } -static const char SCHEMA[] PROGMEM = R"~({ - "type": "object", - "properties": { - "sk_address": { "title": "Signal K server address", "type": "string" }, - "sk_port": { "title": "Signal K server port", "type": "integer" }, - "client_id": { "title": "Client ID (readonly)", "type": "string", "readOnly": true }, - "token": { "title": "Server authorization token (readonly)", "type": "string", "readOnly": true }, - "polling_href": { "title": "Server authorization polling href (readonly)", "type": "string", "readOnly": true } - } - })~"; - -String WSClient::get_config_schema() { return FPSTR(SCHEMA); } - bool WSClient::set_configuration(const JsonObject& config) { String expected[] = {"sk_address", "sk_port", "token", "client_id"}; for (auto str : expected) { diff --git a/src/sensesp/net/ws_client.h b/src/sensesp/net/ws_client.h index e7a7a82df..b8728403b 100644 --- a/src/sensesp/net/ws_client.h +++ b/src/sensesp/net/ws_client.h @@ -1,6 +1,8 @@ #ifndef _ws_client_H_ #define _ws_client_H_ -#include + +#include +#include #include #include @@ -9,9 +11,9 @@ #include "sensesp/signalk/signalk_delta_queue.h" #include "sensesp/system/configurable.h" #include "sensesp/system/observablevalue.h" -#include "sensesp/system/startable.h" #include "sensesp/system/task_queue_producer.h" #include "sensesp/system/valueproducer.h" +#include "sensesp/transforms/integrator.h" namespace sensesp { @@ -29,7 +31,6 @@ enum class WSConnectionState { * @see SensESPApp */ class WSClient : public Configurable, - public Startable, public ValueProducer { public: ///////////////////////////////////////////////////////// @@ -37,21 +38,28 @@ class WSClient : public Configurable, WSClient(String config_path, SKDeltaQueue* sk_delta_queue, String server_address, uint16_t server_port); - virtual void start() override; const String get_server_address() const { return server_address_; } const uint16_t get_server_port() const { return server_port_; } virtual void get_configuration(JsonObject& doc) override final; virtual bool set_configuration(const JsonObject& config) override final; - virtual String get_config_schema() override; /** - * Return a delta update ValueProducer that produces the number of sent deltas - * (ordinarily always 1) + * Return a delta update ValueProducer that produces the number of sent + * deltas. + */ + ValueProducer& get_delta_tx_count_producer() { + return delta_tx_count_producer_; + }; + + /** + * @brief Get the delta rx count producer object. + * + * @return ValueProducer& */ - ValueProducer& get_delta_count_producer() { - return delta_count_producer_; + ValueProducer& get_delta_rx_count_producer() { + return delta_rx_count_producer_; }; String get_connection_status(); @@ -61,10 +69,10 @@ class WSClient : public Configurable, void on_disconnected(); void on_error(); - void on_connected(uint8_t* payload); + void on_connected(); void on_receive_delta(uint8_t* payload); - void on_receive_updates(DynamicJsonDocument& message); - void on_receive_put(DynamicJsonDocument& message); + void on_receive_updates(JsonDocument& message); + void on_receive_put(JsonDocument& message); void connect(); void loop(); bool is_connected(); @@ -93,17 +101,21 @@ class WSClient : public Configurable, bool token_test_success_ = false; TaskQueueProducer connection_state_ = - TaskQueueProducer(WSConnectionState::kWSDisconnected, ReactESP::app); + TaskQueueProducer(WSConnectionState::kWSDisconnected, + ReactESP::app); /// task_connection_state is used to track the internal task state which might /// be out of sync with the published connection state. WSConnectionState task_connection_state_ = WSConnectionState::kWSDisconnected; WiFiClient wifi_client_; - WebSocketsClient client_; + esp_websocket_client_handle_t client_; SKDeltaQueue* sk_delta_queue_; - TaskQueueProducer delta_count_producer_ = + /// @brief Emits the number of deltas sent since last report + TaskQueueProducer delta_tx_tick_producer_ = TaskQueueProducer(0, ReactESP::app, 5, 990); + IntegratorT delta_tx_count_producer_{1, 0, ""}; + IntegratorT delta_rx_count_producer_{1, 0, ""}; SemaphoreHandle_t received_updates_semaphore_ = xSemaphoreCreateRecursiveMutex(); @@ -146,7 +158,6 @@ class WSClient : public Configurable, connection_state_.set(state); } WSConnectionState get_connection_state() { return task_connection_state_; } - }; } // namespace sensesp diff --git a/src/sensesp/sensesp_version.h b/src/sensesp/sensesp_version.h index a75e5c47c..5f3501755 100644 --- a/src/sensesp/sensesp_version.h +++ b/src/sensesp/sensesp_version.h @@ -3,7 +3,7 @@ namespace sensesp { -const char* const kSensESPVersion = "2.7.1-alpha"; +const char* const kSensESPVersion = "3.0.0-alpha"; } diff --git a/src/sensesp/sensors/analog_input.cpp b/src/sensesp/sensors/analog_input.cpp index c2f2c6d8c..9d9709058 100644 --- a/src/sensesp/sensors/analog_input.cpp +++ b/src/sensesp/sensors/analog_input.cpp @@ -5,24 +5,22 @@ namespace sensesp { -AnalogInput::AnalogInput(uint8_t pin, unsigned int read_delay, String config_path, - float output_scale) +AnalogInput::AnalogInput(uint8_t pin, unsigned int read_delay, + String config_path, float output_scale) : FloatSensor(config_path), pin{pin}, read_delay{read_delay}, output_scale{output_scale} { analog_reader = new AnalogReader(pin); load_configuration(); -} - -void AnalogInput::update() { this->emit(output_scale * analog_reader->read()); } -void AnalogInput::start() { if (this->analog_reader->configure()) { ReactESP::app->onRepeat(read_delay, [this]() { this->update(); }); } } +void AnalogInput::update() { this->emit(output_scale * analog_reader->read()); } + void AnalogInput::get_configuration(JsonObject& root) { root["read_delay"] = read_delay; }; diff --git a/src/sensesp/sensors/analog_input.h b/src/sensesp/sensors/analog_input.h index 1e05ccdad..88671d1ab 100644 --- a/src/sensesp/sensors/analog_input.h +++ b/src/sensesp/sensors/analog_input.h @@ -42,7 +42,6 @@ class AnalogInput : public FloatSensor { public: AnalogInput(uint8_t pin = A0, unsigned int read_delay = 200, String config_path = "", float output_scale = 1024.); - void start() override final; private: uint8_t pin; diff --git a/src/sensesp/sensors/constant_sensor.h b/src/sensesp/sensors/constant_sensor.h index 47fa85cde..967e51f1c 100644 --- a/src/sensesp/sensors/constant_sensor.h +++ b/src/sensesp/sensors/constant_sensor.h @@ -25,7 +25,8 @@ namespace sensesp { * int send_delay = 30; * const char* config_path = "/tanks.water_capacity"; * auto *capacity = new ConstantFloatSensor(send_delay,config_path); - * capacity->connect_to(new SKOutputFloat(sk_path, sk_config_path, sk_metadata)); + * capacity->connect_to(new SKOutputFloat(sk_path, sk_config_path, + * sk_metadata)); * * To set or get the the value of the virtual sensor for use in your code: * @@ -55,8 +56,7 @@ class ConstantSensor : public SensorT { ConstantSensor(T value, int send_interval = 30, String config_path = "") : SensorT(config_path), value_{value}, send_interval_{send_interval} { this->load_configuration(); - } - void start() override { + ReactESP::app->onRepeat(send_interval_ * 1000, [this]() { this->emit(value_); }); } diff --git a/src/sensesp/sensors/digital_input.cpp b/src/sensesp/sensors/digital_input.cpp index 7d210fea6..e66d28d00 100644 --- a/src/sensesp/sensors/digital_input.cpp +++ b/src/sensesp/sensors/digital_input.cpp @@ -96,21 +96,4 @@ bool DigitalInputDebounceCounter::set_configuration(const JsonObject& config) { return true; } -void DigitalInputChange::start() { - ReactESP::app->onInterrupt(pin_, interrupt_type_, [this]() { - output = (bool)digitalRead(pin_); - triggered_ = true; - }); - - ReactESP::app->onTick([this]() { - if (triggered_ && (output != last_output_)) { - noInterrupts(); - triggered_ = false; - last_output_ = output; - interrupts(); - notify(); - } - }); -} - } // namespace sensesp diff --git a/src/sensesp/sensors/digital_input.h b/src/sensesp/sensors/digital_input.h index 482811cea..e3f2686a1 100644 --- a/src/sensesp/sensors/digital_input.h +++ b/src/sensesp/sensors/digital_input.h @@ -1,10 +1,10 @@ #ifndef _digital_input_H_ #define _digital_input_H_ -#include "sensor.h" - #include +#include "sensor.h" + namespace sensesp { /** @@ -54,9 +54,7 @@ class DigitalInputState : public DigitalInput, public SensorT { read_delay_{read_delay}, triggered_{false} { load_configuration(); - } - virtual void start() override final { ReactESP::app->onRepeat(read_delay_, [this]() { emit(digitalRead(pin_)); }); } @@ -91,9 +89,7 @@ class DigitalInputCounter : public DigitalInput, public SensorT { DigitalInputCounter(uint8_t pin, int pin_mode, int interrupt_type, unsigned int read_delay, String config_path = "") : DigitalInputCounter(pin, pin_mode, interrupt_type, read_delay, - config_path, [this]() { this->counter_++; }) {} - - void start() override final { + config_path, [this]() { this->counter_++; }) { ReactESP::app->onInterrupt(pin_, interrupt_type_, interrupt_handler_); ReactESP::app->onRepeat(read_delay_, [this]() { @@ -200,8 +196,22 @@ class DigitalInputChange : public DigitalInput, public SensorT { load_configuration(); output = (bool)digitalRead(pin_); last_output_ = !output; // ensure that we always send the first output + + ReactESP::app->onInterrupt(pin_, interrupt_type_, [this]() { + output = (bool)digitalRead(pin_); + triggered_ = true; + }); + + ReactESP::app->onTick([this]() { + if (triggered_ && (output != last_output_)) { + noInterrupts(); + triggered_ = false; + last_output_ = output; + interrupts(); + notify(); + } + }); } - virtual void start() override final; private: int interrupt_type_; diff --git a/src/sensesp/sensors/digital_output.cpp b/src/sensesp/sensors/digital_output.cpp index 6cc3bba5f..2b2b2ab02 100644 --- a/src/sensesp/sensors/digital_output.cpp +++ b/src/sensesp/sensors/digital_output.cpp @@ -9,7 +9,7 @@ DigitalOutput::DigitalOutput(int pin) { pinMode(pin, OUTPUT); } -void DigitalOutput::set_input(bool new_value, uint8_t inputChannel) { +void DigitalOutput::set(bool new_value, uint8_t inputChannel) { digitalWrite(pin_number_, new_value); this->emit(new_value); } diff --git a/src/sensesp/sensors/digital_output.h b/src/sensesp/sensors/digital_output.h index d1667facb..af01dcc9d 100644 --- a/src/sensesp/sensors/digital_output.h +++ b/src/sensesp/sensors/digital_output.h @@ -17,7 +17,7 @@ namespace sensesp { class DigitalOutput : public BooleanTransform { public: DigitalOutput(int pin); - void set_input(bool new_value, uint8_t input_channel = 0) override; + void set(bool new_value, uint8_t input_channel = 0) override; private: int pin_number_; diff --git a/src/sensesp/sensors/sensor.cpp b/src/sensesp/sensors/sensor.cpp index e443a59b2..c9752578b 100644 --- a/src/sensesp/sensors/sensor.cpp +++ b/src/sensesp/sensors/sensor.cpp @@ -4,7 +4,7 @@ namespace sensesp { std::set Sensor::sensors_; -Sensor::Sensor(String config_path) : Configurable{config_path}, Startable(10) { +Sensor::Sensor(String config_path) : Configurable{config_path} { sensors_.insert(this); } diff --git a/src/sensesp/sensors/sensor.h b/src/sensesp/sensors/sensor.h index 008e4395e..382668d97 100644 --- a/src/sensesp/sensors/sensor.h +++ b/src/sensesp/sensors/sensor.h @@ -5,7 +5,6 @@ #include "sensesp/system/configurable.h" #include "sensesp/system/observable.h" -#include "sensesp/system/startable.h" #include "sensesp/system/valueproducer.h" namespace sensesp { @@ -25,9 +24,7 @@ namespace sensesp { * variable to be configurable at run-time in your project, don't provide a * config_path when you construct the class. */ -class Sensor : virtual public Observable, - public Configurable, - public Startable { +class Sensor : virtual public Observable, public Configurable { public: Sensor(String config_path = ""); @@ -90,15 +87,14 @@ class RepeatSensor : public SensorT { std::function*)> callback) : SensorT(""), repeat_interval_ms_(repeat_interval_ms), - emitting_callback_(callback) {} - - void start() override final { + emitting_callback_(callback) { if (emitting_callback_ != nullptr) { ReactESP::app->onRepeat(repeat_interval_ms_, [this]() { emitting_callback_(this); }); } else { - ReactESP::app->onRepeat(repeat_interval_ms_, - [this]() { this->emit(this->returning_callback_()); }); + ReactESP::app->onRepeat(repeat_interval_ms_, [this]() { + this->emit(this->returning_callback_()); + }); } } diff --git a/src/sensesp/sensors/system_info.cpp b/src/sensesp/sensors/system_info.cpp index 2c1b187cf..e8e75f059 100644 --- a/src/sensesp/sensors/system_info.cpp +++ b/src/sensesp/sensors/system_info.cpp @@ -1,7 +1,8 @@ #include "system_info.h" -#include "Arduino.h" #include + +#include "Arduino.h" #include "sensesp.h" namespace sensesp { @@ -22,35 +23,12 @@ void SystemHz::update() { this->notify(); } -void SystemHz::start() { - elapsed_millis_ = 0; - - ReactESP::app->onTick([this]() { this->tick(); }); - ReactESP::app->onRepeat(1000, [this]() { this->update(); }); -} - void FreeMem::update() { this->emit(ESP.getFreeHeap()); } -void FreeMem::start() { - ReactESP::app->onRepeat(1000, [this]() { this->update(); }); -} - void Uptime::update() { this->emit(millis() / 1000.); } -void Uptime::start() { - ReactESP::app->onRepeat(1000, [this]() { this->update(); }); -} - void IPAddrDev::update() { this->emit(WiFi.localIP().toString()); } -void IPAddrDev::start() { - ReactESP::app->onRepeat(10000, [this]() { this->update(); }); -} - -void WiFiSignal::start() { - ReactESP::app->onRepeat(3000, [this]() { this->update(); }); -} - void WiFiSignal::update() { this->emit(WiFi.RSSI()); } } // namespace sensesp diff --git a/src/sensesp/sensors/system_info.h b/src/sensesp/sensors/system_info.h index 25bc11a65..7bc7a942d 100644 --- a/src/sensesp/sensors/system_info.h +++ b/src/sensesp/sensors/system_info.h @@ -45,8 +45,12 @@ void connect_system_info_sensor(SensorT* sensor, String prefix, **/ class SystemHz : public FloatSensor { public: - SystemHz() {} - void start() override final; + SystemHz() { + elapsed_millis_ = 0; + + ReactESP::app->onTick([this]() { this->tick(); }); + ReactESP::app->onRepeat(1000, [this]() { this->update(); }); + } String get_value_name() { return "systemhz"; } private: @@ -66,8 +70,9 @@ class SystemHz : public FloatSensor { **/ class FreeMem : public IntSensor { public: - FreeMem() {} - void start() override final; + FreeMem() { + ReactESP::app->onRepeat(1000, [this]() { this->update(); }); + } String get_value_name() { return "freemem"; } private: @@ -84,8 +89,9 @@ class FreeMem : public IntSensor { **/ class Uptime : public FloatSensor { public: - Uptime() {} - void start() override final; + Uptime() { + ReactESP::app->onRepeat(1000, [this]() { this->update(); }); + } String get_value_name() { return "uptime"; } private: @@ -102,8 +108,9 @@ class Uptime : public FloatSensor { **/ class IPAddrDev : public StringSensor { public: - IPAddrDev() {} - void start() override final; + IPAddrDev() { + ReactESP::app->onRepeat(10000, [this]() { this->update(); }); + } String get_value_name() { return "ipaddr"; } private: @@ -120,8 +127,9 @@ class IPAddrDev : public StringSensor { **/ class WiFiSignal : public FloatSensor { public: - WiFiSignal() {} - void start() override final; + WiFiSignal() { + ReactESP::app->onRepeat(3000, [this]() { this->update(); }); + } String get_value_name() { return "wifisignal"; } private: diff --git a/src/sensesp/signalk/signalk_delta_queue.cpp b/src/sensesp/signalk/signalk_delta_queue.cpp index b3cf55068..9abf5e278 100644 --- a/src/sensesp/signalk/signalk_delta_queue.cpp +++ b/src/sensesp/signalk/signalk_delta_queue.cpp @@ -9,11 +9,11 @@ namespace sensesp { SKDeltaQueue::SKDeltaQueue(unsigned int max_buffer_size) - : Startable{0}, max_buffer_size{max_buffer_size}, meta_sent_{false} { - semaphore_ = xSemaphoreCreateRecursiveMutex(); - } + : max_buffer_size{max_buffer_size}, meta_sent_{false} { + semaphore_ = xSemaphoreCreateRecursiveMutex(); -void SKDeltaQueue::start() { this->connect_emitters(); } + ReactESP::app->onDelay(0, [this]() { this->connect_emitters(); }); +} bool SKDeltaQueue::take_semaphore(unsigned long int timeout_ms) { if (timeout_ms == 0) { @@ -50,74 +50,22 @@ bool SKDeltaQueue::data_available() { return available; } -unsigned int SKDeltaQueue::get_doc_size_estimate() { - take_semaphore(); - int buf_size = get_buffer_size(); - int estimate = - 2 * JSON_OBJECT_SIZE(1) + // source and one update - JSON_ARRAY_SIZE(1) + // one update - JSON_ARRAY_SIZE(buf_size) + // buf_size values in the update - buf_size * JSON_OBJECT_SIZE(2) + // two key-value pairs in each object - 200; // some extra headroom to hide embarrassing bugs - - for (auto item : buffer) { - // also reserve space for the pre-rendered strings - estimate += item.length() + 1; - } - release_semaphore(); - return estimate; -} - -unsigned int SKDeltaQueue::get_metadata_size_estimate() { - int num_metadata = SKEmitter::get_sources().size(); - int estimate = JSON_ARRAY_SIZE(num_metadata); - - int num_fields; - auto update_estimate = [&](String& field) { - if (!field.isEmpty()) { - num_fields++; - estimate += field.length() + 1; - } - }; - - for (auto const& source : SKEmitter::get_sources()) { - num_fields = 0; - auto metadata = source->get_metadata(); - if (metadata == NULL) { - continue; - } - update_estimate(metadata->units_); - update_estimate(metadata->display_name_); - update_estimate(metadata->description_); - update_estimate(metadata->short_name_); - - estimate += JSON_OBJECT_SIZE(num_fields); - } - return estimate; -} - void SKDeltaQueue::get_delta(String& output) { // estimate the size of the serialized json string - unsigned int doc_size_estimate = get_doc_size_estimate(); - - if (!meta_sent_) { - doc_size_estimate += JSON_OBJECT_SIZE(1) + get_metadata_size_estimate(); - } - - DynamicJsonDocument jsonDoc(doc_size_estimate); + JsonDocument jsonDoc; // JsonObject delta = jsonDoc.as(); - JsonArray updates = jsonDoc.createNestedArray("updates"); + JsonArray updates = jsonDoc["updates"].to(); if (!meta_sent_) { this->add_metadata(updates); } - JsonObject current = updates.createNestedObject(); - JsonObject source = current.createNestedObject("source"); + JsonObject current = updates.add(); + JsonObject source = current["source"].to(); source["label"] = SensESPBaseApp::get_hostname(); - JsonArray values = current.createNestedArray("values"); + JsonArray values = current["values"].to(); take_semaphore(); while (!buffer.empty()) { @@ -132,8 +80,8 @@ void SKDeltaQueue::get_delta(String& output) { } void SKDeltaQueue::add_metadata(JsonArray updates) { - JsonObject new_entry = updates.createNestedObject(); - JsonArray meta = new_entry.createNestedArray("meta"); + JsonObject new_entry = updates.add(); + JsonArray meta = new_entry["meta"].to(); for (auto const& sk_source : SKEmitter::get_sources()) { sk_source->add_metadata(meta); } diff --git a/src/sensesp/signalk/signalk_delta_queue.h b/src/sensesp/signalk/signalk_delta_queue.h index 6fab4a8bf..0c6f993b8 100644 --- a/src/sensesp/signalk/signalk_delta_queue.h +++ b/src/sensesp/signalk/signalk_delta_queue.h @@ -5,8 +5,6 @@ #include -#include "sensesp/system/startable.h" - namespace sensesp { /** @@ -16,7 +14,7 @@ namespace sensesp { * for each possible output channel (WSClient, NMEA 2000 messages, * carrier pigeons). */ -class SKDeltaQueue : public Startable { +class SKDeltaQueue { public: SKDeltaQueue(unsigned int max_buffer_size = 20); void append(const String val); @@ -33,8 +31,6 @@ class SKDeltaQueue : public Startable { release_semaphore(); } - virtual void start() override; - bool take_semaphore(unsigned long int timeout_ms = 0); void release_semaphore(); diff --git a/src/sensesp/signalk/signalk_metadata.cpp b/src/sensesp/signalk/signalk_metadata.cpp index ee8b4963c..651ef246c 100644 --- a/src/sensesp/signalk/signalk_metadata.cpp +++ b/src/sensesp/signalk/signalk_metadata.cpp @@ -11,9 +11,9 @@ SKMetadata::SKMetadata(String units, String display_name, String description, timeout_{timeout} {} void SKMetadata::add_entry(String sk_path, JsonArray& meta) { - JsonObject json = meta.createNestedObject(); + JsonObject json = meta.add(); json["path"] = sk_path; - JsonObject val = json.createNestedObject("value"); + JsonObject val = json["value"].to(); if (!this->display_name_.isEmpty()) { val["displayName"] = this->display_name_; diff --git a/src/sensesp/signalk/signalk_output.h b/src/sensesp/signalk/signalk_output.h index ed09864fd..ab17ed463 100644 --- a/src/sensesp/signalk/signalk_output.h +++ b/src/sensesp/signalk/signalk_output.h @@ -37,18 +37,17 @@ class SKOutput : public SKEmitter, public SymmetricTransform { */ SKOutput(String sk_path, String config_path = "", SKMetadata* meta = NULL) : SKEmitter(sk_path), SymmetricTransform(config_path), meta_{meta} { - Startable::set_start_priority(-5); this->load_configuration(); } SKOutput(String sk_path, SKMetadata* meta) : SKOutput(sk_path, "", meta) {} - virtual void set_input(T new_value, uint8_t input_channel = 0) override { + virtual void set(T new_value, uint8_t input_channel = 0) override { this->ValueProducer::emit(new_value); } virtual String as_signalk() override { - DynamicJsonDocument json_doc(1024); + JsonDocument json_doc; String json; json_doc["path"] = this->get_sk_path(); json_doc["value"] = ValueProducer::output; @@ -94,7 +93,7 @@ class SKOutputRawJson : public SKOutput { : SKOutput(sk_path, config_path, meta) {} virtual String as_signalk() override { - DynamicJsonDocument json_doc(4096); + JsonDocument json_doc; String json; json_doc["path"] = this->get_sk_path(); json_doc["value"] = serialized(ValueProducer::output); diff --git a/src/sensesp/signalk/signalk_position.cpp b/src/sensesp/signalk/signalk_position.cpp index 9976f73eb..498cf6123 100644 --- a/src/sensesp/signalk/signalk_position.cpp +++ b/src/sensesp/signalk/signalk_position.cpp @@ -14,10 +14,10 @@ namespace sensesp { */ template <> String SKOutput::as_signalk() { - DynamicJsonDocument json_doc(1024); + JsonDocument json_doc; String json; json_doc["path"] = this->get_sk_path(); - JsonObject value = json_doc.createNestedObject("value"); + JsonObject value = json_doc["value"].to(); value["latitude"] = output.latitude; value["longitude"] = output.longitude; if (output.altitude != kPositionInvalidAltitude) { diff --git a/src/sensesp/signalk/signalk_put_request.cpp b/src/sensesp/signalk/signalk_put_request.cpp index 78218107c..bfc11fd39 100644 --- a/src/sensesp/signalk/signalk_put_request.cpp +++ b/src/sensesp/signalk/signalk_put_request.cpp @@ -10,8 +10,8 @@ extern ReactESP app; std::map SKRequest::request_map; String SKRequest::send_request( - DynamicJsonDocument& request, - std::function callback, uint32_t timeout) { + JsonDocument& request, + std::function callback, uint32_t timeout) { // Create a new PendingRequest object to track this request... PendingRequest* pending_request = new PendingRequest(); @@ -56,7 +56,7 @@ SKRequest::PendingRequest* SKRequest::get_request(String request_id) { } } -void SKRequest::handle_response(DynamicJsonDocument& response) { +void SKRequest::handle_response(JsonDocument& response) { String request_id = response["requestId"]; PendingRequest* pending_request = get_request(request_id); if (pending_request != nullptr) { @@ -98,14 +98,14 @@ SKPutRequestBase::SKPutRequestBase(String sk_path, String config_path, } void SKPutRequestBase::send_put_request() { - DynamicJsonDocument doc(1024); + JsonDocument doc; JsonObject root = doc.to(); - JsonObject put_data = root.createNestedObject("put"); + JsonObject put_data = root["put"].to(); put_data["path"] = sk_path; set_put_value(put_data); this->pending_request_id_ = SKRequest::send_request( doc, - [this](DynamicJsonDocument& response) { this->on_response(response); }, + [this](JsonDocument& response) { this->on_response(response); }, timeout); } @@ -113,7 +113,7 @@ bool SKPutRequestBase::request_pending() { return (get_request(this->pending_request_id_) != nullptr); } -void SKPutRequestBase::on_response(DynamicJsonDocument& response) { +void SKPutRequestBase::on_response(JsonDocument& response) { String request_id = response["requestId"]; String state = response["state"]; debugD("Response %s received for PUT request: %s", state.c_str(), diff --git a/src/sensesp/signalk/signalk_put_request.h b/src/sensesp/signalk/signalk_put_request.h index 686350c08..3c4dcec10 100644 --- a/src/sensesp/signalk/signalk_put_request.h +++ b/src/sensesp/signalk/signalk_put_request.h @@ -31,15 +31,15 @@ class SKRequest { * FAILED response to be received from the server * @return The request Id that is sent to the server. */ - static String send_request(DynamicJsonDocument& request, - std::function callback, + static String send_request(JsonDocument& request, + std::function callback, uint32_t timeout = 5000); /** * Is called by the web socket code to handle any incoming request responses * that is receives. */ - static void handle_response(DynamicJsonDocument& response); + static void handle_response(JsonDocument& response); protected: /// PendingRequest is a utility class used internally for @@ -47,7 +47,7 @@ class SKRequest { class PendingRequest { public: String request_id; - std::function callback; + std::function callback; DelayReaction* timeout_cleanup; }; @@ -117,7 +117,7 @@ class SKPutRequestBase : public SKRequest, public Configurable { * Called whenever a response to a request has been * received from the server */ - virtual void on_response(DynamicJsonDocument& response); + virtual void on_response(JsonDocument& response); String sk_path; uint32_t timeout; @@ -147,7 +147,7 @@ class SKPutRequest : public SKPutRequestBase, public ValueConsumer { : SKPutRequestBase(sk_path, config_path, timeout), ignore_duplicates{ignore_duplicates} {} - virtual void set_input(T new_value, uint8_t input_channel = 0) override { + virtual void set(T new_value, uint8_t input_channel = 0) override { if (ignore_duplicates && new_value == value) { return; } diff --git a/src/sensesp/signalk/signalk_time.cpp b/src/sensesp/signalk/signalk_time.cpp index 618bb43d0..7a7aab01e 100644 --- a/src/sensesp/signalk/signalk_time.cpp +++ b/src/sensesp/signalk/signalk_time.cpp @@ -9,7 +9,7 @@ SKOutputTime::SKOutputTime(String sk_path, String config_path) } String SKOutputTime::as_signalk() { - DynamicJsonDocument json_doc(1024); + JsonDocument json_doc; String json; json_doc["path"] = this->sk_path; json_doc["value"] = output; diff --git a/src/sensesp/system/base_button.h b/src/sensesp/system/base_button.h index 93c90931f..735fe71ce 100644 --- a/src/sensesp/system/base_button.h +++ b/src/sensesp/system/base_button.h @@ -5,7 +5,6 @@ #include "elapsedMillis.h" #include "sensesp.h" #include "sensesp/system/configurable.h" -#include "sensesp/system/startable.h" #include "sensesp_base_app.h" namespace sensesp { @@ -18,15 +17,13 @@ using namespace ace_button; * Button handlers are used to handle button presses. This is an abstract base * class that should be extended to implement a specific button handler. */ -class BaseButtonHandler : public Configurable, public Startable, public IEventHandler { +class BaseButtonHandler : public Configurable, public IEventHandler { public: BaseButtonHandler(int pin, String config_path = "") - : Configurable{config_path}, Startable(20) { + : Configurable{config_path} { button_ = new AceButton(pin); pinMode(pin, INPUT_PULLUP); - } - virtual void start() override { ButtonConfig* button_config = button_->getButtonConfig(); button_config->setIEventHandler(this); button_config->setFeature(ButtonConfig::kFeatureLongPress); @@ -41,7 +38,6 @@ class BaseButtonHandler : public Configurable, public Startable, public IEventHa AceButton* button_; }; - } // namespace sensesp #endif // SENSESP_SRC_SENSESP_SYSTEM_BASE_BUTTON_H_ diff --git a/src/sensesp/system/button.h b/src/sensesp/system/button.h index 79490f20c..1f61e309b 100644 --- a/src/sensesp/system/button.h +++ b/src/sensesp/system/button.h @@ -8,7 +8,6 @@ #include "sensesp.h" #include "sensesp/system/configurable.h" #include "sensesp/system/minimal_button.h" -#include "sensesp/system/startable.h" namespace sensesp { diff --git a/src/sensesp/system/configurable.cpp b/src/sensesp/system/configurable.cpp index c380920a1..2ca075c24 100644 --- a/src/sensesp/system/configurable.cpp +++ b/src/sensesp/system/configurable.cpp @@ -68,7 +68,7 @@ void Configurable::load_configuration() { } File f = SPIFFS.open(*filename, "r"); - DynamicJsonDocument jsonDoc(2048); + JsonDocument jsonDoc; auto error = deserializeJson(jsonDoc, f); if (error) { debugW("WARNING: Could not parse configuration for %s", @@ -95,12 +95,24 @@ void Configurable::save_configuration() { debugD("Saving configuration path %s to file %s", config_path_.c_str(), hash_path.c_str()); - DynamicJsonDocument jsonDoc(2048); - JsonObject obj = jsonDoc.createNestedObject("root"); + JsonDocument jsonDoc; + JsonObject obj = jsonDoc["root"].to(); get_configuration(obj); File f = SPIFFS.open(hash_path, "w"); serializeJson(obj, f); f.close(); } +void Configurable::clear_configuration() { + if (config_path_ == "") { + debugI("WARNING: Could not clear configuration (config_path not set)"); + } + String hash_path = String("/") + Base64Sha1(config_path_); + + if (SPIFFS.exists(hash_path)) { + debugD("Deleting configuration file %s", hash_path.c_str()); + SPIFFS.remove(hash_path); + } +} + } // namespace sensesp diff --git a/src/sensesp/system/configurable.h b/src/sensesp/system/configurable.h index 7a8477330..df2d061f6 100644 --- a/src/sensesp/system/configurable.h +++ b/src/sensesp/system/configurable.h @@ -79,6 +79,12 @@ class Configurable { */ virtual void save_configuration(); + /** + * @brief Clear existing configuration data. + * + */ + virtual void clear_configuration(); + protected: /** * Loads a configuration previously saved with save_configuration() and diff --git a/src/sensesp/system/hash.cpp b/src/sensesp/system/hash.cpp index 3c8f2baf8..b2ce1ec33 100644 --- a/src/sensesp/system/hash.cpp +++ b/src/sensesp/system/hash.cpp @@ -1,6 +1,7 @@ #include "hash.h" #include "mbedtls/md.h" +#include "mbedtls/md5.h" #include "mbedtls/base64.h" #include "sensesp/net/debug_output.h" @@ -13,8 +14,7 @@ using namespace sensesp; * Calculate a SHA-1 hash of the given payload. * * @param payload_str - * @param hash_output A 20-character output array - * @return String + * @param hash_output A 20-character binary output array */ void Sha1(String payload_str, uint8_t *hash_output) { const char *payload = payload_str.c_str(); @@ -24,7 +24,7 @@ void Sha1(String payload_str, uint8_t *hash_output) { mbedtls_md_context_t ctx; mbedtls_md_type_t md_type = MBEDTLS_MD_SHA1; - const size_t payload_length = strlen(payload); + const size_t payload_length = payload_str.length(); mbedtls_md_init(&ctx); mbedtls_md_setup(&ctx, mbedtls_md_info_from_type(md_type), 0); @@ -34,6 +34,33 @@ void Sha1(String payload_str, uint8_t *hash_output) { mbedtls_md_free(&ctx); } +/** + * @brief MD5 hash function + * + * Calculate an MD5 hash of the given payload. + * + * @param payload_str + */ +String MD5(String payload_str){ + const char *payload = payload_str.c_str(); + char output[33] = {0}; + + const size_t payload_length = payload_str.length(); + + mbedtls_md5_context _ctx; + uint8_t i; + uint8_t _buf[16] = {0}; + mbedtls_md5_init(&_ctx); + mbedtls_md5_starts_ret(&_ctx); + mbedtls_md5_update_ret(&_ctx, (const uint8_t *)payload, payload_length); + mbedtls_md5_finish_ret(&_ctx, _buf); + mbedtls_md5_free(&_ctx); + for(i = 0; i < 16; i++) { + sprintf(output + (i * 2), "%02x", _buf[i]); + } + return String(output); +} + /** * @brief A base64-encoded SHA-1 hash function * @@ -65,3 +92,4 @@ String Base64Sha1(String payload_str) { return encoded_str; } + diff --git a/src/sensesp/system/hash.h b/src/sensesp/system/hash.h index edf8725b7..00743a9dd 100644 --- a/src/sensesp/system/hash.h +++ b/src/sensesp/system/hash.h @@ -3,7 +3,8 @@ #include "sensesp.h" -void Sha1(String payload_str); +void Sha1(String payload_str, uint8_t *hash_output); +String MD5(String payload_str); String Base64Sha1(String payload_str); diff --git a/src/sensesp/system/lambda_consumer.h b/src/sensesp/system/lambda_consumer.h index dda3516dc..1a63b433e 100644 --- a/src/sensesp/system/lambda_consumer.h +++ b/src/sensesp/system/lambda_consumer.h @@ -27,7 +27,7 @@ class LambdaConsumer : public ValueConsumer { LambdaConsumer(std::function function) : ValueConsumer(), function{function} {} - void set_input(IN input, uint8_t input_channel = 0) override { + void set(IN input, uint8_t input_channel = 0) override { function(input); } diff --git a/src/sensesp/system/led_blinker.cpp b/src/sensesp/system/led_blinker.cpp index f1e0872b1..a249c3482 100644 --- a/src/sensesp/system/led_blinker.cpp +++ b/src/sensesp/system/led_blinker.cpp @@ -8,7 +8,10 @@ namespace sensesp { #define max(a, b) ((a) > (b) ? (a) : (b)) -BaseBlinker::BaseBlinker(int pin) : pin_{pin} { pinMode(pin, OUTPUT); } +BaseBlinker::BaseBlinker(int pin) : pin_{pin} { + pinMode(pin, OUTPUT); + ReactESP::app->onDelay(1, [this]() { this->tick(); }); +} /** * Turn the LED on or off. @@ -75,8 +78,6 @@ void BaseBlinker::set_enabled(bool state) { } } -void BaseBlinker::start() { this->tick(); } - PeriodicBlinker::PeriodicBlinker(int pin, unsigned int period) : BaseBlinker(pin), period_{period} {} diff --git a/src/sensesp/system/led_blinker.h b/src/sensesp/system/led_blinker.h index 396d52135..71b9116bd 100644 --- a/src/sensesp/system/led_blinker.h +++ b/src/sensesp/system/led_blinker.h @@ -4,7 +4,6 @@ #include #include "sensesp/net/ws_client.h" -#include "startable.h" namespace sensesp { @@ -13,7 +12,7 @@ namespace sensesp { /** * @brief A base class for LED blinker classes. */ -class BaseBlinker : public Startable { +class BaseBlinker { public: BaseBlinker(int pin); void set_state(bool state); @@ -25,7 +24,6 @@ class BaseBlinker : public Startable { * change the LED state. */ virtual void tick() = 0; - void start() override; protected: int pin_; diff --git a/src/sensesp/system/local_debug.cpp b/src/sensesp/system/local_debug.cpp index 3a6535ba1..aa842f587 100644 --- a/src/sensesp/system/local_debug.cpp +++ b/src/sensesp/system/local_debug.cpp @@ -4,7 +4,7 @@ namespace sensesp { #ifndef DEBUG_DISABLED -bool LocalDebug::begin(String hostname, uint8_t startingDebugLevel) { +bool LocalDebug::begin(uint8_t startingDebugLevel) { lastDebugLevel_ = startingDebugLevel; return true; } diff --git a/src/sensesp/system/local_debug.h b/src/sensesp/system/local_debug.h index 066708996..9c700a3f0 100644 --- a/src/sensesp/system/local_debug.h +++ b/src/sensesp/system/local_debug.h @@ -52,7 +52,7 @@ namespace sensesp { class LocalDebug { public: - bool begin(String hostname, uint8_t startingDebugLevel = DEBUG); + bool begin(uint8_t startingDebugLevel = DEBUG); void setSerialEnabled(bool enable) {} // No-op diff --git a/src/sensesp/system/minimal_button.h b/src/sensesp/system/minimal_button.h index 767301c70..628c570bf 100644 --- a/src/sensesp/system/minimal_button.h +++ b/src/sensesp/system/minimal_button.h @@ -6,7 +6,6 @@ #include "sensesp.h" #include "sensesp/system/base_button.h" #include "sensesp/system/configurable.h" -#include "sensesp/system/startable.h" #include "sensesp_base_app.h" namespace sensesp { @@ -15,10 +14,10 @@ using namespace ace_button; /** * @brief Minimal Button Handler - * + * * This is a minimal button handler that implements restart on short press and * factory reset on a very long press. - * + * * This class may be extended to implement more complex button handlers. */ class MinimalButtonHandler : public BaseButtonHandler { diff --git a/src/sensesp/system/observablevalue.h b/src/sensesp/system/observablevalue.h index 9eb92b267..adadc2b56 100644 --- a/src/sensesp/system/observablevalue.h +++ b/src/sensesp/system/observablevalue.h @@ -1,6 +1,7 @@ #ifndef _observablevalue_H #define _observablevalue_H +#include "configurable.h" #include "observable.h" #include "valueproducer.h" @@ -26,23 +27,56 @@ bool operator!=(ObservableValue const& lhs, T const& rhs) { template class ObservableValue : public ValueProducer { public: - ObservableValue() {} + ObservableValue() : ValueProducer() {} - ObservableValue(const T& value) { ValueProducer::output = value; } + ObservableValue(const T& value) : ValueProducer(value) {} - void set(const T& value) { this->ValueProducer::emit(value); } + virtual void set(const T& value) { this->ValueProducer::emit(value); } const T& operator=(const T& value) { set(value); return value; } + protected: template friend bool operator==(ObservableValue const& lhs, U const& rhs); template friend bool operator!=(ObservableValue const& lhs, U const& rhs); }; +template +class PersistingObservableValue : public ObservableValue, + public Configurable { + public: + PersistingObservableValue() : Configurable() {} + + PersistingObservableValue(const T& value, String config_path = "", + String description = "", int sort_order = 0) + : ObservableValue(value), + Configurable(config_path, description, sort_order) { + load_configuration(); + } + + virtual void set(const T& value) override { + ObservableValue::set(value); + this->save_configuration(); + } + + protected: + virtual void get_configuration(JsonObject& doc) override { + doc["value"] = this->output; + } + + virtual bool set_configuration(const JsonObject& config) override { + if (!config.containsKey("value")) { + return false; + } + ObservableValue::set(config["value"]); + return true; + } +}; + } // namespace sensesp #endif diff --git a/src/sensesp/system/pwm_output.cpp b/src/sensesp/system/pwm_output.cpp index a63082d5d..69e784d29 100644 --- a/src/sensesp/system/pwm_output.cpp +++ b/src/sensesp/system/pwm_output.cpp @@ -18,7 +18,7 @@ PWMOutput::PWMOutput(int pin, int pwm_channel) { } } -void PWMOutput::set_input(float new_value, uint8_t pwm_channel) { +void PWMOutput::set(float new_value, uint8_t pwm_channel) { if (pwm_channel == 0) { // Use the default channel, as zero is the SensESP default // input_channel for ValueConsumers diff --git a/src/sensesp/system/pwm_output.h b/src/sensesp/system/pwm_output.h index 99ff914cd..767e1c1dd 100644 --- a/src/sensesp/system/pwm_output.h +++ b/src/sensesp/system/pwm_output.h @@ -19,7 +19,7 @@ namespace sensesp { *

Channels can be auto-assigned to a pin or they can be declared * explicitly in your code. The PWM value is set either by * calling `set_pwm()`, or by using an instance of `PWMOutput` - * and calling the `set_input()` method as defined in `ValueConsumer<>`. + * and calling the `set()` method as defined in `ValueConsumer<>`. *

On an esp32, the "channel" corresponds to one of the timer * channels available on the onboard chip. Explicit declaration * of a channel may or may not be necessary depending on other @@ -48,7 +48,7 @@ class PWMOutput : public ValueConsumer { * pwm_channel is zero, the channel assigned when the PWMOutput instance * was instantiated will be used. */ - virtual void set_input(float new_value, uint8_t pwm_channel = 0) override; + virtual void set(float new_value, uint8_t pwm_channel = 0) override; /** * Assigns the specified GPIO pin to the specified pwm channel. diff --git a/src/sensesp/system/resettable.h b/src/sensesp/system/resettable.h index fa6ce6906..92c1bc02e 100644 --- a/src/sensesp/system/resettable.h +++ b/src/sensesp/system/resettable.h @@ -41,7 +41,7 @@ class Resettable { class ResettableCompare { public: - bool operator()(Resettable* a, Resettable* b) { + bool operator()(const Resettable* a, const Resettable* b) { return a->priority < b->priority; } }; diff --git a/src/sensesp/system/rgb_led.cpp b/src/sensesp/system/rgb_led.cpp index 1a22eb8a1..1573c237c 100644 --- a/src/sensesp/system/rgb_led.cpp +++ b/src/sensesp/system/rgb_led.cpp @@ -32,7 +32,7 @@ static float get_pwm(long rgb, int shift_right, bool common_anode) { } } -void RgbLed::set_input(long new_value, uint8_t input_channel) { +void RgbLed::set(long new_value, uint8_t input_channel) { if (led_r_channel_ >= 0) { float r = get_pwm(new_value, 16, common_anode_); PWMOutput::set_pwm(led_r_channel_, r); @@ -49,11 +49,11 @@ void RgbLed::set_input(long new_value, uint8_t input_channel) { } } -void RgbLed::set_input(bool new_value, uint8_t input_channel) { +void RgbLed::set(bool new_value, uint8_t input_channel) { if (new_value) { - set_input(led_on_rgb_, input_channel); + set(led_on_rgb_, input_channel); } else { - set_input(led_off_rgb_, input_channel); + set(led_off_rgb_, input_channel); } } diff --git a/src/sensesp/system/rgb_led.h b/src/sensesp/system/rgb_led.h index dd5cb33e6..5b3ef3d1b 100644 --- a/src/sensesp/system/rgb_led.h +++ b/src/sensesp/system/rgb_led.h @@ -13,8 +13,8 @@ namespace sensesp { * depth numbers composed of three 8 bit channels for Red, Green, * and Blue (see https://techterms.com/definition/rgb) *

Color LEDs can be controlled by either setting the specific - * color to be displayed via the set_input(long), or by setting the - * on/off state via set_input(bool). When specifying a simple on/off + * color to be displayed via the set(long), or by setting the + * on/off state via set(bool). When specifying a simple on/off * via the the bool input, the default ON or OFF colors specified in the * constructor are used. *

You do not have to define all three channels (for example, if @@ -55,14 +55,14 @@ class RgbLed : public Configurable, * Used to set the current display state of the LED. * @param new_value The RGB color to display. */ - virtual void set_input(long new_value, uint8_t input_channel = 0) override; + virtual void set(long new_value, uint8_t input_channel = 0) override; /** * Used to set the current display state of the LED with a simple on/off * boolean value. Using TRUE for new_value sets the color to the ON color. * Using FALSE uses the OFF color. */ - virtual void set_input(bool new_value, uint8_t input_channel = 0) override; + virtual void set(bool new_value, uint8_t input_channel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; diff --git a/src/sensesp/system/startable.cpp b/src/sensesp/system/startable.cpp deleted file mode 100644 index 839f03ac5..000000000 --- a/src/sensesp/system/startable.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include "startable.h" - -#include "sensesp.h" - -namespace sensesp { - -std::priority_queue, StartableCompare> - Startable::startable_list_; - -Startable::Startable(int priority) : priority_{priority} { - Startable::startable_list_.push(this); -} - -void Startable::start_all() { - debugI("Starting all required sensors and transforms"); - while (!startable_list_.empty()) { - auto& obj = *startable_list_.top(); - obj.start(); - startable_list_.pop(); - } // while -} - -} // namespace sensesp diff --git a/src/sensesp/system/startable.h b/src/sensesp/system/startable.h deleted file mode 100644 index 6d5f6b060..000000000 --- a/src/sensesp/system/startable.h +++ /dev/null @@ -1,64 +0,0 @@ -#ifndef _startable_H_ -#define _startable_H_ - -#include - -namespace sensesp { - -class StartableCompare; - -/** - * @brief Automatic calling of the start() method at startup - * - * Classes that implement "Startable" will have their start() method - * called automatically at startup when the SensESP app itself - * is started. The optional priority allows for certain classes - * to be initialized first. The default priority is zero. - * A higher priority (i.e. greater than zero) will be started before a - * lower one (i.e. less than zero). - */ -class Startable { - public: - Startable(int priority = 0); - - /** - * Called during the initialization process. Override this method - * to add runtime initialization code to your class - */ - virtual void start() {} - - const int get_start_priority() { return priority_; } - - void set_start_priority(int priority) { this->priority_ = priority; } - - /** - * Called by the SensESP framework to initialize all of the objects - * marked with this class. They will be initialized in priorty - * order. If you want to see see the name of each sensor and transport - * in the serial monitor as each one is enabled, add the following - * to your project's platformio.ini file: - * - * build_unflags = -fno-rtti - */ - static void start_all(); - - friend class StartableCompare; - - private: - int priority_; - - static std::priority_queue, - StartableCompare> - startable_list_; -}; - -class StartableCompare { - public: - bool operator()(const Startable* lhs, const Startable* rhs) const { - return lhs->priority_ < rhs->priority_; - } -}; - -} // namespace sensesp - -#endif diff --git a/src/sensesp/system/system_status_led.cpp b/src/sensesp/system/system_status_led.cpp index 458a5fb97..c7c70c0ab 100644 --- a/src/sensesp/system/system_status_led.cpp +++ b/src/sensesp/system/system_status_led.cpp @@ -56,7 +56,7 @@ void SystemStatusLed::set_ws_connected() { blinker_->set_pattern(ws_connected_pattern); } -void SystemStatusLed::set_input(SystemStatus new_value, uint8_t input_channel) { +void SystemStatusLed::set(SystemStatus new_value, uint8_t input_channel) { switch (new_value) { case SystemStatus::kWifiNoAP: this->set_wifi_no_ap(); @@ -82,7 +82,7 @@ void SystemStatusLed::set_input(SystemStatus new_value, uint8_t input_channel) { } } -void SystemStatusLed::set_input(int new_value, uint8_t input_channel) { +void SystemStatusLed::set(int new_value, uint8_t input_channel) { blinker_->blip(); } diff --git a/src/sensesp/system/system_status_led.h b/src/sensesp/system/system_status_led.h index cfc09435b..4bf167b2e 100644 --- a/src/sensesp/system/system_status_led.h +++ b/src/sensesp/system/system_status_led.h @@ -29,9 +29,9 @@ class SystemStatusLed : public ValueConsumer, public: SystemStatusLed(int pin); - virtual void set_input(SystemStatus new_value, + virtual void set(SystemStatus new_value, uint8_t input_channel = 0) override; - virtual void set_input(int new_value, uint8_t input_channel = 0) override; + virtual void set(int new_value, uint8_t input_channel = 0) override; }; } // namespace sensesp diff --git a/src/sensesp/system/task_queue_producer.h b/src/sensesp/system/task_queue_producer.h index e9b1e1473..a7c241212 100644 --- a/src/sensesp/system/task_queue_producer.h +++ b/src/sensesp/system/task_queue_producer.h @@ -42,17 +42,13 @@ class TaskQueueProducer : public ObservableValue { TaskQueueProducer(const T& value, int queue_size = 1, unsigned int poll_rate = 990) : TaskQueueProducer(value, ReactESP::app, queue_size, poll_rate) {} - bool set(const T& value) { + virtual void set(const T& value) override { int retval; if (queue_size_ == 1) { retval = xQueueOverwrite(queue_, &value); } else { retval = xQueueSend(queue_, &value, 0); } - if (retval != pdTRUE) { - return false; - } - return true; } private: diff --git a/src/sensesp/system/valueconsumer.h b/src/sensesp/system/valueconsumer.h index 4b780818b..dcaa58762 100644 --- a/src/sensesp/system/valueconsumer.h +++ b/src/sensesp/system/valueconsumer.h @@ -14,7 +14,7 @@ class ValueProducer; /** * @brief A base class for piece of code (like a transform) that * accepts data for input. ValueConsumers can accept one or more input values - * via the set_input() method. They are connected to `ValueProducers` + * via the set() method. They are connected to `ValueProducers` * via the `connect_to()` method. * @see ValueProducer::connect_to() */ @@ -29,7 +29,16 @@ class ValueConsumer { * This parameter allows you to specify which input number the producer * is connecting to. For single input consumers, leave the index at zero. */ - virtual void set_input(T new_value, uint8_t input_channel = 0) {} + virtual void set(T new_value, uint8_t input_channel = 0) {} + + virtual void set_input(T new_value, uint8_t input_channel = 0) { + static bool warned = false; + if (!warned) { + warned = true; + debugW("set_input() is deprecated. Use set() instead."); + } + set(new_value, input_channel); + } /** * Registers this consumer with the specified producer, letting it @@ -41,7 +50,7 @@ class ValueConsumer { */ void connect_from(ValueProducer* producer, uint8_t input_channel = 0) { producer->attach([producer, this, input_channel]() { - this->set_input(producer->get(), input_channel); + this->set(producer->get(), input_channel); }); } }; diff --git a/src/sensesp/system/valueproducer.h b/src/sensesp/system/valueproducer.h index 68d1b561f..9bc4b7bf9 100644 --- a/src/sensesp/system/valueproducer.h +++ b/src/sensesp/system/valueproducer.h @@ -24,6 +24,7 @@ template class ValueProducer : virtual public Observable { public: ValueProducer() {} + ValueProducer(const T& initial_value) : output(initial_value) {} /** * Returns the current value of this producer @@ -37,11 +38,11 @@ class ValueProducer : virtual public Observable { * This parameter allows you to specify which input number this producer * is connecting to. For single input consumers, leave the index at * zero. - * @see ValueConsumer::set_input() + * @see ValueConsumer::set() */ void connect_to(ValueConsumer* consumer, uint8_t input_channel = 0) { this->attach([this, consumer, input_channel]() { - consumer->set_input(this->get(), input_channel); + consumer->set(this->get(), input_channel); }); } @@ -58,7 +59,7 @@ class ValueProducer : virtual public Observable { template void connect_to(ValueConsumer* consumer, uint8_t input_channel = 0) { this->attach([this, consumer, input_channel]() { - consumer->set_input(CT(this->get()), input_channel); + consumer->set(CT(this->get()), input_channel); }); } @@ -71,13 +72,13 @@ class ValueProducer : virtual public Observable { * This parameter allows you to specify which input number this producer * is connecting to. For single input consumers, leave the index at * zero. - * @see ValueConsumer::set_input() + * @see ValueConsumer::set() */ template Transform* connect_to(Transform* consumer_producer, uint8_t input_channel = 0) { this->attach([this, consumer_producer, input_channel]() { - consumer_producer->set_input(T(this->get()), input_channel); + consumer_producer->set(T(this->get()), input_channel); }); return consumer_producer; } @@ -98,7 +99,7 @@ class ValueProducer : virtual public Observable { Transform* connect_to(Transform* consumer_producer, uint8_t input_channel = 0) { this->attach([this, consumer_producer, input_channel]() { - consumer_producer->set_input(TT(this->get()), input_channel); + consumer_producer->set(TT(this->get()), input_channel); }); return consumer_producer; } diff --git a/src/sensesp/transforms/air_density.cpp b/src/sensesp/transforms/air_density.cpp index 65ca5e31d..a7be89158 100644 --- a/src/sensesp/transforms/air_density.cpp +++ b/src/sensesp/transforms/air_density.cpp @@ -8,7 +8,7 @@ namespace sensesp { AirDensity::AirDensity() : FloatTransform() {} -void AirDensity::set_input(float input, uint8_t inputChannel) { +void AirDensity::set(float input, uint8_t inputChannel) { inputs[inputChannel] = input; received |= 1 << inputChannel; if (received == @@ -22,7 +22,7 @@ void AirDensity::set_input(float input, uint8_t inputChannel) { float temp_kelvin = inputs[0]; float temp_celsius = temp_kelvin - 273.15; float relative_humidity = inputs[1]; - float pressure = inputs[3]; + float pressure = inputs[2]; // Saturation vapor pressure of water float saturation_pressure = diff --git a/src/sensesp/transforms/air_density.h b/src/sensesp/transforms/air_density.h index b95c2931b..f144b75d8 100644 --- a/src/sensesp/transforms/air_density.h +++ b/src/sensesp/transforms/air_density.h @@ -14,7 +14,7 @@ namespace sensesp { class AirDensity : public FloatTransform { public: AirDensity(); - virtual void set_input(float input, uint8_t inputChannel) override; + virtual void set(float input, uint8_t inputChannel) override; private: uint8_t received = 0; diff --git a/src/sensesp/transforms/analogvoltage.cpp b/src/sensesp/transforms/analogvoltage.cpp index a6037e767..36f5848d5 100644 --- a/src/sensesp/transforms/analogvoltage.cpp +++ b/src/sensesp/transforms/analogvoltage.cpp @@ -11,7 +11,7 @@ AnalogVoltage::AnalogVoltage(float max_voltage, float multiplier, float offset, load_configuration(); } -void AnalogVoltage::set_input(float input, uint8_t inputChannel) { +void AnalogVoltage::set(float input, uint8_t inputChannel) { this->emit(((input * (max_voltage_ / MAX_ANALOG_OUTPUT)) * multiplier_) + offset_); } @@ -27,7 +27,7 @@ static const char SCHEMA[] PROGMEM = R"({ "properties": { "max_voltage": { "title": "Max voltage", "type": "number", "description": "The maximum voltage allowed into your ESP's Analog Input pin" }, "multiplier": { "title": "Mulitplier", "type": "number", "description": "Output will be multiplied by this before sending to SK" }, - "offsest": { "title": "Offset", "type": "number", "description": "This will be added to output before sending to SK" } + "offset": { "title": "Offset", "type": "number", "description": "This will be added to output before sending to SK" } } })"; diff --git a/src/sensesp/transforms/analogvoltage.h b/src/sensesp/transforms/analogvoltage.h index cd833a8ea..5fb20490a 100644 --- a/src/sensesp/transforms/analogvoltage.h +++ b/src/sensesp/transforms/analogvoltage.h @@ -42,7 +42,7 @@ class AnalogVoltage : public FloatTransform { public: AnalogVoltage(float max_voltage = 3.3, float multiplier = 1.0, float offset = 0.0, String config_path = ""); - virtual void set_input(float input, uint8_t inputChannel = 0) override; + virtual void set(float input, uint8_t inputChannel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/angle_correction.cpp b/src/sensesp/transforms/angle_correction.cpp index d76b1d75a..5da19f5ad 100644 --- a/src/sensesp/transforms/angle_correction.cpp +++ b/src/sensesp/transforms/angle_correction.cpp @@ -10,7 +10,7 @@ AngleCorrection::AngleCorrection(float offset, float min_angle, load_configuration(); } -void AngleCorrection::set_input(float input, uint8_t inputChannel) { +void AngleCorrection::set(float input, uint8_t inputChannel) { // first the correction float x = input + offset_; diff --git a/src/sensesp/transforms/angle_correction.h b/src/sensesp/transforms/angle_correction.h index ea9fcf278..f8e2d7b38 100644 --- a/src/sensesp/transforms/angle_correction.h +++ b/src/sensesp/transforms/angle_correction.h @@ -20,7 +20,7 @@ namespace sensesp { class AngleCorrection : public FloatTransform { public: AngleCorrection(float offset, float min_angle = 0, String config_path = ""); - virtual void set_input(float input, uint8_t inputChannel = 0) override; + virtual void set(float input, uint8_t inputChannel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/change_filter.cpp b/src/sensesp/transforms/change_filter.cpp index 51f110c89..76bd89ebe 100644 --- a/src/sensesp/transforms/change_filter.cpp +++ b/src/sensesp/transforms/change_filter.cpp @@ -20,7 +20,7 @@ ChangeFilter::ChangeFilter(float min_delta, float max_delta, int max_skips, skips_ = max_skips_ + 1; } -void ChangeFilter::set_input(float new_value, uint8_t input_channel) { +void ChangeFilter::set(float new_value, uint8_t input_channel) { float delta = absf(new_value - output); if ((delta >= min_delta_ && delta <= max_delta_) || skips_ > max_skips_) { skips_ = 0; diff --git a/src/sensesp/transforms/change_filter.h b/src/sensesp/transforms/change_filter.h index 7da220ee2..30a668970 100644 --- a/src/sensesp/transforms/change_filter.h +++ b/src/sensesp/transforms/change_filter.h @@ -35,7 +35,7 @@ class ChangeFilter : public FloatTransform { ChangeFilter(float min_delta = 0.0, float max_delta = 9999.0, int max_skips = 99, String config_path = ""); - virtual void set_input(float new_value, uint8_t input_channel = 0) override; + virtual void set(float new_value, uint8_t input_channel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/click_type.cpp b/src/sensesp/transforms/click_type.cpp index 648f21fc9..bd3edcb58 100644 --- a/src/sensesp/transforms/click_type.cpp +++ b/src/sensesp/transforms/click_type.cpp @@ -16,7 +16,7 @@ ClickType::ClickType(String config_path, uint16_t long_click_delay, load_configuration(); } -void ClickType::set_input(bool input, uint8_t inputChannel) { +void ClickType::set(bool input, uint8_t inputChannel) { if (input) { on_button_press(); } else { diff --git a/src/sensesp/transforms/click_type.h b/src/sensesp/transforms/click_type.h index 79b9b19ef..f85c27570 100644 --- a/src/sensesp/transforms/click_type.h +++ b/src/sensesp/transforms/click_type.h @@ -58,7 +58,7 @@ class ClickType : public Transform { */ static bool is_click(ClickTypes value); - virtual void set_input(bool input, uint8_t input_channel = 0) override; + virtual void set(bool input, uint8_t input_channel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/curveinterpolator.cpp b/src/sensesp/transforms/curveinterpolator.cpp index ee155bacb..7a52de645 100644 --- a/src/sensesp/transforms/curveinterpolator.cpp +++ b/src/sensesp/transforms/curveinterpolator.cpp @@ -32,7 +32,7 @@ CurveInterpolator::CurveInterpolator(std::set* defaults, load_configuration(); } -void CurveInterpolator::set_input(float input, uint8_t inputChannel) { +void CurveInterpolator::set(float input, uint8_t inputChannel) { float x0 = 0.0; float y0 = 0.0; @@ -69,9 +69,9 @@ void CurveInterpolator::set_input(float input, uint8_t inputChannel) { } void CurveInterpolator::get_configuration(JsonObject& root) { - JsonArray json_samples = root.createNestedArray("samples"); + JsonArray json_samples = root["samples"].to(); for (auto& sample : samples_) { - auto entry = json_samples.createNestedObject(); + auto entry = json_samples.add(); if( entry.isNull() ) { debugE("No memory for sample"); } diff --git a/src/sensesp/transforms/curveinterpolator.h b/src/sensesp/transforms/curveinterpolator.h index a6a43a02f..f90c69728 100644 --- a/src/sensesp/transforms/curveinterpolator.h +++ b/src/sensesp/transforms/curveinterpolator.h @@ -52,7 +52,7 @@ class CurveInterpolator : public FloatTransform { CurveInterpolator(std::set* defaults = NULL, String config_path = ""); // Set and retrieve the transformed value - void set_input(float input, uint8_t input_channel = 0) override; + void set(float input, uint8_t input_channel = 0) override; // Web UI configuration methods CurveInterpolator* set_input_title(String input_title) { diff --git a/src/sensesp/transforms/debounce.h b/src/sensesp/transforms/debounce.h index 9741463ce..615516d6a 100644 --- a/src/sensesp/transforms/debounce.h +++ b/src/sensesp/transforms/debounce.h @@ -43,7 +43,7 @@ class DebounceTemplate : public SymmetricTransform { this->load_configuration(); } - virtual void set_input(T input, uint8_t input_channel = 0) override { + virtual void set(T input, uint8_t input_channel = 0) override { // Input has changed since the last emit, or this is the first // input since the program started to run. @@ -74,7 +74,7 @@ class DebounceTemplate : public SymmetricTransform { } virtual bool set_configuration(const JsonObject& config) override { - String expected[] = {"min_delay"}; + const String expected[] = {"min_delay"}; for (auto str : expected) { if (!config.containsKey(str)) { return false; diff --git a/src/sensesp/transforms/dew_point.cpp b/src/sensesp/transforms/dew_point.cpp index b2252c744..fdb4d6497 100644 --- a/src/sensesp/transforms/dew_point.cpp +++ b/src/sensesp/transforms/dew_point.cpp @@ -6,7 +6,7 @@ namespace sensesp { DewPoint::DewPoint() : FloatTransform() {} -void DewPoint::set_input(float input, uint8_t inputChannel) { +void DewPoint::set(float input, uint8_t inputChannel) { inputs[inputChannel] = input; received |= 1 << inputChannel; if (received == diff --git a/src/sensesp/transforms/dew_point.h b/src/sensesp/transforms/dew_point.h index ec97c0c59..d469976b2 100644 --- a/src/sensesp/transforms/dew_point.h +++ b/src/sensesp/transforms/dew_point.h @@ -15,7 +15,7 @@ namespace sensesp { class DewPoint : public FloatTransform { public: DewPoint(); - virtual void set_input(float input, uint8_t inputChannel) override; + virtual void set(float input, uint8_t inputChannel) override; private: uint8_t received = 0; diff --git a/src/sensesp/transforms/difference.cpp b/src/sensesp/transforms/difference.cpp index 8b0fe5e4f..09a7f96e8 100644 --- a/src/sensesp/transforms/difference.cpp +++ b/src/sensesp/transforms/difference.cpp @@ -9,7 +9,7 @@ Difference::Difference(float k1, float k2, String config_path) load_configuration(); } -void Difference::set_input(float input, uint8_t inputChannel) { +void Difference::set(float input, uint8_t inputChannel) { inputs[inputChannel] = input; received |= 1 << inputChannel; if (received == 0b11) { diff --git a/src/sensesp/transforms/difference.h b/src/sensesp/transforms/difference.h index 73f825e0f..ab146e736 100644 --- a/src/sensesp/transforms/difference.h +++ b/src/sensesp/transforms/difference.h @@ -9,7 +9,7 @@ namespace sensesp { class Difference : public FloatTransform { public: Difference(float k1, float k2, String config_path = ""); - virtual void set_input(float input, uint8_t inputChannel) override; + virtual void set(float input, uint8_t inputChannel) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/enable.h b/src/sensesp/transforms/enable.h index e76dbc7cb..6d380a64c 100644 --- a/src/sensesp/transforms/enable.h +++ b/src/sensesp/transforms/enable.h @@ -29,7 +29,7 @@ class Enable : public Transform { this->enabled_ = enabled; this->load_configuration(); } - virtual void set_input(T input, uint8_t input_channel = 0) override { + virtual void set(T input, uint8_t input_channel = 0) override { if (enabled_) { this->emit(input); } diff --git a/src/sensesp/transforms/frequency.cpp b/src/sensesp/transforms/frequency.cpp index 6b8da2ac1..402ce5bd2 100644 --- a/src/sensesp/transforms/frequency.cpp +++ b/src/sensesp/transforms/frequency.cpp @@ -7,11 +7,11 @@ namespace sensesp { Frequency::Frequency(float multiplier, String config_path) : Transform(config_path), multiplier_{multiplier} { load_configuration(); -} -void Frequency::start() { last_update_ = millis(); } + last_update_ = millis(); +} -void Frequency::set_input(int input, uint8_t inputChannel) { +void Frequency::set(int input, uint8_t inputChannel) { unsigned long cur_millis = millis(); unsigned long elapsed_millis = cur_millis - last_update_; last_update_ = cur_millis; diff --git a/src/sensesp/transforms/frequency.h b/src/sensesp/transforms/frequency.h index 3950ca72f..5837fd943 100644 --- a/src/sensesp/transforms/frequency.h +++ b/src/sensesp/transforms/frequency.h @@ -21,8 +21,7 @@ namespace sensesp { class Frequency : public Transform { public: Frequency(float multiplier = 1, String config_path = ""); - virtual void set_input(int input, uint8_t inputChannel = 0) override; - virtual void start() override; + virtual void set(int input, uint8_t inputChannel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/heat_index.cpp b/src/sensesp/transforms/heat_index.cpp index e7a18b072..ddacf7a71 100644 --- a/src/sensesp/transforms/heat_index.cpp +++ b/src/sensesp/transforms/heat_index.cpp @@ -6,7 +6,7 @@ namespace sensesp { HeatIndexTemperature::HeatIndexTemperature() : FloatTransform() {} -void HeatIndexTemperature::set_input(float input, uint8_t inputChannel) { +void HeatIndexTemperature::set(float input, uint8_t inputChannel) { inputs[inputChannel] = input; received |= 1 << inputChannel; if (received == @@ -86,7 +86,7 @@ void HeatIndexTemperature::set_input(float input, uint8_t inputChannel) { HeatIndexEffect::HeatIndexEffect() : Transform() {} -void HeatIndexEffect::set_input(float input, uint8_t inputChannel) { +void HeatIndexEffect::set(float input, uint8_t inputChannel) { float heat_index_temperature = input - 273.15; // celsius = kelvin - 273.15 String heat_index_effect = ""; if (heat_index_temperature > 54) { diff --git a/src/sensesp/transforms/heat_index.h b/src/sensesp/transforms/heat_index.h index 5df659af3..ecd98b0a8 100644 --- a/src/sensesp/transforms/heat_index.h +++ b/src/sensesp/transforms/heat_index.h @@ -16,7 +16,7 @@ namespace sensesp { class HeatIndexTemperature : public FloatTransform { public: HeatIndexTemperature(); - virtual void set_input(float input, uint8_t inputChannel) override; + virtual void set(float input, uint8_t inputChannel) override; private: uint8_t received = 0; @@ -33,7 +33,7 @@ class HeatIndexTemperature : public FloatTransform { class HeatIndexEffect : public Transform { public: HeatIndexEffect(); - virtual void set_input(float input, uint8_t inputChannel = 0) override; + virtual void set(float input, uint8_t inputChannel = 0) override; }; } // namespace sensesp diff --git a/src/sensesp/transforms/integrator.h b/src/sensesp/transforms/integrator.h index b236e7f6f..0bf76b3d9 100644 --- a/src/sensesp/transforms/integrator.h +++ b/src/sensesp/transforms/integrator.h @@ -34,16 +34,10 @@ class IntegratorT : public Transform { IntegratorT(P k = 1, P value = 0, String config_path = "") : Transform(config_path), k{k}, value{value} { this->load_configuration(); + this->emit(value); } - virtual void start() override final { - // save the integrator value every 10 s - // NOTE: Disabled for now because interrupts start throwing - // exceptions. - // ReactESP::app->onRepeat(10000, [this](){ this->save_configuration(); }); - } - - virtual void set_input(C input, uint8_t inputChannel = 0) override final { + virtual void set(C input, uint8_t inputChannel = 0) override final { value += input * k; this->emit(value); } diff --git a/src/sensesp/transforms/lambda_transform.h b/src/sensesp/transforms/lambda_transform.h index eb3d9ddb6..1ba23cbbc 100644 --- a/src/sensesp/transforms/lambda_transform.h +++ b/src/sensesp/transforms/lambda_transform.h @@ -177,7 +177,7 @@ class LambdaTransform : public Transform { this->load_configuration(); } - void set_input(IN input, uint8_t input_channel = 0) override { + void set(IN input, uint8_t input_channel = 0) override { switch (num_params) { case 0: this->output = function0(input); @@ -263,6 +263,10 @@ class LambdaTransform : public Transform { // a character array pointer as an argument for writing the output to. String output = ""; + if (num_params == 0) { + return "{}"; + } + debugD("Preparing config schema"); output.concat(FPSTR(kLambdaTransformSchemaHead)); diff --git a/src/sensesp/transforms/median.cpp b/src/sensesp/transforms/median.cpp index 2c72e8868..36c77a5cc 100644 --- a/src/sensesp/transforms/median.cpp +++ b/src/sensesp/transforms/median.cpp @@ -9,7 +9,7 @@ Median::Median(unsigned int sample_size, String config_path) buf_.clear(); } -void Median::set_input(float input, uint8_t inputChannel) { +void Median::set(float input, uint8_t inputChannel) { buf_.push_back(input); if (buf_.size() >= sample_size_) { // Its time to output a value diff --git a/src/sensesp/transforms/median.h b/src/sensesp/transforms/median.h index 7cb29b663..e6d20a2fd 100644 --- a/src/sensesp/transforms/median.h +++ b/src/sensesp/transforms/median.h @@ -20,7 +20,7 @@ namespace sensesp { class Median : public FloatTransform { public: Median(unsigned int sample_size = 10, String config_path = ""); - virtual void set_input(float input, uint8_t input_channel = 0) override; + virtual void set(float input, uint8_t input_channel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/moving_average.cpp b/src/sensesp/transforms/moving_average.cpp index a0694af2f..280f3de34 100644 --- a/src/sensesp/transforms/moving_average.cpp +++ b/src/sensesp/transforms/moving_average.cpp @@ -14,7 +14,7 @@ MovingAverage::MovingAverage(int sample_size, float multiplier, load_configuration(); } -void MovingAverage::set_input(float input, uint8_t inputChannel) { +void MovingAverage::set(float input, uint8_t inputChannel) { // So the first value to be included in the average doesn't default to 0.0 if (!initialized_) { buf_.assign(sample_size_, input); diff --git a/src/sensesp/transforms/moving_average.h b/src/sensesp/transforms/moving_average.h index 335cafd5e..b08211de2 100644 --- a/src/sensesp/transforms/moving_average.h +++ b/src/sensesp/transforms/moving_average.h @@ -34,7 +34,7 @@ class MovingAverage : public FloatTransform { * */ MovingAverage(int sample_size, float multiplier = 1.0, String config_path = ""); - virtual void set_input(float input, uint8_t inputChannel = 0) override; + virtual void set(float input, uint8_t inputChannel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/press_repeater.cpp b/src/sensesp/transforms/press_repeater.cpp index ae7171b00..0d0964d76 100644 --- a/src/sensesp/transforms/press_repeater.cpp +++ b/src/sensesp/transforms/press_repeater.cpp @@ -11,9 +11,7 @@ PressRepeater::PressRepeater(String config_path, int integer_false, pushed_{false}, repeating_{false} { load_configuration(); -} -void PressRepeater::start() { ReactESP::app->onRepeat(10, [this]() { if (pushed_) { // A press is currently in progress @@ -33,11 +31,11 @@ void PressRepeater::start() { }); } -void PressRepeater::set_input(int new_value, uint8_t input_channel) { - this->set_input(new_value != integer_false_, input_channel); +void PressRepeater::set(int new_value, uint8_t input_channel) { + this->set(new_value != integer_false_, input_channel); } -void PressRepeater::set_input(bool new_value, uint8_t input_channel) { +void PressRepeater::set(bool new_value, uint8_t input_channel) { if (new_value != pushed_) { pushed_ = new_value; diff --git a/src/sensesp/transforms/press_repeater.h b/src/sensesp/transforms/press_repeater.h index a09077290..51ad39fe2 100644 --- a/src/sensesp/transforms/press_repeater.h +++ b/src/sensesp/transforms/press_repeater.h @@ -43,10 +43,8 @@ class PressRepeater : public BooleanTransform, public IntConsumer { PressRepeater(String config_path = "", int integer_false = 0, int repeat_start_interval = 1500, int repeat_interval = 250); - virtual void start() override; - - virtual void set_input(bool new_value, uint8_t input_channel = 0) override; - virtual void set_input(int new_value, uint8_t input_channel = 0) override; + virtual void set(bool new_value, uint8_t input_channel = 0) override; + virtual void set(int new_value, uint8_t input_channel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; diff --git a/src/sensesp/transforms/repeat_report.cpp b/src/sensesp/transforms/repeat_report.cpp index 80e2881cd..99e00d352 100644 --- a/src/sensesp/transforms/repeat_report.cpp +++ b/src/sensesp/transforms/repeat_report.cpp @@ -3,23 +3,11 @@ namespace sensesp { template -void RepeatReport::set_input(T input, uint8_t inputChannel) { +void RepeatReport::set(T input, uint8_t inputChannel) { last_update_interval_ = 0; this->emit(input); } -template -void RepeatReport::start() { - SymmetricTransform::start(); - ReactESP::app->onRepeat(10, [this]() { - if (max_silence_interval_ > 0 && - last_update_interval_ > max_silence_interval_) { - this->last_update_interval_ = 0; - this->notify(); - } - }); -} - template void RepeatReport::get_configuration(JsonObject& root) { root["max_silence_interval"] = max_silence_interval_; diff --git a/src/sensesp/transforms/repeat_report.h b/src/sensesp/transforms/repeat_report.h index f00b27a0f..bb58038de 100644 --- a/src/sensesp/transforms/repeat_report.h +++ b/src/sensesp/transforms/repeat_report.h @@ -26,10 +26,17 @@ class RepeatReport : public SymmetricTransform { : SymmetricTransform(config_path), max_silence_interval_{max_silence_interval} { this->load_configuration(); + + ReactESP::app->onRepeat(10, [this]() { + if (max_silence_interval_ > 0 && + last_update_interval_ > max_silence_interval_) { + this->last_update_interval_ = 0; + this->notify(); + } + }); } - virtual void set_input(T input, uint8_t inputChannel = 0) override; - virtual void start() override; + virtual void set(T input, uint8_t inputChannel = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; virtual String get_config_schema() override; diff --git a/src/sensesp/transforms/threshold.cpp b/src/sensesp/transforms/threshold.cpp index f45d18d63..be0128224 100644 --- a/src/sensesp/transforms/threshold.cpp +++ b/src/sensesp/transforms/threshold.cpp @@ -3,7 +3,7 @@ namespace sensesp { template -void ThresholdTransform::set_input(C input, uint8_t input_channel) { +void ThresholdTransform::set(C input, uint8_t input_channel) { if (input >= min_value_ && input <= max_value_) { this->output = in_range_; } else { diff --git a/src/sensesp/transforms/threshold.h b/src/sensesp/transforms/threshold.h index 02d0a95aa..953d827d0 100644 --- a/src/sensesp/transforms/threshold.h +++ b/src/sensesp/transforms/threshold.h @@ -26,7 +26,7 @@ class ThresholdTransform : public Transform { in_range_{in_range} { this->load_configuration(); }; - virtual void set_input(C new_value, uint8_t input_channel = 0) override; + virtual void set(C new_value, uint8_t input_channel = 0) override; protected: C min_value_; diff --git a/src/sensesp/transforms/time_counter.h b/src/sensesp/transforms/time_counter.h index 5e8a533dc..d8abe8f9f 100644 --- a/src/sensesp/transforms/time_counter.h +++ b/src/sensesp/transforms/time_counter.h @@ -35,7 +35,7 @@ class TimeCounter : public Transform { this->load_configuration(); } - virtual void set_input(T input, uint8_t input_channel = 0) override { + virtual void set(T input, uint8_t input_channel = 0) override { if (previous_state_ == -1) { // Initialize the previous state previous_state_ = (bool)input; diff --git a/src/sensesp/transforms/timestring.cpp b/src/sensesp/transforms/timestring.cpp index 99599154a..eb44b8a78 100644 --- a/src/sensesp/transforms/timestring.cpp +++ b/src/sensesp/transforms/timestring.cpp @@ -6,7 +6,7 @@ namespace sensesp { TimeString::TimeString(String config_path) : Transform(config_path) {} -void TimeString::set_input(time_t input, uint8_t inputChannel) { +void TimeString::set(time_t input, uint8_t inputChannel) { char buf[sizeof "2011-10-08T07:07:09Z"]; strftime(buf, sizeof buf, "%FT%TZ", gmtime(&input)); this->emit(String(buf)); diff --git a/src/sensesp/transforms/timestring.h b/src/sensesp/transforms/timestring.h index 32f67466f..93781a347 100644 --- a/src/sensesp/transforms/timestring.h +++ b/src/sensesp/transforms/timestring.h @@ -15,7 +15,7 @@ namespace sensesp { class TimeString : public Transform { public: TimeString(String config_path = ""); - virtual void set_input(time_t input, uint8_t input_channel = 0) override; + virtual void set(time_t input, uint8_t input_channel = 0) override; }; } // namespace sensesp diff --git a/src/sensesp/transforms/transform.cpp b/src/sensesp/transforms/transform.cpp index 1cdd5252d..897c542fa 100644 --- a/src/sensesp/transforms/transform.cpp +++ b/src/sensesp/transforms/transform.cpp @@ -10,7 +10,7 @@ namespace sensesp { std::set TransformBase::transforms_; TransformBase::TransformBase(String config_path) - : Configurable{config_path}, Startable(5) { + : Configurable{config_path} { transforms_.insert(this); } diff --git a/src/sensesp/transforms/transform.h b/src/sensesp/transforms/transform.h index ddad4072d..6d03634f7 100644 --- a/src/sensesp/transforms/transform.h +++ b/src/sensesp/transforms/transform.h @@ -8,7 +8,6 @@ #include "sensesp.h" #include "sensesp/system/configurable.h" #include "sensesp/system/observable.h" -#include "sensesp/system/startable.h" #include "sensesp/system/valueconsumer.h" #include "sensesp/system/valueproducer.h" @@ -28,7 +27,7 @@ namespace sensesp { * * @param config_path The path to configure the Transform in the Config UI. */ -class TransformBase : public Configurable, public Startable { +class TransformBase : public Configurable { public: TransformBase(String config_path = ""); diff --git a/src/sensesp/transforms/truth_text.cpp b/src/sensesp/transforms/truth_text.cpp index f4b253803..9a899e2a8 100644 --- a/src/sensesp/transforms/truth_text.cpp +++ b/src/sensesp/transforms/truth_text.cpp @@ -35,7 +35,7 @@ bool TextToTruth::is_valid_false(String input) { return false; } -void TextToTruth::set_input(String input, uint8_t input_channel) { +void TextToTruth::set(String input, uint8_t input_channel) { this->emit(TextToTruth::is_valid_true(input)); } @@ -46,7 +46,7 @@ TruthToText::TruthToText(String true_value, String false_value) truth_value_[1] = true_value; } -void TruthToText::set_input(bool input, uint8_t input_channel) { +void TruthToText::set(bool input, uint8_t input_channel) { if (input) { this->emit(truth_value_[1]); } else { diff --git a/src/sensesp/transforms/truth_text.h b/src/sensesp/transforms/truth_text.h index d58c37a21..e74607638 100644 --- a/src/sensesp/transforms/truth_text.h +++ b/src/sensesp/transforms/truth_text.h @@ -23,7 +23,7 @@ namespace sensesp { */ class TextToTruth : public Transform { public: - virtual void set_input(String input, uint8_t input_channel = 0) override; + virtual void set(String input, uint8_t input_channel = 0) override; /** * Returns TRUE if `value` represents one of the truth values recognized by @@ -49,7 +49,7 @@ class TruthToText : public Transform { public: TruthToText(String true_value = "ON", String false_value = "OFF"); - virtual void set_input(bool input, uint8_t input_channel = 0) override; + virtual void set(bool input, uint8_t input_channel = 0) override; protected: String* truth_value_; diff --git a/src/sensesp/transforms/voltage_multiplier.cpp b/src/sensesp/transforms/voltage_multiplier.cpp index f38171ade..96a60fb5e 100644 --- a/src/sensesp/transforms/voltage_multiplier.cpp +++ b/src/sensesp/transforms/voltage_multiplier.cpp @@ -6,7 +6,7 @@ VoltageMultiplier::VoltageMultiplier(uint16_t R1, uint16_t R2, String config_path) : FloatTransform(config_path), R1_{R1}, R2_{R2} {} -void VoltageMultiplier::set_input(float input, uint8_t inputChannel) { +void VoltageMultiplier::set(float input, uint8_t inputChannel) { // Ohms Law at work! this->emit(input * (((float)R1_ + (float)R2_) / (float)R2_)); } diff --git a/src/sensesp/transforms/voltage_multiplier.h b/src/sensesp/transforms/voltage_multiplier.h index 6b3d3b514..2b0a975e5 100644 --- a/src/sensesp/transforms/voltage_multiplier.h +++ b/src/sensesp/transforms/voltage_multiplier.h @@ -31,7 +31,7 @@ class VoltageMultiplier : public FloatTransform { public: VoltageMultiplier(uint16_t R1, uint16_t R2, String config_path = ""); - virtual void set_input(float input, uint8_t inputChannel = 0); + virtual void set(float input, uint8_t inputChannel = 0); private: uint16_t R1_; diff --git a/src/sensesp/transforms/voltagedivider.cpp b/src/sensesp/transforms/voltagedivider.cpp index 87aee57e4..b5dc95a4c 100644 --- a/src/sensesp/transforms/voltagedivider.cpp +++ b/src/sensesp/transforms/voltagedivider.cpp @@ -7,7 +7,7 @@ VoltageDividerR1::VoltageDividerR1(float R2, float Vin, String config_path) load_configuration(); } -void VoltageDividerR1::set_input(float Vout, uint8_t ignored) { +void VoltageDividerR1::set(float Vout, uint8_t ignored) { this->emit((Vin_ - Vout) * R2_ / Vout); } @@ -48,7 +48,7 @@ VoltageDividerR2::VoltageDividerR2(float R1, float Vin, String config_path) load_configuration(); } -void VoltageDividerR2::set_input(float Vout, uint8_t ignored) { +void VoltageDividerR2::set(float Vout, uint8_t ignored) { this->emit((Vout * R1_) / (Vin_ - Vout)); } diff --git a/src/sensesp/transforms/voltagedivider.h b/src/sensesp/transforms/voltagedivider.h index f40747b3e..d9783d1fe 100644 --- a/src/sensesp/transforms/voltagedivider.h +++ b/src/sensesp/transforms/voltagedivider.h @@ -34,7 +34,7 @@ class VoltageDividerR1 : public SymmetricTransform { public: VoltageDividerR1(float R2, float Vin = 3.3, String config_path = ""); - virtual void set_input(float Vout, uint8_t ignored = 0) override; + virtual void set(float Vout, uint8_t ignored = 0) override; virtual void get_configuration(JsonObject& doc) override; virtual bool set_configuration(const JsonObject& config) override; @@ -74,7 +74,7 @@ class VoltageDividerR2 : public SymmetricTransform { public: VoltageDividerR2(float R1, float Vin = 3.3, String config_path = ""); - virtual void set_input(float Vout, uint8_t ignored = 0) override; + virtual void set(float Vout, uint8_t ignored = 0) override; // For reading and writing the configuration of this transformation virtual void get_configuration(JsonObject& doc) override; diff --git a/src/sensesp/ui/ui_output.h b/src/sensesp/ui/ui_output.h index e869df4ae..83f71dcad 100644 --- a/src/sensesp/ui/ui_output.h +++ b/src/sensesp/ui/ui_output.h @@ -30,7 +30,7 @@ class UIOutputBase : virtual public Observable { String& get_name() { return name_; } - virtual void set_json(const JsonObject& obj) {} + virtual JsonDocument as_json() = 0; static const std::map* get_ui_outputs() { return &ui_outputs_; @@ -50,11 +50,13 @@ class UILambdaOutput : public UIOutputBase { T get() { return value_function_(); } - void set_json(const JsonObject& obj) override { - JsonObject output = obj.createNestedObject(name_); - output["Value"] = get(); - output["Group"] = group_; - output["Order"] = order_; + virtual JsonDocument as_json() override { + JsonDocument obj; + obj["name"] = name_; + obj["value"] = get(); + obj["group"] = group_; + obj["order"] = order_; + return obj; } }; @@ -74,14 +76,17 @@ class UIOutput : public UIOutputBase, this->ObservableValue::emit(value); } - void set_json(const JsonObject& obj) override { - JsonObject output = obj.createNestedObject(name_); - output["Value"] = ObservableValue::get(); - output["Group"] = group_; - output["Order"] = order_; + virtual JsonDocument as_json() override { + JsonDocument obj; + obj["name"] = name_; + obj["value"] = ObservableValue::get(); + obj["group"] = group_; + obj["order"] = order_; + + return obj; } - void set_input(T new_value, uint8_t input_channel = 0) override { + void set(T new_value, uint8_t input_channel = 0) override { this->ValueProducer::emit(new_value); } }; diff --git a/src/sensesp_app.cpp b/src/sensesp_app.cpp index de19e4aea..189bd5e53 100644 --- a/src/sensesp_app.cpp +++ b/src/sensesp_app.cpp @@ -6,6 +6,7 @@ #include "sensesp/system/button.h" #include "sensesp/system/system_status_led.h" #include "sensesp/transforms/debounce.h" +#include "sensesp/net/web/autogen/web_ui_files.h" namespace sensesp { @@ -29,16 +30,24 @@ void SensESPApp::setup() { // create the networking object networking_ = - new Networking("/System/WiFi Settings", ssid_, wifi_password_, - SensESPBaseApp::get_hostname()); + new Networking("/System/WiFi Settings", ssid_, wifi_client_password_); if (ota_password_ != nullptr) { // create the OTA object ota_ = new OTA(ota_password_); } + bool captive_portal_enabled = networking_->is_captive_portal_enabled(); + // create the HTTP server this->http_server_ = new HTTPServer(); + this->http_server_->set_captive_portal(captive_portal_enabled); + + // Add the default HTTP server response handlers + add_static_file_handlers(this->http_server_); + add_base_app_http_command_handlers(this->http_server_); + add_app_http_command_handlers(this->http_server_); + add_config_handlers(this->http_server_); // create the SK delta object sk_delta_queue_ = new SKDeltaQueue(); @@ -74,7 +83,7 @@ void SensESPApp::setup() { system_status_led_ = new SystemStatusLed(LED_PIN); } this->system_status_controller_.connect_to(system_status_led_); - this->ws_client_->get_delta_count_producer().connect_to(system_status_led_); + this->ws_client_->get_delta_tx_count_producer().connect_to(system_status_led_); // create the button handler if (button_gpio_pin_ != -1) { diff --git a/src/sensesp_app.h b/src/sensesp_app.h index 5d2296b1b..73387ece2 100644 --- a/src/sensesp_app.h +++ b/src/sensesp_app.h @@ -15,12 +15,16 @@ #include "sensesp/net/http_server.h" #include "sensesp/net/networking.h" #include "sensesp/net/ota.h" +#include "sensesp/net/web/app_command_handler.h" +#include "sensesp/net/web/base_command_handler.h" +#include "sensesp/net/web/config_handler.h" +#include "sensesp/net/web/static_file_handler.h" #include "sensesp/net/ws_client.h" #include "sensesp/sensesp_version.h" #include "sensesp/sensors/sensor.h" #include "sensesp/signalk/signalk_delta_queue.h" -#include "sensesp/system/system_status_led.h" #include "sensesp/system/button.h" +#include "sensesp/system/system_status_led.h" #include "sensesp/ui/ui_output.h" #include "sensesp_base_app.h" @@ -66,9 +70,7 @@ class SensESPApp : public SensESPBaseApp { * be instantiated using SensESPAppBuilder. * */ - SensESPApp() : SensESPBaseApp() { - hostname_->connect_to(hostname_ui_output_); - } + SensESPApp() : SensESPBaseApp() {} // setters for all constructor arguments @@ -81,7 +83,7 @@ class SensESPApp : public SensESPBaseApp { return this; } const SensESPApp* set_wifi_password(String wifi_password) { - this->wifi_password_ = wifi_password; + this->wifi_client_password_ = wifi_password; return this; } const SensESPApp* set_sk_server_address(String sk_server_address) { @@ -112,16 +114,15 @@ class SensESPApp : public SensESPBaseApp { void setup(); String ssid_ = ""; - String wifi_password_ = ""; + String wifi_client_password_ = ""; String sk_server_address_ = ""; uint16_t sk_server_port_ = 0; const char* ota_password_ = nullptr; const char* wifi_manager_password_ = "thisisfine"; - Filesystem* filesystem_; - DebugOutput* debug_output_; MDNSDiscovery* mdns_discovery_; HTTPServer* http_server_; + SystemStatusLed* system_status_led_ = NULL; SystemStatusController system_status_controller_; int button_gpio_pin_ = SENSESP_BUTTON_PIN; @@ -132,12 +133,12 @@ class SensESPApp : public SensESPBaseApp { SKDeltaQueue* sk_delta_queue_; WSClient* ws_client_; - UIOutput* build_info_ui_output_ = - new UIOutput("Built at", __DATE__ " " __TIME__, "Software", 2000); UIOutput* sensesp_version_ui_output_ = new UIOutput( "SenseESP version", kSensESPVersion, "Software", 1900); - UIOutput* hostname_ui_output_ = - new UIOutput("Hostname", "", "Network", 500); + UIOutput* build_info_ui_output_ = new UIOutput( + "Build date", __DATE__ " " __TIME__, "Software", 2000); + UILambdaOutput* hostname_ui_output_ = new UILambdaOutput( + "Hostname", [this]() { return this->hostname_->get(); }, "Network", 500); UIOutput* mac_address_ui_output_ = new UIOutput("MAC Address", WiFi.macAddress(), "Network", 1100); UILambdaOutput* wifi_ssid_ui_output_ = new UILambdaOutput( @@ -148,19 +149,27 @@ class SensESPApp : public SensESPBaseApp { UILambdaOutput* sk_server_address_ui_output_ = new UILambdaOutput( "Signal K server address", - [this]() { return ws_client_->get_server_address(); }, "Network", + [this]() { return ws_client_->get_server_address(); }, "Signal K", 1400); UILambdaOutput* sk_server_port_ui_output_ = new UILambdaOutput( "Signal K server port", - [this]() { return ws_client_->get_server_port(); }, "Network", 1500); + [this]() { return ws_client_->get_server_port(); }, "Signal K", 1500); UILambdaOutput* sk_server_connection_ui_output_ = new UILambdaOutput( "SK connection status", - [this]() { return ws_client_->get_connection_status(); }, "Network", + [this]() { return ws_client_->get_connection_status(); }, "Signal K", 1600); - - friend class HTTPServer; + UILambdaOutput* delta_tx_count_ui_output_ = new UILambdaOutput( + "SK Delta TX count", + [this]() { return ws_client_->get_delta_tx_count_producer().get(); }, + "Signal K", 1700); + UILambdaOutput* delta_rx_count_ui_output_ = new UILambdaOutput( + "SK Delta RX count", + [this]() { return ws_client_->get_delta_rx_count_producer().get(); }, + "Signal K", 1800); + + friend class WebServer; friend class SensESPAppBuilder; }; diff --git a/src/sensesp_base_app.cpp b/src/sensesp_base_app.cpp index fee5eb0f7..19fcd6f2f 100644 --- a/src/sensesp_base_app.cpp +++ b/src/sensesp_base_app.cpp @@ -18,9 +18,14 @@ void SetupSerialDebug(uint32_t baudrate) { SensESPBaseApp* SensESPBaseApp::instance_ = nullptr; SensESPBaseApp::SensESPBaseApp() { + // initialize the filesystem + filesystem_ = new Filesystem(); // create the hostname_ observable - this needs to be done before // the builder methods are called - hostname_ = new ObservableValue(kDefaultHostname); + hostname_ = new PersistingObservableValue( + kDefaultHostname, "/system/hostname", "Hostname", 0); + // create a remote debugger object + debug_output_ = new DebugOutput(); } /** @@ -36,20 +41,12 @@ SensESPBaseApp* SensESPBaseApp::get() { return instance_; } * This should be only called from the builder! * */ -void SensESPBaseApp::setup() { - // initialize the filesystem - filesystem_ = new Filesystem(); - - // create a remote debugger object - debug_output_ = new DebugOutput(); -} +void SensESPBaseApp::setup() {} void SensESPBaseApp::start() { // start all individual startable components - debugI("Starting subsystems"); - Startable::start_all(); - debugD("All sensors and transforms started"); + debugW("start() call is deprecated and can be removed."); } void SensESPBaseApp::reset() { diff --git a/src/sensesp_base_app.h b/src/sensesp_base_app.h index f59a8e11c..d5e44727f 100644 --- a/src/sensesp_base_app.h +++ b/src/sensesp_base_app.h @@ -1,9 +1,6 @@ #ifndef _sensesp_base_app_H_ #define _sensesp_base_app_H_ -// Required for RemoteDebug -#define USE_LIB_WEBSOCKET true - #ifndef SENSESP_BUTTON_PIN // Default button pin is 0 (GPIO0), normally connected to the BOOT button #define SENSESP_BUTTON_PIN 0 @@ -71,7 +68,7 @@ class SensESPBaseApp { static SensESPBaseApp* instance_; - ObservableValue* hostname_; + PersistingObservableValue* hostname_; Filesystem* filesystem_; DebugOutput* debug_output_; diff --git a/web/.eslintrc.js b/web/.eslintrc.js new file mode 100644 index 000000000..2fea71152 --- /dev/null +++ b/web/.eslintrc.js @@ -0,0 +1,46 @@ +module.exports = { + "env": { + "browser": true, + "es2021": true + }, + "extends": [ + "preact", + "eslint:recommended", + 'plugin:@typescript-eslint/recommended', + 'plugin:react/recommended', + "prettier", + ], + "overrides": [ + { + "env": { + "node": true + }, + "files": [ + ".eslintrc.{js,cjs}" + ], + "parserOptions": { + "sourceType": "script", + } + } + ], + parser: '@typescript-eslint/parser', + "parserOptions": { + "project": "tsconfig.json", + "ecmaVersion": "latest", + "sourceType": "module", + }, + "plugins": [ + '@typescript-eslint', + "preact" + ], + "root": true, + "rules": { + "react/react-in-jsx-scope": "off", + "react/jsx-uses-react": "error", + }, + "settings": { + "react": { + "version": "18.2.0" + } + } +} diff --git a/web/.gitignore b/web/.gitignore new file mode 100644 index 000000000..c64d864f7 --- /dev/null +++ b/web/.gitignore @@ -0,0 +1,27 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +# Bootstrap CSS files are generated with "npm run css" +css/styles.css* diff --git a/web/.prettierignore b/web/.prettierignore new file mode 100644 index 000000000..04168ef38 --- /dev/null +++ b/web/.prettierignore @@ -0,0 +1,4 @@ +# Ignore artifacts: +build +coverage +dist diff --git a/web/.prettierrc b/web/.prettierrc new file mode 100644 index 000000000..417e11638 --- /dev/null +++ b/web/.prettierrc @@ -0,0 +1,7 @@ +printWidth: 80 +tabWidth: 2 +trailingComma: "all" +singleQuote: false +semi: true +plugins: + - prettier-plugin-organize-imports diff --git a/web/README.md b/web/README.md index 1438cefbf..e69de29bb 100644 --- a/web/README.md +++ b/web/README.md @@ -1,43 +0,0 @@ -# SensESP Mock Web Environment - -This directory is for development and testing of the HTML and Javascript code that is utilized in the -configuration UI of SensESP. - -## Setting up mock development environment - -If you have a need to make changes to the SensESP web UI, configure a web server on your machine -to point to the "docroot" directory in this web directory. You can then make web requests as normal -and test or modify the behavior of the Javascript without the need to communicate with an actual -sensor running SensESP. - -One simple way to start a local web server is using Python 3: - - python3 -m http.server 7777 - -Once you are done, you can run the "webUI" build target to convert the required files to C header files -that can be used by the SensESP source code. - -## Rebuilding for deployment - -Rebuilding the Javascript files requires the use of the NodeJS utility Terser. Install it using -the following command: - - npm install terser -g - -To build a new version of the web UI, issue the following command in your PlatformIO terminal: - - pio run -t webUI - -For information on how this build target works, see the project file `extra_script.py`. - -## Files used by WebUI - -The following files converted to header files for use by the SensESP web UI. See the -src/sensesp/net/web directory for the results of this conversion. - -1. docroot/index.html -1. docroot/js/jsoneditor.min.js -1. docroot/js/sensesp.js -1. docroot/setup/index.html - -The other directories contain mock files that would be returned by the MCU to a browser making the request. diff --git a/web/docroot/config/System/Signal K Settings b/web/docroot/config/System/Signal K Settings deleted file mode 100644 index 1a740c007..000000000 --- a/web/docroot/config/System/Signal K Settings +++ /dev/null @@ -1,40 +0,0 @@ -{ - "config": { - "sk_address": "", - "sk_port": 0, - "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkZXZpY2UiOiI0NTMxODliOC04NzNkLTkxMzUtNDFjYy1jYzFjMzg4ZWU1YzUiLCJpYXQiOjE2NTA4OTg3MjB9.5ENWogKknEbHf9Ppc-xl5zgJvBrzy0WcIH0tyymcfVg", - "client_id": "453189b8-873d-9135-41cc-cc1c388ee5c5", - "polling_href": "" - }, - "schema": { - "type": "object", - "properties": { - "sk_address": { - "title": "Signal K server address (readonly)", - "type": "string", - "readOnly": true - }, - "sk_port": { - "title": "Signal K server port (readonly)", - "type": "integer", - "readOnly": true - }, - "client_id": { - "title": "Client ID (readonly)", - "type": "string", - "readOnly": true - }, - "token": { - "title": "Server authorization token (readonly)", - "type": "string", - "readOnly": true - }, - "polling_href": { - "title": "Server authorization polling href (readonly)", - "type": "string", - "readOnly": true - } - } - }, - "description": "" -} diff --git a/web/docroot/config/System/WiFi Settings b/web/docroot/config/System/WiFi Settings deleted file mode 100644 index d9cd5bbc5..000000000 --- a/web/docroot/config/System/WiFi Settings +++ /dev/null @@ -1,27 +0,0 @@ -{ - "config": { - "hostname": "asyncnew", - "default_hostname": "asyncnew", - "ssid": "Hat Labs Sensors", - "password": "kanneluuri2406" - }, - "schema": { - "type": "object", - "properties": { - "ssid": { - "title": "WiFi SSID", - "type": "string" - }, - "password": { - "title": "WiFi password", - "type": "string", - "format": "password" - }, - "hostname": { - "title": "Device hostname", - "type": "string" - } - } - }, - "description": "" -} diff --git a/web/docroot/config/Transforms/Linear b/web/docroot/config/Transforms/Linear deleted file mode 100644 index 84ad93b1f..000000000 --- a/web/docroot/config/Transforms/Linear +++ /dev/null @@ -1,28 +0,0 @@ -{ - "config": { - "offset": 0, - "multiplier": 1, - "value": 80.20713806 - }, - "schema": { - "type": "object", - "properties": { - "multiplier": { - "title": "Multiplier", - "type": "number", - "readOnly": false - }, - "offset": { - "title": "Constant offset", - "type": "number", - "readOnly": false - }, - "value": { - "title": "Last value", - "type": "number", - "readOnly": true - } - } - }, - "description": "Linear transform custom description" -} diff --git a/web/docroot/css/bootstrap.min.css b/web/docroot/css/bootstrap.min.css deleted file mode 100644 index 1472dec05..000000000 --- a/web/docroot/css/bootstrap.min.css +++ /dev/null @@ -1,7 +0,0 @@ -@charset "UTF-8";/*! - * Bootstrap v5.1.3 (https://getbootstrap.com/) - * Copyright 2011-2021 The Bootstrap Authors - * Copyright 2011-2021 Twitter, Inc. - * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE) - */:root{--bs-blue:#0d6efd;--bs-indigo:#6610f2;--bs-purple:#6f42c1;--bs-pink:#d63384;--bs-red:#dc3545;--bs-orange:#fd7e14;--bs-yellow:#ffc107;--bs-green:#198754;--bs-teal:#20c997;--bs-cyan:#0dcaf0;--bs-white:#fff;--bs-gray:#6c757d;--bs-gray-dark:#343a40;--bs-gray-100:#f8f9fa;--bs-gray-200:#e9ecef;--bs-gray-300:#dee2e6;--bs-gray-400:#ced4da;--bs-gray-500:#adb5bd;--bs-gray-600:#6c757d;--bs-gray-700:#495057;--bs-gray-800:#343a40;--bs-gray-900:#212529;--bs-primary:#0d6efd;--bs-secondary:#6c757d;--bs-success:#198754;--bs-info:#0dcaf0;--bs-warning:#ffc107;--bs-danger:#dc3545;--bs-light:#f8f9fa;--bs-dark:#212529;--bs-primary-rgb:13,110,253;--bs-secondary-rgb:108,117,125;--bs-success-rgb:25,135,84;--bs-info-rgb:13,202,240;--bs-warning-rgb:255,193,7;--bs-danger-rgb:220,53,69;--bs-light-rgb:248,249,250;--bs-dark-rgb:33,37,41;--bs-white-rgb:255,255,255;--bs-black-rgb:0,0,0;--bs-body-color-rgb:33,37,41;--bs-body-bg-rgb:255,255,255;--bs-font-sans-serif:system-ui,-apple-system,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans","Liberation Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--bs-font-monospace:SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--bs-gradient:linear-gradient(180deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0));--bs-body-font-family:var(--bs-font-sans-serif);--bs-body-font-size:1rem;--bs-body-font-weight:400;--bs-body-line-height:1.5;--bs-body-color:#212529;--bs-body-bg:#fff}*,::after,::before{box-sizing:border-box}@media (prefers-reduced-motion:no-preference){:root{scroll-behavior:smooth}}body{margin:0;font-family:var(--bs-body-font-family);font-size:var(--bs-body-font-size);font-weight:var(--bs-body-font-weight);line-height:var(--bs-body-line-height);color:var(--bs-body-color);text-align:var(--bs-body-text-align);background-color:var(--bs-body-bg);-webkit-text-size-adjust:100%;-webkit-tap-highlight-color:transparent}hr{margin:1rem 0;color:inherit;background-color:currentColor;border:0;opacity:.25}hr:not([size]){height:1px}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{margin-top:0;margin-bottom:.5rem;font-weight:500;line-height:1.2}.h1,h1{font-size:calc(1.375rem + 1.5vw)}@media (min-width:1200px){.h1,h1{font-size:2.5rem}}.h2,h2{font-size:calc(1.325rem + .9vw)}@media (min-width:1200px){.h2,h2{font-size:2rem}}.h3,h3{font-size:calc(1.3rem + .6vw)}@media (min-width:1200px){.h3,h3{font-size:1.75rem}}.h4,h4{font-size:calc(1.275rem + .3vw)}@media (min-width:1200px){.h4,h4{font-size:1.5rem}}.h5,h5{font-size:1.25rem}.h6,h6{font-size:1rem}p{margin-top:0;margin-bottom:1rem}abbr[data-bs-original-title],abbr[title]{-webkit-text-decoration:underline dotted;text-decoration:underline dotted;cursor:help;-webkit-text-decoration-skip-ink:none;text-decoration-skip-ink:none}address{margin-bottom:1rem;font-style:normal;line-height:inherit}ol,ul{padding-left:2rem}dl,ol,ul{margin-top:0;margin-bottom:1rem}ol ol,ol ul,ul ol,ul ul{margin-bottom:0}dt{font-weight:700}dd{margin-bottom:.5rem;margin-left:0}blockquote{margin:0 0 1rem}b,strong{font-weight:bolder}.small,small{font-size:.875em}.mark,mark{padding:.2em;background-color:#fcf8e3}sub,sup{position:relative;font-size:.75em;line-height:0;vertical-align:baseline}sub{bottom:-.25em}sup{top:-.5em}a{color:#0d6efd;text-decoration:underline}a:hover{color:#0a58ca}a:not([href]):not([class]),a:not([href]):not([class]):hover{color:inherit;text-decoration:none}code,kbd,pre,samp{font-family:var(--bs-font-monospace);font-size:1em;direction:ltr;unicode-bidi:bidi-override}pre{display:block;margin-top:0;margin-bottom:1rem;overflow:auto;font-size:.875em}pre code{font-size:inherit;color:inherit;word-break:normal}code{font-size:.875em;color:#d63384;word-wrap:break-word}a>code{color:inherit}kbd{padding:.2rem .4rem;font-size:.875em;color:#fff;background-color:#212529;border-radius:.2rem}kbd kbd{padding:0;font-size:1em;font-weight:700}figure{margin:0 0 1rem}img,svg{vertical-align:middle}table{caption-side:bottom;border-collapse:collapse}caption{padding-top:.5rem;padding-bottom:.5rem;color:#6c757d;text-align:left}th{text-align:inherit;text-align:-webkit-match-parent}tbody,td,tfoot,th,thead,tr{border-color:inherit;border-style:solid;border-width:0}label{display:inline-block}button{border-radius:0}button:focus:not(:focus-visible){outline:0}button,input,optgroup,select,textarea{margin:0;font-family:inherit;font-size:inherit;line-height:inherit}button,select{text-transform:none}[role=button]{cursor:pointer}select{word-wrap:normal}select:disabled{opacity:1}[list]::-webkit-calendar-picker-indicator{display:none}[type=button],[type=reset],[type=submit],button{-webkit-appearance:button}[type=button]:not(:disabled),[type=reset]:not(:disabled),[type=submit]:not(:disabled),button:not(:disabled){cursor:pointer}::-moz-focus-inner{padding:0;border-style:none}textarea{resize:vertical}fieldset{min-width:0;padding:0;margin:0;border:0}legend{float:left;width:100%;padding:0;margin-bottom:.5rem;font-size:calc(1.275rem + .3vw);line-height:inherit}@media (min-width:1200px){legend{font-size:1.5rem}}legend+*{clear:left}::-webkit-datetime-edit-day-field,::-webkit-datetime-edit-fields-wrapper,::-webkit-datetime-edit-hour-field,::-webkit-datetime-edit-minute,::-webkit-datetime-edit-month-field,::-webkit-datetime-edit-text,::-webkit-datetime-edit-year-field{padding:0}::-webkit-inner-spin-button{height:auto}[type=search]{outline-offset:-2px;-webkit-appearance:textfield}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-color-swatch-wrapper{padding:0}::-webkit-file-upload-button{font:inherit}::file-selector-button{font:inherit}::-webkit-file-upload-button{font:inherit;-webkit-appearance:button}output{display:inline-block}iframe{border:0}summary{display:list-item;cursor:pointer}progress{vertical-align:baseline}[hidden]{display:none!important}.lead{font-size:1.25rem;font-weight:300}.display-1{font-size:calc(1.625rem + 4.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-1{font-size:5rem}}.display-2{font-size:calc(1.575rem + 3.9vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-2{font-size:4.5rem}}.display-3{font-size:calc(1.525rem + 3.3vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-3{font-size:4rem}}.display-4{font-size:calc(1.475rem + 2.7vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-4{font-size:3.5rem}}.display-5{font-size:calc(1.425rem + 2.1vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-5{font-size:3rem}}.display-6{font-size:calc(1.375rem + 1.5vw);font-weight:300;line-height:1.2}@media (min-width:1200px){.display-6{font-size:2.5rem}}.list-unstyled{padding-left:0;list-style:none}.list-inline{padding-left:0;list-style:none}.list-inline-item{display:inline-block}.list-inline-item:not(:last-child){margin-right:.5rem}.initialism{font-size:.875em;text-transform:uppercase}.blockquote{margin-bottom:1rem;font-size:1.25rem}.blockquote>:last-child{margin-bottom:0}.blockquote-footer{margin-top:-1rem;margin-bottom:1rem;font-size:.875em;color:#6c757d}.blockquote-footer::before{content:"— "}.img-fluid{max-width:100%;height:auto}.img-thumbnail{padding:.25rem;background-color:#fff;border:1px solid #dee2e6;border-radius:.25rem;max-width:100%;height:auto}.figure{display:inline-block}.figure-img{margin-bottom:.5rem;line-height:1}.figure-caption{font-size:.875em;color:#6c757d}.container,.container-fluid,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{width:100%;padding-right:var(--bs-gutter-x,.75rem);padding-left:var(--bs-gutter-x,.75rem);margin-right:auto;margin-left:auto}@media (min-width:576px){.container,.container-sm{max-width:540px}}@media (min-width:768px){.container,.container-md,.container-sm{max-width:720px}}@media (min-width:992px){.container,.container-lg,.container-md,.container-sm{max-width:960px}}@media (min-width:1200px){.container,.container-lg,.container-md,.container-sm,.container-xl{max-width:1140px}}@media (min-width:1400px){.container,.container-lg,.container-md,.container-sm,.container-xl,.container-xxl{max-width:1320px}}.row{--bs-gutter-x:1.5rem;--bs-gutter-y:0;display:flex;flex-wrap:wrap;margin-top:calc(-1 * var(--bs-gutter-y));margin-right:calc(-.5 * var(--bs-gutter-x));margin-left:calc(-.5 * var(--bs-gutter-x))}.row>*{flex-shrink:0;width:100%;max-width:100%;padding-right:calc(var(--bs-gutter-x) * .5);padding-left:calc(var(--bs-gutter-x) * .5);margin-top:var(--bs-gutter-y)}.col{flex:1 0 0%}.row-cols-auto>*{flex:0 0 auto;width:auto}.row-cols-1>*{flex:0 0 auto;width:100%}.row-cols-2>*{flex:0 0 auto;width:50%}.row-cols-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-4>*{flex:0 0 auto;width:25%}.row-cols-5>*{flex:0 0 auto;width:20%}.row-cols-6>*{flex:0 0 auto;width:16.6666666667%}.col-auto{flex:0 0 auto;width:auto}.col-1{flex:0 0 auto;width:8.33333333%}.col-2{flex:0 0 auto;width:16.66666667%}.col-3{flex:0 0 auto;width:25%}.col-4{flex:0 0 auto;width:33.33333333%}.col-5{flex:0 0 auto;width:41.66666667%}.col-6{flex:0 0 auto;width:50%}.col-7{flex:0 0 auto;width:58.33333333%}.col-8{flex:0 0 auto;width:66.66666667%}.col-9{flex:0 0 auto;width:75%}.col-10{flex:0 0 auto;width:83.33333333%}.col-11{flex:0 0 auto;width:91.66666667%}.col-12{flex:0 0 auto;width:100%}.offset-1{margin-left:8.33333333%}.offset-2{margin-left:16.66666667%}.offset-3{margin-left:25%}.offset-4{margin-left:33.33333333%}.offset-5{margin-left:41.66666667%}.offset-6{margin-left:50%}.offset-7{margin-left:58.33333333%}.offset-8{margin-left:66.66666667%}.offset-9{margin-left:75%}.offset-10{margin-left:83.33333333%}.offset-11{margin-left:91.66666667%}.g-0,.gx-0{--bs-gutter-x:0}.g-0,.gy-0{--bs-gutter-y:0}.g-1,.gx-1{--bs-gutter-x:0.25rem}.g-1,.gy-1{--bs-gutter-y:0.25rem}.g-2,.gx-2{--bs-gutter-x:0.5rem}.g-2,.gy-2{--bs-gutter-y:0.5rem}.g-3,.gx-3{--bs-gutter-x:1rem}.g-3,.gy-3{--bs-gutter-y:1rem}.g-4,.gx-4{--bs-gutter-x:1.5rem}.g-4,.gy-4{--bs-gutter-y:1.5rem}.g-5,.gx-5{--bs-gutter-x:3rem}.g-5,.gy-5{--bs-gutter-y:3rem}@media (min-width:576px){.col-sm{flex:1 0 0%}.row-cols-sm-auto>*{flex:0 0 auto;width:auto}.row-cols-sm-1>*{flex:0 0 auto;width:100%}.row-cols-sm-2>*{flex:0 0 auto;width:50%}.row-cols-sm-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-sm-4>*{flex:0 0 auto;width:25%}.row-cols-sm-5>*{flex:0 0 auto;width:20%}.row-cols-sm-6>*{flex:0 0 auto;width:16.6666666667%}.col-sm-auto{flex:0 0 auto;width:auto}.col-sm-1{flex:0 0 auto;width:8.33333333%}.col-sm-2{flex:0 0 auto;width:16.66666667%}.col-sm-3{flex:0 0 auto;width:25%}.col-sm-4{flex:0 0 auto;width:33.33333333%}.col-sm-5{flex:0 0 auto;width:41.66666667%}.col-sm-6{flex:0 0 auto;width:50%}.col-sm-7{flex:0 0 auto;width:58.33333333%}.col-sm-8{flex:0 0 auto;width:66.66666667%}.col-sm-9{flex:0 0 auto;width:75%}.col-sm-10{flex:0 0 auto;width:83.33333333%}.col-sm-11{flex:0 0 auto;width:91.66666667%}.col-sm-12{flex:0 0 auto;width:100%}.offset-sm-0{margin-left:0}.offset-sm-1{margin-left:8.33333333%}.offset-sm-2{margin-left:16.66666667%}.offset-sm-3{margin-left:25%}.offset-sm-4{margin-left:33.33333333%}.offset-sm-5{margin-left:41.66666667%}.offset-sm-6{margin-left:50%}.offset-sm-7{margin-left:58.33333333%}.offset-sm-8{margin-left:66.66666667%}.offset-sm-9{margin-left:75%}.offset-sm-10{margin-left:83.33333333%}.offset-sm-11{margin-left:91.66666667%}.g-sm-0,.gx-sm-0{--bs-gutter-x:0}.g-sm-0,.gy-sm-0{--bs-gutter-y:0}.g-sm-1,.gx-sm-1{--bs-gutter-x:0.25rem}.g-sm-1,.gy-sm-1{--bs-gutter-y:0.25rem}.g-sm-2,.gx-sm-2{--bs-gutter-x:0.5rem}.g-sm-2,.gy-sm-2{--bs-gutter-y:0.5rem}.g-sm-3,.gx-sm-3{--bs-gutter-x:1rem}.g-sm-3,.gy-sm-3{--bs-gutter-y:1rem}.g-sm-4,.gx-sm-4{--bs-gutter-x:1.5rem}.g-sm-4,.gy-sm-4{--bs-gutter-y:1.5rem}.g-sm-5,.gx-sm-5{--bs-gutter-x:3rem}.g-sm-5,.gy-sm-5{--bs-gutter-y:3rem}}@media (min-width:768px){.col-md{flex:1 0 0%}.row-cols-md-auto>*{flex:0 0 auto;width:auto}.row-cols-md-1>*{flex:0 0 auto;width:100%}.row-cols-md-2>*{flex:0 0 auto;width:50%}.row-cols-md-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-md-4>*{flex:0 0 auto;width:25%}.row-cols-md-5>*{flex:0 0 auto;width:20%}.row-cols-md-6>*{flex:0 0 auto;width:16.6666666667%}.col-md-auto{flex:0 0 auto;width:auto}.col-md-1{flex:0 0 auto;width:8.33333333%}.col-md-2{flex:0 0 auto;width:16.66666667%}.col-md-3{flex:0 0 auto;width:25%}.col-md-4{flex:0 0 auto;width:33.33333333%}.col-md-5{flex:0 0 auto;width:41.66666667%}.col-md-6{flex:0 0 auto;width:50%}.col-md-7{flex:0 0 auto;width:58.33333333%}.col-md-8{flex:0 0 auto;width:66.66666667%}.col-md-9{flex:0 0 auto;width:75%}.col-md-10{flex:0 0 auto;width:83.33333333%}.col-md-11{flex:0 0 auto;width:91.66666667%}.col-md-12{flex:0 0 auto;width:100%}.offset-md-0{margin-left:0}.offset-md-1{margin-left:8.33333333%}.offset-md-2{margin-left:16.66666667%}.offset-md-3{margin-left:25%}.offset-md-4{margin-left:33.33333333%}.offset-md-5{margin-left:41.66666667%}.offset-md-6{margin-left:50%}.offset-md-7{margin-left:58.33333333%}.offset-md-8{margin-left:66.66666667%}.offset-md-9{margin-left:75%}.offset-md-10{margin-left:83.33333333%}.offset-md-11{margin-left:91.66666667%}.g-md-0,.gx-md-0{--bs-gutter-x:0}.g-md-0,.gy-md-0{--bs-gutter-y:0}.g-md-1,.gx-md-1{--bs-gutter-x:0.25rem}.g-md-1,.gy-md-1{--bs-gutter-y:0.25rem}.g-md-2,.gx-md-2{--bs-gutter-x:0.5rem}.g-md-2,.gy-md-2{--bs-gutter-y:0.5rem}.g-md-3,.gx-md-3{--bs-gutter-x:1rem}.g-md-3,.gy-md-3{--bs-gutter-y:1rem}.g-md-4,.gx-md-4{--bs-gutter-x:1.5rem}.g-md-4,.gy-md-4{--bs-gutter-y:1.5rem}.g-md-5,.gx-md-5{--bs-gutter-x:3rem}.g-md-5,.gy-md-5{--bs-gutter-y:3rem}}@media (min-width:992px){.col-lg{flex:1 0 0%}.row-cols-lg-auto>*{flex:0 0 auto;width:auto}.row-cols-lg-1>*{flex:0 0 auto;width:100%}.row-cols-lg-2>*{flex:0 0 auto;width:50%}.row-cols-lg-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-lg-4>*{flex:0 0 auto;width:25%}.row-cols-lg-5>*{flex:0 0 auto;width:20%}.row-cols-lg-6>*{flex:0 0 auto;width:16.6666666667%}.col-lg-auto{flex:0 0 auto;width:auto}.col-lg-1{flex:0 0 auto;width:8.33333333%}.col-lg-2{flex:0 0 auto;width:16.66666667%}.col-lg-3{flex:0 0 auto;width:25%}.col-lg-4{flex:0 0 auto;width:33.33333333%}.col-lg-5{flex:0 0 auto;width:41.66666667%}.col-lg-6{flex:0 0 auto;width:50%}.col-lg-7{flex:0 0 auto;width:58.33333333%}.col-lg-8{flex:0 0 auto;width:66.66666667%}.col-lg-9{flex:0 0 auto;width:75%}.col-lg-10{flex:0 0 auto;width:83.33333333%}.col-lg-11{flex:0 0 auto;width:91.66666667%}.col-lg-12{flex:0 0 auto;width:100%}.offset-lg-0{margin-left:0}.offset-lg-1{margin-left:8.33333333%}.offset-lg-2{margin-left:16.66666667%}.offset-lg-3{margin-left:25%}.offset-lg-4{margin-left:33.33333333%}.offset-lg-5{margin-left:41.66666667%}.offset-lg-6{margin-left:50%}.offset-lg-7{margin-left:58.33333333%}.offset-lg-8{margin-left:66.66666667%}.offset-lg-9{margin-left:75%}.offset-lg-10{margin-left:83.33333333%}.offset-lg-11{margin-left:91.66666667%}.g-lg-0,.gx-lg-0{--bs-gutter-x:0}.g-lg-0,.gy-lg-0{--bs-gutter-y:0}.g-lg-1,.gx-lg-1{--bs-gutter-x:0.25rem}.g-lg-1,.gy-lg-1{--bs-gutter-y:0.25rem}.g-lg-2,.gx-lg-2{--bs-gutter-x:0.5rem}.g-lg-2,.gy-lg-2{--bs-gutter-y:0.5rem}.g-lg-3,.gx-lg-3{--bs-gutter-x:1rem}.g-lg-3,.gy-lg-3{--bs-gutter-y:1rem}.g-lg-4,.gx-lg-4{--bs-gutter-x:1.5rem}.g-lg-4,.gy-lg-4{--bs-gutter-y:1.5rem}.g-lg-5,.gx-lg-5{--bs-gutter-x:3rem}.g-lg-5,.gy-lg-5{--bs-gutter-y:3rem}}@media (min-width:1200px){.col-xl{flex:1 0 0%}.row-cols-xl-auto>*{flex:0 0 auto;width:auto}.row-cols-xl-1>*{flex:0 0 auto;width:100%}.row-cols-xl-2>*{flex:0 0 auto;width:50%}.row-cols-xl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xl-4>*{flex:0 0 auto;width:25%}.row-cols-xl-5>*{flex:0 0 auto;width:20%}.row-cols-xl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xl-auto{flex:0 0 auto;width:auto}.col-xl-1{flex:0 0 auto;width:8.33333333%}.col-xl-2{flex:0 0 auto;width:16.66666667%}.col-xl-3{flex:0 0 auto;width:25%}.col-xl-4{flex:0 0 auto;width:33.33333333%}.col-xl-5{flex:0 0 auto;width:41.66666667%}.col-xl-6{flex:0 0 auto;width:50%}.col-xl-7{flex:0 0 auto;width:58.33333333%}.col-xl-8{flex:0 0 auto;width:66.66666667%}.col-xl-9{flex:0 0 auto;width:75%}.col-xl-10{flex:0 0 auto;width:83.33333333%}.col-xl-11{flex:0 0 auto;width:91.66666667%}.col-xl-12{flex:0 0 auto;width:100%}.offset-xl-0{margin-left:0}.offset-xl-1{margin-left:8.33333333%}.offset-xl-2{margin-left:16.66666667%}.offset-xl-3{margin-left:25%}.offset-xl-4{margin-left:33.33333333%}.offset-xl-5{margin-left:41.66666667%}.offset-xl-6{margin-left:50%}.offset-xl-7{margin-left:58.33333333%}.offset-xl-8{margin-left:66.66666667%}.offset-xl-9{margin-left:75%}.offset-xl-10{margin-left:83.33333333%}.offset-xl-11{margin-left:91.66666667%}.g-xl-0,.gx-xl-0{--bs-gutter-x:0}.g-xl-0,.gy-xl-0{--bs-gutter-y:0}.g-xl-1,.gx-xl-1{--bs-gutter-x:0.25rem}.g-xl-1,.gy-xl-1{--bs-gutter-y:0.25rem}.g-xl-2,.gx-xl-2{--bs-gutter-x:0.5rem}.g-xl-2,.gy-xl-2{--bs-gutter-y:0.5rem}.g-xl-3,.gx-xl-3{--bs-gutter-x:1rem}.g-xl-3,.gy-xl-3{--bs-gutter-y:1rem}.g-xl-4,.gx-xl-4{--bs-gutter-x:1.5rem}.g-xl-4,.gy-xl-4{--bs-gutter-y:1.5rem}.g-xl-5,.gx-xl-5{--bs-gutter-x:3rem}.g-xl-5,.gy-xl-5{--bs-gutter-y:3rem}}@media (min-width:1400px){.col-xxl{flex:1 0 0%}.row-cols-xxl-auto>*{flex:0 0 auto;width:auto}.row-cols-xxl-1>*{flex:0 0 auto;width:100%}.row-cols-xxl-2>*{flex:0 0 auto;width:50%}.row-cols-xxl-3>*{flex:0 0 auto;width:33.3333333333%}.row-cols-xxl-4>*{flex:0 0 auto;width:25%}.row-cols-xxl-5>*{flex:0 0 auto;width:20%}.row-cols-xxl-6>*{flex:0 0 auto;width:16.6666666667%}.col-xxl-auto{flex:0 0 auto;width:auto}.col-xxl-1{flex:0 0 auto;width:8.33333333%}.col-xxl-2{flex:0 0 auto;width:16.66666667%}.col-xxl-3{flex:0 0 auto;width:25%}.col-xxl-4{flex:0 0 auto;width:33.33333333%}.col-xxl-5{flex:0 0 auto;width:41.66666667%}.col-xxl-6{flex:0 0 auto;width:50%}.col-xxl-7{flex:0 0 auto;width:58.33333333%}.col-xxl-8{flex:0 0 auto;width:66.66666667%}.col-xxl-9{flex:0 0 auto;width:75%}.col-xxl-10{flex:0 0 auto;width:83.33333333%}.col-xxl-11{flex:0 0 auto;width:91.66666667%}.col-xxl-12{flex:0 0 auto;width:100%}.offset-xxl-0{margin-left:0}.offset-xxl-1{margin-left:8.33333333%}.offset-xxl-2{margin-left:16.66666667%}.offset-xxl-3{margin-left:25%}.offset-xxl-4{margin-left:33.33333333%}.offset-xxl-5{margin-left:41.66666667%}.offset-xxl-6{margin-left:50%}.offset-xxl-7{margin-left:58.33333333%}.offset-xxl-8{margin-left:66.66666667%}.offset-xxl-9{margin-left:75%}.offset-xxl-10{margin-left:83.33333333%}.offset-xxl-11{margin-left:91.66666667%}.g-xxl-0,.gx-xxl-0{--bs-gutter-x:0}.g-xxl-0,.gy-xxl-0{--bs-gutter-y:0}.g-xxl-1,.gx-xxl-1{--bs-gutter-x:0.25rem}.g-xxl-1,.gy-xxl-1{--bs-gutter-y:0.25rem}.g-xxl-2,.gx-xxl-2{--bs-gutter-x:0.5rem}.g-xxl-2,.gy-xxl-2{--bs-gutter-y:0.5rem}.g-xxl-3,.gx-xxl-3{--bs-gutter-x:1rem}.g-xxl-3,.gy-xxl-3{--bs-gutter-y:1rem}.g-xxl-4,.gx-xxl-4{--bs-gutter-x:1.5rem}.g-xxl-4,.gy-xxl-4{--bs-gutter-y:1.5rem}.g-xxl-5,.gx-xxl-5{--bs-gutter-x:3rem}.g-xxl-5,.gy-xxl-5{--bs-gutter-y:3rem}}.table{--bs-table-bg:transparent;--bs-table-accent-bg:transparent;--bs-table-striped-color:#212529;--bs-table-striped-bg:rgba(0, 0, 0, 0.05);--bs-table-active-color:#212529;--bs-table-active-bg:rgba(0, 0, 0, 0.1);--bs-table-hover-color:#212529;--bs-table-hover-bg:rgba(0, 0, 0, 0.075);width:100%;margin-bottom:1rem;color:#212529;vertical-align:top;border-color:#dee2e6}.table>:not(caption)>*>*{padding:.5rem .5rem;background-color:var(--bs-table-bg);border-bottom-width:1px;box-shadow:inset 0 0 0 9999px var(--bs-table-accent-bg)}.table>tbody{vertical-align:inherit}.table>thead{vertical-align:bottom}.table>:not(:first-child){border-top:2px solid currentColor}.caption-top{caption-side:top}.table-sm>:not(caption)>*>*{padding:.25rem .25rem}.table-bordered>:not(caption)>*{border-width:1px 0}.table-bordered>:not(caption)>*>*{border-width:0 1px}.table-borderless>:not(caption)>*>*{border-bottom-width:0}.table-borderless>:not(:first-child){border-top-width:0}.table-striped>tbody>tr:nth-of-type(odd)>*{--bs-table-accent-bg:var(--bs-table-striped-bg);color:var(--bs-table-striped-color)}.table-active{--bs-table-accent-bg:var(--bs-table-active-bg);color:var(--bs-table-active-color)}.table-hover>tbody>tr:hover>*{--bs-table-accent-bg:var(--bs-table-hover-bg);color:var(--bs-table-hover-color)}.table-primary{--bs-table-bg:#cfe2ff;--bs-table-striped-bg:#c5d7f2;--bs-table-striped-color:#000;--bs-table-active-bg:#bacbe6;--bs-table-active-color:#000;--bs-table-hover-bg:#bfd1ec;--bs-table-hover-color:#000;color:#000;border-color:#bacbe6}.table-secondary{--bs-table-bg:#e2e3e5;--bs-table-striped-bg:#d7d8da;--bs-table-striped-color:#000;--bs-table-active-bg:#cbccce;--bs-table-active-color:#000;--bs-table-hover-bg:#d1d2d4;--bs-table-hover-color:#000;color:#000;border-color:#cbccce}.table-success{--bs-table-bg:#d1e7dd;--bs-table-striped-bg:#c7dbd2;--bs-table-striped-color:#000;--bs-table-active-bg:#bcd0c7;--bs-table-active-color:#000;--bs-table-hover-bg:#c1d6cc;--bs-table-hover-color:#000;color:#000;border-color:#bcd0c7}.table-info{--bs-table-bg:#cff4fc;--bs-table-striped-bg:#c5e8ef;--bs-table-striped-color:#000;--bs-table-active-bg:#badce3;--bs-table-active-color:#000;--bs-table-hover-bg:#bfe2e9;--bs-table-hover-color:#000;color:#000;border-color:#badce3}.table-warning{--bs-table-bg:#fff3cd;--bs-table-striped-bg:#f2e7c3;--bs-table-striped-color:#000;--bs-table-active-bg:#e6dbb9;--bs-table-active-color:#000;--bs-table-hover-bg:#ece1be;--bs-table-hover-color:#000;color:#000;border-color:#e6dbb9}.table-danger{--bs-table-bg:#f8d7da;--bs-table-striped-bg:#eccccf;--bs-table-striped-color:#000;--bs-table-active-bg:#dfc2c4;--bs-table-active-color:#000;--bs-table-hover-bg:#e5c7ca;--bs-table-hover-color:#000;color:#000;border-color:#dfc2c4}.table-light{--bs-table-bg:#f8f9fa;--bs-table-striped-bg:#ecedee;--bs-table-striped-color:#000;--bs-table-active-bg:#dfe0e1;--bs-table-active-color:#000;--bs-table-hover-bg:#e5e6e7;--bs-table-hover-color:#000;color:#000;border-color:#dfe0e1}.table-dark{--bs-table-bg:#212529;--bs-table-striped-bg:#2c3034;--bs-table-striped-color:#fff;--bs-table-active-bg:#373b3e;--bs-table-active-color:#fff;--bs-table-hover-bg:#323539;--bs-table-hover-color:#fff;color:#fff;border-color:#373b3e}.table-responsive{overflow-x:auto;-webkit-overflow-scrolling:touch}@media (max-width:575.98px){.table-responsive-sm{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:767.98px){.table-responsive-md{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:991.98px){.table-responsive-lg{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1199.98px){.table-responsive-xl{overflow-x:auto;-webkit-overflow-scrolling:touch}}@media (max-width:1399.98px){.table-responsive-xxl{overflow-x:auto;-webkit-overflow-scrolling:touch}}.form-label{margin-bottom:.5rem}.col-form-label{padding-top:calc(.375rem + 1px);padding-bottom:calc(.375rem + 1px);margin-bottom:0;font-size:inherit;line-height:1.5}.col-form-label-lg{padding-top:calc(.5rem + 1px);padding-bottom:calc(.5rem + 1px);font-size:1.25rem}.col-form-label-sm{padding-top:calc(.25rem + 1px);padding-bottom:calc(.25rem + 1px);font-size:.875rem}.form-text{margin-top:.25rem;font-size:.875em;color:#6c757d}.form-control{display:block;width:100%;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-clip:padding-box;border:1px solid #ced4da;-webkit-appearance:none;-moz-appearance:none;appearance:none;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control{transition:none}}.form-control[type=file]{overflow:hidden}.form-control[type=file]:not(:disabled):not([readonly]){cursor:pointer}.form-control:focus{color:#212529;background-color:#fff;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-control::-webkit-date-and-time-value{height:1.5em}.form-control::-moz-placeholder{color:#6c757d;opacity:1}.form-control::placeholder{color:#6c757d;opacity:1}.form-control:disabled,.form-control[readonly]{background-color:#e9ecef;opacity:1}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}.form-control::file-selector-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}.form-control::file-selector-button{transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control:hover:not(:disabled):not([readonly])::file-selector-button{background-color:#dde0e3}.form-control::-webkit-file-upload-button{padding:.375rem .75rem;margin:-.375rem -.75rem;-webkit-margin-end:.75rem;margin-inline-end:.75rem;color:#212529;background-color:#e9ecef;pointer-events:none;border-color:inherit;border-style:solid;border-width:0;border-inline-end-width:1px;border-radius:0;-webkit-transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-control::-webkit-file-upload-button{-webkit-transition:none;transition:none}}.form-control:hover:not(:disabled):not([readonly])::-webkit-file-upload-button{background-color:#dde0e3}.form-control-plaintext{display:block;width:100%;padding:.375rem 0;margin-bottom:0;line-height:1.5;color:#212529;background-color:transparent;border:solid transparent;border-width:1px 0}.form-control-plaintext.form-control-lg,.form-control-plaintext.form-control-sm{padding-right:0;padding-left:0}.form-control-sm{min-height:calc(1.5em + .5rem + 2px);padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::file-selector-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-sm::-webkit-file-upload-button{padding:.25rem .5rem;margin:-.25rem -.5rem;-webkit-margin-end:.5rem;margin-inline-end:.5rem}.form-control-lg{min-height:calc(1.5em + 1rem + 2px);padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::file-selector-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}.form-control-lg::-webkit-file-upload-button{padding:.5rem 1rem;margin:-.5rem -1rem;-webkit-margin-end:1rem;margin-inline-end:1rem}textarea.form-control{min-height:calc(1.5em + .75rem + 2px)}textarea.form-control-sm{min-height:calc(1.5em + .5rem + 2px)}textarea.form-control-lg{min-height:calc(1.5em + 1rem + 2px)}.form-control-color{width:3rem;height:auto;padding:.375rem}.form-control-color:not(:disabled):not([readonly]){cursor:pointer}.form-control-color::-moz-color-swatch{height:1.5em;border-radius:.25rem}.form-control-color::-webkit-color-swatch{height:1.5em;border-radius:.25rem}.form-select{display:block;width:100%;padding:.375rem 2.25rem .375rem .75rem;-moz-padding-start:calc(0.75rem - 3px);font-size:1rem;font-weight:400;line-height:1.5;color:#212529;background-color:#fff;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right .75rem center;background-size:16px 12px;border:1px solid #ced4da;border-radius:.25rem;transition:border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-select{transition:none}}.form-select:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-select[multiple],.form-select[size]:not([size="1"]){padding-right:.75rem;background-image:none}.form-select:disabled{background-color:#e9ecef}.form-select:-moz-focusring{color:transparent;text-shadow:0 0 0 #212529}.form-select-sm{padding-top:.25rem;padding-bottom:.25rem;padding-left:.5rem;font-size:.875rem;border-radius:.2rem}.form-select-lg{padding-top:.5rem;padding-bottom:.5rem;padding-left:1rem;font-size:1.25rem;border-radius:.3rem}.form-check{display:block;min-height:1.5rem;padding-left:1.5em;margin-bottom:.125rem}.form-check .form-check-input{float:left;margin-left:-1.5em}.form-check-input{width:1em;height:1em;margin-top:.25em;vertical-align:top;background-color:#fff;background-repeat:no-repeat;background-position:center;background-size:contain;border:1px solid rgba(0,0,0,.25);-webkit-appearance:none;-moz-appearance:none;appearance:none;-webkit-print-color-adjust:exact;color-adjust:exact}.form-check-input[type=checkbox]{border-radius:.25em}.form-check-input[type=radio]{border-radius:50%}.form-check-input:active{filter:brightness(90%)}.form-check-input:focus{border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.form-check-input:checked{background-color:#0d6efd;border-color:#0d6efd}.form-check-input:checked[type=checkbox]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")}.form-check-input:checked[type=radio]{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='2' fill='%23fff'/%3e%3c/svg%3e")}.form-check-input[type=checkbox]:indeterminate{background-color:#0d6efd;border-color:#0d6efd;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10h8'/%3e%3c/svg%3e")}.form-check-input:disabled{pointer-events:none;filter:none;opacity:.5}.form-check-input:disabled~.form-check-label,.form-check-input[disabled]~.form-check-label{opacity:.5}.form-switch{padding-left:2.5em}.form-switch .form-check-input{width:2em;margin-left:-2.5em;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='rgba%280, 0, 0, 0.25%29'/%3e%3c/svg%3e");background-position:left center;border-radius:2em;transition:background-position .15s ease-in-out}@media (prefers-reduced-motion:reduce){.form-switch .form-check-input{transition:none}}.form-switch .form-check-input:focus{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%2386b7fe'/%3e%3c/svg%3e")}.form-switch .form-check-input:checked{background-position:right center;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='-4 -4 8 8'%3e%3ccircle r='3' fill='%23fff'/%3e%3c/svg%3e")}.form-check-inline{display:inline-block;margin-right:1rem}.btn-check{position:absolute;clip:rect(0,0,0,0);pointer-events:none}.btn-check:disabled+.btn,.btn-check[disabled]+.btn{pointer-events:none;filter:none;opacity:.65}.form-range{width:100%;height:1.5rem;padding:0;background-color:transparent;-webkit-appearance:none;-moz-appearance:none;appearance:none}.form-range:focus{outline:0}.form-range:focus::-webkit-slider-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range:focus::-moz-range-thumb{box-shadow:0 0 0 1px #fff,0 0 0 .25rem rgba(13,110,253,.25)}.form-range::-moz-focus-outer{border:0}.form-range::-webkit-slider-thumb{width:1rem;height:1rem;margin-top:-.25rem;background-color:#0d6efd;border:0;border-radius:1rem;-webkit-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-webkit-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-webkit-slider-thumb{-webkit-transition:none;transition:none}}.form-range::-webkit-slider-thumb:active{background-color:#b6d4fe}.form-range::-webkit-slider-runnable-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range::-moz-range-thumb{width:1rem;height:1rem;background-color:#0d6efd;border:0;border-radius:1rem;-moz-transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;transition:background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;-moz-appearance:none;appearance:none}@media (prefers-reduced-motion:reduce){.form-range::-moz-range-thumb{-moz-transition:none;transition:none}}.form-range::-moz-range-thumb:active{background-color:#b6d4fe}.form-range::-moz-range-track{width:100%;height:.5rem;color:transparent;cursor:pointer;background-color:#dee2e6;border-color:transparent;border-radius:1rem}.form-range:disabled{pointer-events:none}.form-range:disabled::-webkit-slider-thumb{background-color:#adb5bd}.form-range:disabled::-moz-range-thumb{background-color:#adb5bd}.form-floating{position:relative}.form-floating>.form-control,.form-floating>.form-select{height:calc(3.5rem + 2px);line-height:1.25}.form-floating>label{position:absolute;top:0;left:0;height:100%;padding:1rem .75rem;pointer-events:none;border:1px solid transparent;transform-origin:0 0;transition:opacity .1s ease-in-out,transform .1s ease-in-out}@media (prefers-reduced-motion:reduce){.form-floating>label{transition:none}}.form-floating>.form-control{padding:1rem .75rem}.form-floating>.form-control::-moz-placeholder{color:transparent}.form-floating>.form-control::placeholder{color:transparent}.form-floating>.form-control:not(:-moz-placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:focus,.form-floating>.form-control:not(:placeholder-shown){padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:-webkit-autofill{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-select{padding-top:1.625rem;padding-bottom:.625rem}.form-floating>.form-control:not(:-moz-placeholder-shown)~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:focus~label,.form-floating>.form-control:not(:placeholder-shown)~label,.form-floating>.form-select~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.form-floating>.form-control:-webkit-autofill~label{opacity:.65;transform:scale(.85) translateY(-.5rem) translateX(.15rem)}.input-group{position:relative;display:flex;flex-wrap:wrap;align-items:stretch;width:100%}.input-group>.form-control,.input-group>.form-select{position:relative;flex:1 1 auto;width:1%;min-width:0}.input-group>.form-control:focus,.input-group>.form-select:focus{z-index:3}.input-group .btn{position:relative;z-index:2}.input-group .btn:focus{z-index:3}.input-group-text{display:flex;align-items:center;padding:.375rem .75rem;font-size:1rem;font-weight:400;line-height:1.5;color:#212529;text-align:center;white-space:nowrap;background-color:#e9ecef;border:1px solid #ced4da;border-radius:.25rem}.input-group-lg>.btn,.input-group-lg>.form-control,.input-group-lg>.form-select,.input-group-lg>.input-group-text{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.input-group-sm>.btn,.input-group-sm>.form-control,.input-group-sm>.form-select,.input-group-sm>.input-group-text{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.input-group-lg>.form-select,.input-group-sm>.form-select{padding-right:3rem}.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3),.input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group.has-validation>.dropdown-toggle:nth-last-child(n+4),.input-group.has-validation>:nth-last-child(n+3):not(.dropdown-toggle):not(.dropdown-menu){border-top-right-radius:0;border-bottom-right-radius:0}.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback){margin-left:-1px;border-top-left-radius:0;border-bottom-left-radius:0}.valid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#198754}.valid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(25,135,84,.9);border-radius:.25rem}.is-valid~.valid-feedback,.is-valid~.valid-tooltip,.was-validated :valid~.valid-feedback,.was-validated :valid~.valid-tooltip{display:block}.form-control.is-valid,.was-validated .form-control:valid{border-color:#198754;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-valid:focus,.was-validated .form-control:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.was-validated textarea.form-control:valid,textarea.form-control.is-valid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-valid,.was-validated .form-select:valid{border-color:#198754}.form-select.is-valid:not([multiple]):not([size]),.form-select.is-valid:not([multiple])[size="1"],.was-validated .form-select:valid:not([multiple]):not([size]),.was-validated .form-select:valid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-valid:focus,.was-validated .form-select:valid:focus{border-color:#198754;box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid,.was-validated .form-check-input:valid{border-color:#198754}.form-check-input.is-valid:checked,.was-validated .form-check-input:valid:checked{background-color:#198754}.form-check-input.is-valid:focus,.was-validated .form-check-input:valid:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.25)}.form-check-input.is-valid~.form-check-label,.was-validated .form-check-input:valid~.form-check-label{color:#198754}.form-check-inline .form-check-input~.valid-feedback{margin-left:.5em}.input-group .form-control.is-valid,.input-group .form-select.is-valid,.was-validated .input-group .form-control:valid,.was-validated .input-group .form-select:valid{z-index:1}.input-group .form-control.is-valid:focus,.input-group .form-select.is-valid:focus,.was-validated .input-group .form-control:valid:focus,.was-validated .input-group .form-select:valid:focus{z-index:3}.invalid-feedback{display:none;width:100%;margin-top:.25rem;font-size:.875em;color:#dc3545}.invalid-tooltip{position:absolute;top:100%;z-index:5;display:none;max-width:100%;padding:.25rem .5rem;margin-top:.1rem;font-size:.875rem;color:#fff;background-color:rgba(220,53,69,.9);border-radius:.25rem}.is-invalid~.invalid-feedback,.is-invalid~.invalid-tooltip,.was-validated :invalid~.invalid-feedback,.was-validated :invalid~.invalid-tooltip{display:block}.form-control.is-invalid,.was-validated .form-control:invalid{border-color:#dc3545;padding-right:calc(1.5em + .75rem);background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-repeat:no-repeat;background-position:right calc(.375em + .1875rem) center;background-size:calc(.75em + .375rem) calc(.75em + .375rem)}.form-control.is-invalid:focus,.was-validated .form-control:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.was-validated textarea.form-control:invalid,textarea.form-control.is-invalid{padding-right:calc(1.5em + .75rem);background-position:top calc(.375em + .1875rem) right calc(.375em + .1875rem)}.form-select.is-invalid,.was-validated .form-select:invalid{border-color:#dc3545}.form-select.is-invalid:not([multiple]):not([size]),.form-select.is-invalid:not([multiple])[size="1"],.was-validated .form-select:invalid:not([multiple]):not([size]),.was-validated .form-select:invalid:not([multiple])[size="1"]{padding-right:4.125rem;background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e"),url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");background-position:right .75rem center,center right 2.25rem;background-size:16px 12px,calc(.75em + .375rem) calc(.75em + .375rem)}.form-select.is-invalid:focus,.was-validated .form-select:invalid:focus{border-color:#dc3545;box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid,.was-validated .form-check-input:invalid{border-color:#dc3545}.form-check-input.is-invalid:checked,.was-validated .form-check-input:invalid:checked{background-color:#dc3545}.form-check-input.is-invalid:focus,.was-validated .form-check-input:invalid:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.25)}.form-check-input.is-invalid~.form-check-label,.was-validated .form-check-input:invalid~.form-check-label{color:#dc3545}.form-check-inline .form-check-input~.invalid-feedback{margin-left:.5em}.input-group .form-control.is-invalid,.input-group .form-select.is-invalid,.was-validated .input-group .form-control:invalid,.was-validated .input-group .form-select:invalid{z-index:2}.input-group .form-control.is-invalid:focus,.input-group .form-select.is-invalid:focus,.was-validated .input-group .form-control:invalid:focus,.was-validated .input-group .form-select:invalid:focus{z-index:3}.btn{display:inline-block;font-weight:400;line-height:1.5;color:#212529;text-align:center;text-decoration:none;vertical-align:middle;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;user-select:none;background-color:transparent;border:1px solid transparent;padding:.375rem .75rem;font-size:1rem;border-radius:.25rem;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.btn{transition:none}}.btn:hover{color:#212529}.btn-check:focus+.btn,.btn:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.btn.disabled,.btn:disabled,fieldset:disabled .btn{pointer-events:none;opacity:.65}.btn-primary{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-primary:hover{color:#fff;background-color:#0b5ed7;border-color:#0a58ca}.btn-check:focus+.btn-primary,.btn-primary:focus{color:#fff;background-color:#0b5ed7;border-color:#0a58ca;box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-check:active+.btn-primary,.btn-check:checked+.btn-primary,.btn-primary.active,.btn-primary:active,.show>.btn-primary.dropdown-toggle{color:#fff;background-color:#0a58ca;border-color:#0a53be}.btn-check:active+.btn-primary:focus,.btn-check:checked+.btn-primary:focus,.btn-primary.active:focus,.btn-primary:active:focus,.show>.btn-primary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(49,132,253,.5)}.btn-primary.disabled,.btn-primary:disabled{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-secondary{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-secondary:hover{color:#fff;background-color:#5c636a;border-color:#565e64}.btn-check:focus+.btn-secondary,.btn-secondary:focus{color:#fff;background-color:#5c636a;border-color:#565e64;box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-check:active+.btn-secondary,.btn-check:checked+.btn-secondary,.btn-secondary.active,.btn-secondary:active,.show>.btn-secondary.dropdown-toggle{color:#fff;background-color:#565e64;border-color:#51585e}.btn-check:active+.btn-secondary:focus,.btn-check:checked+.btn-secondary:focus,.btn-secondary.active:focus,.btn-secondary:active:focus,.show>.btn-secondary.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(130,138,145,.5)}.btn-secondary.disabled,.btn-secondary:disabled{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-success{color:#fff;background-color:#198754;border-color:#198754}.btn-success:hover{color:#fff;background-color:#157347;border-color:#146c43}.btn-check:focus+.btn-success,.btn-success:focus{color:#fff;background-color:#157347;border-color:#146c43;box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-check:active+.btn-success,.btn-check:checked+.btn-success,.btn-success.active,.btn-success:active,.show>.btn-success.dropdown-toggle{color:#fff;background-color:#146c43;border-color:#13653f}.btn-check:active+.btn-success:focus,.btn-check:checked+.btn-success:focus,.btn-success.active:focus,.btn-success:active:focus,.show>.btn-success.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(60,153,110,.5)}.btn-success.disabled,.btn-success:disabled{color:#fff;background-color:#198754;border-color:#198754}.btn-info{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-info:hover{color:#000;background-color:#31d2f2;border-color:#25cff2}.btn-check:focus+.btn-info,.btn-info:focus{color:#000;background-color:#31d2f2;border-color:#25cff2;box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-check:active+.btn-info,.btn-check:checked+.btn-info,.btn-info.active,.btn-info:active,.show>.btn-info.dropdown-toggle{color:#000;background-color:#3dd5f3;border-color:#25cff2}.btn-check:active+.btn-info:focus,.btn-check:checked+.btn-info:focus,.btn-info.active:focus,.btn-info:active:focus,.show>.btn-info.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(11,172,204,.5)}.btn-info.disabled,.btn-info:disabled{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-warning{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-warning:hover{color:#000;background-color:#ffca2c;border-color:#ffc720}.btn-check:focus+.btn-warning,.btn-warning:focus{color:#000;background-color:#ffca2c;border-color:#ffc720;box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-check:active+.btn-warning,.btn-check:checked+.btn-warning,.btn-warning.active,.btn-warning:active,.show>.btn-warning.dropdown-toggle{color:#000;background-color:#ffcd39;border-color:#ffc720}.btn-check:active+.btn-warning:focus,.btn-check:checked+.btn-warning:focus,.btn-warning.active:focus,.btn-warning:active:focus,.show>.btn-warning.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(217,164,6,.5)}.btn-warning.disabled,.btn-warning:disabled{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-danger{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-danger:hover{color:#fff;background-color:#bb2d3b;border-color:#b02a37}.btn-check:focus+.btn-danger,.btn-danger:focus{color:#fff;background-color:#bb2d3b;border-color:#b02a37;box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-check:active+.btn-danger,.btn-check:checked+.btn-danger,.btn-danger.active,.btn-danger:active,.show>.btn-danger.dropdown-toggle{color:#fff;background-color:#b02a37;border-color:#a52834}.btn-check:active+.btn-danger:focus,.btn-check:checked+.btn-danger:focus,.btn-danger.active:focus,.btn-danger:active:focus,.show>.btn-danger.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(225,83,97,.5)}.btn-danger.disabled,.btn-danger:disabled{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-light{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-light:hover{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:focus+.btn-light,.btn-light:focus{color:#000;background-color:#f9fafb;border-color:#f9fafb;box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-check:active+.btn-light,.btn-check:checked+.btn-light,.btn-light.active,.btn-light:active,.show>.btn-light.dropdown-toggle{color:#000;background-color:#f9fafb;border-color:#f9fafb}.btn-check:active+.btn-light:focus,.btn-check:checked+.btn-light:focus,.btn-light.active:focus,.btn-light:active:focus,.show>.btn-light.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(211,212,213,.5)}.btn-light.disabled,.btn-light:disabled{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-dark{color:#fff;background-color:#212529;border-color:#212529}.btn-dark:hover{color:#fff;background-color:#1c1f23;border-color:#1a1e21}.btn-check:focus+.btn-dark,.btn-dark:focus{color:#fff;background-color:#1c1f23;border-color:#1a1e21;box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-check:active+.btn-dark,.btn-check:checked+.btn-dark,.btn-dark.active,.btn-dark:active,.show>.btn-dark.dropdown-toggle{color:#fff;background-color:#1a1e21;border-color:#191c1f}.btn-check:active+.btn-dark:focus,.btn-check:checked+.btn-dark:focus,.btn-dark.active:focus,.btn-dark:active:focus,.show>.btn-dark.dropdown-toggle:focus{box-shadow:0 0 0 .25rem rgba(66,70,73,.5)}.btn-dark.disabled,.btn-dark:disabled{color:#fff;background-color:#212529;border-color:#212529}.btn-outline-primary{color:#0d6efd;border-color:#0d6efd}.btn-outline-primary:hover{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:focus+.btn-outline-primary,.btn-outline-primary:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-check:active+.btn-outline-primary,.btn-check:checked+.btn-outline-primary,.btn-outline-primary.active,.btn-outline-primary.dropdown-toggle.show,.btn-outline-primary:active{color:#fff;background-color:#0d6efd;border-color:#0d6efd}.btn-check:active+.btn-outline-primary:focus,.btn-check:checked+.btn-outline-primary:focus,.btn-outline-primary.active:focus,.btn-outline-primary.dropdown-toggle.show:focus,.btn-outline-primary:active:focus{box-shadow:0 0 0 .25rem rgba(13,110,253,.5)}.btn-outline-primary.disabled,.btn-outline-primary:disabled{color:#0d6efd;background-color:transparent}.btn-outline-secondary{color:#6c757d;border-color:#6c757d}.btn-outline-secondary:hover{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:focus+.btn-outline-secondary,.btn-outline-secondary:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-check:active+.btn-outline-secondary,.btn-check:checked+.btn-outline-secondary,.btn-outline-secondary.active,.btn-outline-secondary.dropdown-toggle.show,.btn-outline-secondary:active{color:#fff;background-color:#6c757d;border-color:#6c757d}.btn-check:active+.btn-outline-secondary:focus,.btn-check:checked+.btn-outline-secondary:focus,.btn-outline-secondary.active:focus,.btn-outline-secondary.dropdown-toggle.show:focus,.btn-outline-secondary:active:focus{box-shadow:0 0 0 .25rem rgba(108,117,125,.5)}.btn-outline-secondary.disabled,.btn-outline-secondary:disabled{color:#6c757d;background-color:transparent}.btn-outline-success{color:#198754;border-color:#198754}.btn-outline-success:hover{color:#fff;background-color:#198754;border-color:#198754}.btn-check:focus+.btn-outline-success,.btn-outline-success:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-check:active+.btn-outline-success,.btn-check:checked+.btn-outline-success,.btn-outline-success.active,.btn-outline-success.dropdown-toggle.show,.btn-outline-success:active{color:#fff;background-color:#198754;border-color:#198754}.btn-check:active+.btn-outline-success:focus,.btn-check:checked+.btn-outline-success:focus,.btn-outline-success.active:focus,.btn-outline-success.dropdown-toggle.show:focus,.btn-outline-success:active:focus{box-shadow:0 0 0 .25rem rgba(25,135,84,.5)}.btn-outline-success.disabled,.btn-outline-success:disabled{color:#198754;background-color:transparent}.btn-outline-info{color:#0dcaf0;border-color:#0dcaf0}.btn-outline-info:hover{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:focus+.btn-outline-info,.btn-outline-info:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-check:active+.btn-outline-info,.btn-check:checked+.btn-outline-info,.btn-outline-info.active,.btn-outline-info.dropdown-toggle.show,.btn-outline-info:active{color:#000;background-color:#0dcaf0;border-color:#0dcaf0}.btn-check:active+.btn-outline-info:focus,.btn-check:checked+.btn-outline-info:focus,.btn-outline-info.active:focus,.btn-outline-info.dropdown-toggle.show:focus,.btn-outline-info:active:focus{box-shadow:0 0 0 .25rem rgba(13,202,240,.5)}.btn-outline-info.disabled,.btn-outline-info:disabled{color:#0dcaf0;background-color:transparent}.btn-outline-warning{color:#ffc107;border-color:#ffc107}.btn-outline-warning:hover{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:focus+.btn-outline-warning,.btn-outline-warning:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-check:active+.btn-outline-warning,.btn-check:checked+.btn-outline-warning,.btn-outline-warning.active,.btn-outline-warning.dropdown-toggle.show,.btn-outline-warning:active{color:#000;background-color:#ffc107;border-color:#ffc107}.btn-check:active+.btn-outline-warning:focus,.btn-check:checked+.btn-outline-warning:focus,.btn-outline-warning.active:focus,.btn-outline-warning.dropdown-toggle.show:focus,.btn-outline-warning:active:focus{box-shadow:0 0 0 .25rem rgba(255,193,7,.5)}.btn-outline-warning.disabled,.btn-outline-warning:disabled{color:#ffc107;background-color:transparent}.btn-outline-danger{color:#dc3545;border-color:#dc3545}.btn-outline-danger:hover{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:focus+.btn-outline-danger,.btn-outline-danger:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-check:active+.btn-outline-danger,.btn-check:checked+.btn-outline-danger,.btn-outline-danger.active,.btn-outline-danger.dropdown-toggle.show,.btn-outline-danger:active{color:#fff;background-color:#dc3545;border-color:#dc3545}.btn-check:active+.btn-outline-danger:focus,.btn-check:checked+.btn-outline-danger:focus,.btn-outline-danger.active:focus,.btn-outline-danger.dropdown-toggle.show:focus,.btn-outline-danger:active:focus{box-shadow:0 0 0 .25rem rgba(220,53,69,.5)}.btn-outline-danger.disabled,.btn-outline-danger:disabled{color:#dc3545;background-color:transparent}.btn-outline-light{color:#f8f9fa;border-color:#f8f9fa}.btn-outline-light:hover{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:focus+.btn-outline-light,.btn-outline-light:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-check:active+.btn-outline-light,.btn-check:checked+.btn-outline-light,.btn-outline-light.active,.btn-outline-light.dropdown-toggle.show,.btn-outline-light:active{color:#000;background-color:#f8f9fa;border-color:#f8f9fa}.btn-check:active+.btn-outline-light:focus,.btn-check:checked+.btn-outline-light:focus,.btn-outline-light.active:focus,.btn-outline-light.dropdown-toggle.show:focus,.btn-outline-light:active:focus{box-shadow:0 0 0 .25rem rgba(248,249,250,.5)}.btn-outline-light.disabled,.btn-outline-light:disabled{color:#f8f9fa;background-color:transparent}.btn-outline-dark{color:#212529;border-color:#212529}.btn-outline-dark:hover{color:#fff;background-color:#212529;border-color:#212529}.btn-check:focus+.btn-outline-dark,.btn-outline-dark:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-check:active+.btn-outline-dark,.btn-check:checked+.btn-outline-dark,.btn-outline-dark.active,.btn-outline-dark.dropdown-toggle.show,.btn-outline-dark:active{color:#fff;background-color:#212529;border-color:#212529}.btn-check:active+.btn-outline-dark:focus,.btn-check:checked+.btn-outline-dark:focus,.btn-outline-dark.active:focus,.btn-outline-dark.dropdown-toggle.show:focus,.btn-outline-dark:active:focus{box-shadow:0 0 0 .25rem rgba(33,37,41,.5)}.btn-outline-dark.disabled,.btn-outline-dark:disabled{color:#212529;background-color:transparent}.btn-link{font-weight:400;color:#0d6efd;text-decoration:underline}.btn-link:hover{color:#0a58ca}.btn-link.disabled,.btn-link:disabled{color:#6c757d}.btn-group-lg>.btn,.btn-lg{padding:.5rem 1rem;font-size:1.25rem;border-radius:.3rem}.btn-group-sm>.btn,.btn-sm{padding:.25rem .5rem;font-size:.875rem;border-radius:.2rem}.fade{transition:opacity .15s linear}@media (prefers-reduced-motion:reduce){.fade{transition:none}}.fade:not(.show){opacity:0}.collapse:not(.show){display:none}.collapsing{height:0;overflow:hidden;transition:height .35s ease}@media (prefers-reduced-motion:reduce){.collapsing{transition:none}}.collapsing.collapse-horizontal{width:0;height:auto;transition:width .35s ease}@media (prefers-reduced-motion:reduce){.collapsing.collapse-horizontal{transition:none}}.dropdown,.dropend,.dropstart,.dropup{position:relative}.dropdown-toggle{white-space:nowrap}.dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid;border-right:.3em solid transparent;border-bottom:0;border-left:.3em solid transparent}.dropdown-toggle:empty::after{margin-left:0}.dropdown-menu{position:absolute;z-index:1000;display:none;min-width:10rem;padding:.5rem 0;margin:0;font-size:1rem;color:#212529;text-align:left;list-style:none;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.15);border-radius:.25rem}.dropdown-menu[data-bs-popper]{top:100%;left:0;margin-top:.125rem}.dropdown-menu-start{--bs-position:start}.dropdown-menu-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-end{--bs-position:end}.dropdown-menu-end[data-bs-popper]{right:0;left:auto}@media (min-width:576px){.dropdown-menu-sm-start{--bs-position:start}.dropdown-menu-sm-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-sm-end{--bs-position:end}.dropdown-menu-sm-end[data-bs-popper]{right:0;left:auto}}@media (min-width:768px){.dropdown-menu-md-start{--bs-position:start}.dropdown-menu-md-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-md-end{--bs-position:end}.dropdown-menu-md-end[data-bs-popper]{right:0;left:auto}}@media (min-width:992px){.dropdown-menu-lg-start{--bs-position:start}.dropdown-menu-lg-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-lg-end{--bs-position:end}.dropdown-menu-lg-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1200px){.dropdown-menu-xl-start{--bs-position:start}.dropdown-menu-xl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xl-end{--bs-position:end}.dropdown-menu-xl-end[data-bs-popper]{right:0;left:auto}}@media (min-width:1400px){.dropdown-menu-xxl-start{--bs-position:start}.dropdown-menu-xxl-start[data-bs-popper]{right:auto;left:0}.dropdown-menu-xxl-end{--bs-position:end}.dropdown-menu-xxl-end[data-bs-popper]{right:0;left:auto}}.dropup .dropdown-menu[data-bs-popper]{top:auto;bottom:100%;margin-top:0;margin-bottom:.125rem}.dropup .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:0;border-right:.3em solid transparent;border-bottom:.3em solid;border-left:.3em solid transparent}.dropup .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-menu[data-bs-popper]{top:0;right:auto;left:100%;margin-top:0;margin-left:.125rem}.dropend .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:0;border-bottom:.3em solid transparent;border-left:.3em solid}.dropend .dropdown-toggle:empty::after{margin-left:0}.dropend .dropdown-toggle::after{vertical-align:0}.dropstart .dropdown-menu[data-bs-popper]{top:0;right:100%;left:auto;margin-top:0;margin-right:.125rem}.dropstart .dropdown-toggle::after{display:inline-block;margin-left:.255em;vertical-align:.255em;content:""}.dropstart .dropdown-toggle::after{display:none}.dropstart .dropdown-toggle::before{display:inline-block;margin-right:.255em;vertical-align:.255em;content:"";border-top:.3em solid transparent;border-right:.3em solid;border-bottom:.3em solid transparent}.dropstart .dropdown-toggle:empty::after{margin-left:0}.dropstart .dropdown-toggle::before{vertical-align:0}.dropdown-divider{height:0;margin:.5rem 0;overflow:hidden;border-top:1px solid rgba(0,0,0,.15)}.dropdown-item{display:block;width:100%;padding:.25rem 1rem;clear:both;font-weight:400;color:#212529;text-align:inherit;text-decoration:none;white-space:nowrap;background-color:transparent;border:0}.dropdown-item:focus,.dropdown-item:hover{color:#1e2125;background-color:#e9ecef}.dropdown-item.active,.dropdown-item:active{color:#fff;text-decoration:none;background-color:#0d6efd}.dropdown-item.disabled,.dropdown-item:disabled{color:#adb5bd;pointer-events:none;background-color:transparent}.dropdown-menu.show{display:block}.dropdown-header{display:block;padding:.5rem 1rem;margin-bottom:0;font-size:.875rem;color:#6c757d;white-space:nowrap}.dropdown-item-text{display:block;padding:.25rem 1rem;color:#212529}.dropdown-menu-dark{color:#dee2e6;background-color:#343a40;border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item{color:#dee2e6}.dropdown-menu-dark .dropdown-item:focus,.dropdown-menu-dark .dropdown-item:hover{color:#fff;background-color:rgba(255,255,255,.15)}.dropdown-menu-dark .dropdown-item.active,.dropdown-menu-dark .dropdown-item:active{color:#fff;background-color:#0d6efd}.dropdown-menu-dark .dropdown-item.disabled,.dropdown-menu-dark .dropdown-item:disabled{color:#adb5bd}.dropdown-menu-dark .dropdown-divider{border-color:rgba(0,0,0,.15)}.dropdown-menu-dark .dropdown-item-text{color:#dee2e6}.dropdown-menu-dark .dropdown-header{color:#adb5bd}.btn-group,.btn-group-vertical{position:relative;display:inline-flex;vertical-align:middle}.btn-group-vertical>.btn,.btn-group>.btn{position:relative;flex:1 1 auto}.btn-group-vertical>.btn-check:checked+.btn,.btn-group-vertical>.btn-check:focus+.btn,.btn-group-vertical>.btn.active,.btn-group-vertical>.btn:active,.btn-group-vertical>.btn:focus,.btn-group-vertical>.btn:hover,.btn-group>.btn-check:checked+.btn,.btn-group>.btn-check:focus+.btn,.btn-group>.btn.active,.btn-group>.btn:active,.btn-group>.btn:focus,.btn-group>.btn:hover{z-index:1}.btn-toolbar{display:flex;flex-wrap:wrap;justify-content:flex-start}.btn-toolbar .input-group{width:auto}.btn-group>.btn-group:not(:first-child),.btn-group>.btn:not(:first-child){margin-left:-1px}.btn-group>.btn-group:not(:last-child)>.btn,.btn-group>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}.btn-group>.btn-group:not(:first-child)>.btn,.btn-group>.btn:nth-child(n+3),.btn-group>:not(.btn-check)+.btn{border-top-left-radius:0;border-bottom-left-radius:0}.dropdown-toggle-split{padding-right:.5625rem;padding-left:.5625rem}.dropdown-toggle-split::after,.dropend .dropdown-toggle-split::after,.dropup .dropdown-toggle-split::after{margin-left:0}.dropstart .dropdown-toggle-split::before{margin-right:0}.btn-group-sm>.btn+.dropdown-toggle-split,.btn-sm+.dropdown-toggle-split{padding-right:.375rem;padding-left:.375rem}.btn-group-lg>.btn+.dropdown-toggle-split,.btn-lg+.dropdown-toggle-split{padding-right:.75rem;padding-left:.75rem}.btn-group-vertical{flex-direction:column;align-items:flex-start;justify-content:center}.btn-group-vertical>.btn,.btn-group-vertical>.btn-group{width:100%}.btn-group-vertical>.btn-group:not(:first-child),.btn-group-vertical>.btn:not(:first-child){margin-top:-1px}.btn-group-vertical>.btn-group:not(:last-child)>.btn,.btn-group-vertical>.btn:not(:last-child):not(.dropdown-toggle){border-bottom-right-radius:0;border-bottom-left-radius:0}.btn-group-vertical>.btn-group:not(:first-child)>.btn,.btn-group-vertical>.btn~.btn{border-top-left-radius:0;border-top-right-radius:0}.nav{display:flex;flex-wrap:wrap;padding-left:0;margin-bottom:0;list-style:none}.nav-link{display:block;padding:.5rem 1rem;color:#0d6efd;text-decoration:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out}@media (prefers-reduced-motion:reduce){.nav-link{transition:none}}.nav-link:focus,.nav-link:hover{color:#0a58ca}.nav-link.disabled{color:#6c757d;pointer-events:none;cursor:default}.nav-tabs{border-bottom:1px solid #dee2e6}.nav-tabs .nav-link{margin-bottom:-1px;background:0 0;border:1px solid transparent;border-top-left-radius:.25rem;border-top-right-radius:.25rem}.nav-tabs .nav-link:focus,.nav-tabs .nav-link:hover{border-color:#e9ecef #e9ecef #dee2e6;isolation:isolate}.nav-tabs .nav-link.disabled{color:#6c757d;background-color:transparent;border-color:transparent}.nav-tabs .nav-item.show .nav-link,.nav-tabs .nav-link.active{color:#495057;background-color:#fff;border-color:#dee2e6 #dee2e6 #fff}.nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}.nav-pills .nav-link{background:0 0;border:0;border-radius:.25rem}.nav-pills .nav-link.active,.nav-pills .show>.nav-link{color:#fff;background-color:#0d6efd}.nav-fill .nav-item,.nav-fill>.nav-link{flex:1 1 auto;text-align:center}.nav-justified .nav-item,.nav-justified>.nav-link{flex-basis:0;flex-grow:1;text-align:center}.nav-fill .nav-item .nav-link,.nav-justified .nav-item .nav-link{width:100%}.tab-content>.tab-pane{display:none}.tab-content>.active{display:block}.navbar{position:relative;display:flex;flex-wrap:wrap;align-items:center;justify-content:space-between;padding-top:.5rem;padding-bottom:.5rem}.navbar>.container,.navbar>.container-fluid,.navbar>.container-lg,.navbar>.container-md,.navbar>.container-sm,.navbar>.container-xl,.navbar>.container-xxl{display:flex;flex-wrap:inherit;align-items:center;justify-content:space-between}.navbar-brand{padding-top:.3125rem;padding-bottom:.3125rem;margin-right:1rem;font-size:1.25rem;text-decoration:none;white-space:nowrap}.navbar-nav{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;list-style:none}.navbar-nav .nav-link{padding-right:0;padding-left:0}.navbar-nav .dropdown-menu{position:static}.navbar-text{padding-top:.5rem;padding-bottom:.5rem}.navbar-collapse{flex-basis:100%;flex-grow:1;align-items:center}.navbar-toggler{padding:.25rem .75rem;font-size:1.25rem;line-height:1;background-color:transparent;border:1px solid transparent;border-radius:.25rem;transition:box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.navbar-toggler{transition:none}}.navbar-toggler:hover{text-decoration:none}.navbar-toggler:focus{text-decoration:none;outline:0;box-shadow:0 0 0 .25rem}.navbar-toggler-icon{display:inline-block;width:1.5em;height:1.5em;vertical-align:middle;background-repeat:no-repeat;background-position:center;background-size:100%}.navbar-nav-scroll{max-height:var(--bs-scroll-height,75vh);overflow-y:auto}@media (min-width:576px){.navbar-expand-sm{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-sm .navbar-nav{flex-direction:row}.navbar-expand-sm .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-sm .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-sm .navbar-nav-scroll{overflow:visible}.navbar-expand-sm .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-sm .navbar-toggler{display:none}.navbar-expand-sm .offcanvas-header{display:none}.navbar-expand-sm .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-sm .offcanvas-bottom,.navbar-expand-sm .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-sm .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:768px){.navbar-expand-md{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-md .navbar-nav{flex-direction:row}.navbar-expand-md .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-md .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-md .navbar-nav-scroll{overflow:visible}.navbar-expand-md .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-md .navbar-toggler{display:none}.navbar-expand-md .offcanvas-header{display:none}.navbar-expand-md .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-md .offcanvas-bottom,.navbar-expand-md .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-md .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:992px){.navbar-expand-lg{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-lg .navbar-nav{flex-direction:row}.navbar-expand-lg .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-lg .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-lg .navbar-nav-scroll{overflow:visible}.navbar-expand-lg .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-lg .navbar-toggler{display:none}.navbar-expand-lg .offcanvas-header{display:none}.navbar-expand-lg .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-lg .offcanvas-bottom,.navbar-expand-lg .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-lg .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1200px){.navbar-expand-xl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xl .navbar-nav{flex-direction:row}.navbar-expand-xl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xl .navbar-nav-scroll{overflow:visible}.navbar-expand-xl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xl .navbar-toggler{display:none}.navbar-expand-xl .offcanvas-header{display:none}.navbar-expand-xl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xl .offcanvas-bottom,.navbar-expand-xl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}@media (min-width:1400px){.navbar-expand-xxl{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand-xxl .navbar-nav{flex-direction:row}.navbar-expand-xxl .navbar-nav .dropdown-menu{position:absolute}.navbar-expand-xxl .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand-xxl .navbar-nav-scroll{overflow:visible}.navbar-expand-xxl .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand-xxl .navbar-toggler{display:none}.navbar-expand-xxl .offcanvas-header{display:none}.navbar-expand-xxl .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand-xxl .offcanvas-bottom,.navbar-expand-xxl .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand-xxl .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}}.navbar-expand{flex-wrap:nowrap;justify-content:flex-start}.navbar-expand .navbar-nav{flex-direction:row}.navbar-expand .navbar-nav .dropdown-menu{position:absolute}.navbar-expand .navbar-nav .nav-link{padding-right:.5rem;padding-left:.5rem}.navbar-expand .navbar-nav-scroll{overflow:visible}.navbar-expand .navbar-collapse{display:flex!important;flex-basis:auto}.navbar-expand .navbar-toggler{display:none}.navbar-expand .offcanvas-header{display:none}.navbar-expand .offcanvas{position:inherit;bottom:0;z-index:1000;flex-grow:1;visibility:visible!important;background-color:transparent;border-right:0;border-left:0;transition:none;transform:none}.navbar-expand .offcanvas-bottom,.navbar-expand .offcanvas-top{height:auto;border-top:0;border-bottom:0}.navbar-expand .offcanvas-body{display:flex;flex-grow:0;padding:0;overflow-y:visible}.navbar-light .navbar-brand{color:rgba(0,0,0,.9)}.navbar-light .navbar-brand:focus,.navbar-light .navbar-brand:hover{color:rgba(0,0,0,.9)}.navbar-light .navbar-nav .nav-link{color:rgba(0,0,0,.55)}.navbar-light .navbar-nav .nav-link:focus,.navbar-light .navbar-nav .nav-link:hover{color:rgba(0,0,0,.7)}.navbar-light .navbar-nav .nav-link.disabled{color:rgba(0,0,0,.3)}.navbar-light .navbar-nav .nav-link.active,.navbar-light .navbar-nav .show>.nav-link{color:rgba(0,0,0,.9)}.navbar-light .navbar-toggler{color:rgba(0,0,0,.55);border-color:rgba(0,0,0,.1)}.navbar-light .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%280, 0, 0, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-light .navbar-text{color:rgba(0,0,0,.55)}.navbar-light .navbar-text a,.navbar-light .navbar-text a:focus,.navbar-light .navbar-text a:hover{color:rgba(0,0,0,.9)}.navbar-dark .navbar-brand{color:#fff}.navbar-dark .navbar-brand:focus,.navbar-dark .navbar-brand:hover{color:#fff}.navbar-dark .navbar-nav .nav-link{color:rgba(255,255,255,.55)}.navbar-dark .navbar-nav .nav-link:focus,.navbar-dark .navbar-nav .nav-link:hover{color:rgba(255,255,255,.75)}.navbar-dark .navbar-nav .nav-link.disabled{color:rgba(255,255,255,.25)}.navbar-dark .navbar-nav .nav-link.active,.navbar-dark .navbar-nav .show>.nav-link{color:#fff}.navbar-dark .navbar-toggler{color:rgba(255,255,255,.55);border-color:rgba(255,255,255,.1)}.navbar-dark .navbar-toggler-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.55%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e")}.navbar-dark .navbar-text{color:rgba(255,255,255,.55)}.navbar-dark .navbar-text a,.navbar-dark .navbar-text a:focus,.navbar-dark .navbar-text a:hover{color:#fff}.card{position:relative;display:flex;flex-direction:column;min-width:0;word-wrap:break-word;background-color:#fff;background-clip:border-box;border:1px solid rgba(0,0,0,.125);border-radius:.25rem}.card>hr{margin-right:0;margin-left:0}.card>.list-group{border-top:inherit;border-bottom:inherit}.card>.list-group:first-child{border-top-width:0;border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card>.list-group:last-child{border-bottom-width:0;border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card>.card-header+.list-group,.card>.list-group+.card-footer{border-top:0}.card-body{flex:1 1 auto;padding:1rem 1rem}.card-title{margin-bottom:.5rem}.card-subtitle{margin-top:-.25rem;margin-bottom:0}.card-text:last-child{margin-bottom:0}.card-link+.card-link{margin-left:1rem}.card-header{padding:.5rem 1rem;margin-bottom:0;background-color:rgba(0,0,0,.03);border-bottom:1px solid rgba(0,0,0,.125)}.card-header:first-child{border-radius:calc(.25rem - 1px) calc(.25rem - 1px) 0 0}.card-footer{padding:.5rem 1rem;background-color:rgba(0,0,0,.03);border-top:1px solid rgba(0,0,0,.125)}.card-footer:last-child{border-radius:0 0 calc(.25rem - 1px) calc(.25rem - 1px)}.card-header-tabs{margin-right:-.5rem;margin-bottom:-.5rem;margin-left:-.5rem;border-bottom:0}.card-header-pills{margin-right:-.5rem;margin-left:-.5rem}.card-img-overlay{position:absolute;top:0;right:0;bottom:0;left:0;padding:1rem;border-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom,.card-img-top{width:100%}.card-img,.card-img-top{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.card-img,.card-img-bottom{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.card-group>.card{margin-bottom:.75rem}@media (min-width:576px){.card-group{display:flex;flex-flow:row wrap}.card-group>.card{flex:1 0 0%;margin-bottom:0}.card-group>.card+.card{margin-left:0;border-left:0}.card-group>.card:not(:last-child){border-top-right-radius:0;border-bottom-right-radius:0}.card-group>.card:not(:last-child) .card-header,.card-group>.card:not(:last-child) .card-img-top{border-top-right-radius:0}.card-group>.card:not(:last-child) .card-footer,.card-group>.card:not(:last-child) .card-img-bottom{border-bottom-right-radius:0}.card-group>.card:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}.card-group>.card:not(:first-child) .card-header,.card-group>.card:not(:first-child) .card-img-top{border-top-left-radius:0}.card-group>.card:not(:first-child) .card-footer,.card-group>.card:not(:first-child) .card-img-bottom{border-bottom-left-radius:0}}.accordion-button{position:relative;display:flex;align-items:center;width:100%;padding:1rem 1.25rem;font-size:1rem;color:#212529;text-align:left;background-color:#fff;border:0;border-radius:0;overflow-anchor:none;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out,border-radius .15s ease}@media (prefers-reduced-motion:reduce){.accordion-button{transition:none}}.accordion-button:not(.collapsed){color:#0c63e4;background-color:#e7f1ff;box-shadow:inset 0 -1px 0 rgba(0,0,0,.125)}.accordion-button:not(.collapsed)::after{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%230c63e4'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");transform:rotate(-180deg)}.accordion-button::after{flex-shrink:0;width:1.25rem;height:1.25rem;margin-left:auto;content:"";background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");background-repeat:no-repeat;background-size:1.25rem;transition:transform .2s ease-in-out}@media (prefers-reduced-motion:reduce){.accordion-button::after{transition:none}}.accordion-button:hover{z-index:2}.accordion-button:focus{z-index:3;border-color:#86b7fe;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.accordion-header{margin-bottom:0}.accordion-item{background-color:#fff;border:1px solid rgba(0,0,0,.125)}.accordion-item:first-of-type{border-top-left-radius:.25rem;border-top-right-radius:.25rem}.accordion-item:first-of-type .accordion-button{border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.accordion-item:not(:first-of-type){border-top:0}.accordion-item:last-of-type{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-item:last-of-type .accordion-button.collapsed{border-bottom-right-radius:calc(.25rem - 1px);border-bottom-left-radius:calc(.25rem - 1px)}.accordion-item:last-of-type .accordion-collapse{border-bottom-right-radius:.25rem;border-bottom-left-radius:.25rem}.accordion-body{padding:1rem 1.25rem}.accordion-flush .accordion-collapse{border-width:0}.accordion-flush .accordion-item{border-right:0;border-left:0;border-radius:0}.accordion-flush .accordion-item:first-child{border-top:0}.accordion-flush .accordion-item:last-child{border-bottom:0}.accordion-flush .accordion-item .accordion-button{border-radius:0}.breadcrumb{display:flex;flex-wrap:wrap;padding:0 0;margin-bottom:1rem;list-style:none}.breadcrumb-item+.breadcrumb-item{padding-left:.5rem}.breadcrumb-item+.breadcrumb-item::before{float:left;padding-right:.5rem;color:#6c757d;content:var(--bs-breadcrumb-divider, "/")}.breadcrumb-item.active{color:#6c757d}.pagination{display:flex;padding-left:0;list-style:none}.page-link{position:relative;display:block;color:#0d6efd;text-decoration:none;background-color:#fff;border:1px solid #dee2e6;transition:color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out}@media (prefers-reduced-motion:reduce){.page-link{transition:none}}.page-link:hover{z-index:2;color:#0a58ca;background-color:#e9ecef;border-color:#dee2e6}.page-link:focus{z-index:3;color:#0a58ca;background-color:#e9ecef;outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25)}.page-item:not(:first-child) .page-link{margin-left:-1px}.page-item.active .page-link{z-index:3;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.page-item.disabled .page-link{color:#6c757d;pointer-events:none;background-color:#fff;border-color:#dee2e6}.page-link{padding:.375rem .75rem}.page-item:first-child .page-link{border-top-left-radius:.25rem;border-bottom-left-radius:.25rem}.page-item:last-child .page-link{border-top-right-radius:.25rem;border-bottom-right-radius:.25rem}.pagination-lg .page-link{padding:.75rem 1.5rem;font-size:1.25rem}.pagination-lg .page-item:first-child .page-link{border-top-left-radius:.3rem;border-bottom-left-radius:.3rem}.pagination-lg .page-item:last-child .page-link{border-top-right-radius:.3rem;border-bottom-right-radius:.3rem}.pagination-sm .page-link{padding:.25rem .5rem;font-size:.875rem}.pagination-sm .page-item:first-child .page-link{border-top-left-radius:.2rem;border-bottom-left-radius:.2rem}.pagination-sm .page-item:last-child .page-link{border-top-right-radius:.2rem;border-bottom-right-radius:.2rem}.badge{display:inline-block;padding:.35em .65em;font-size:.75em;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25rem}.badge:empty{display:none}.btn .badge{position:relative;top:-1px}.alert{position:relative;padding:1rem 1rem;margin-bottom:1rem;border:1px solid transparent;border-radius:.25rem}.alert-heading{color:inherit}.alert-link{font-weight:700}.alert-dismissible{padding-right:3rem}.alert-dismissible .btn-close{position:absolute;top:0;right:0;z-index:2;padding:1.25rem 1rem}.alert-primary{color:#084298;background-color:#cfe2ff;border-color:#b6d4fe}.alert-primary .alert-link{color:#06357a}.alert-secondary{color:#41464b;background-color:#e2e3e5;border-color:#d3d6d8}.alert-secondary .alert-link{color:#34383c}.alert-success{color:#0f5132;background-color:#d1e7dd;border-color:#badbcc}.alert-success .alert-link{color:#0c4128}.alert-info{color:#055160;background-color:#cff4fc;border-color:#b6effb}.alert-info .alert-link{color:#04414d}.alert-warning{color:#664d03;background-color:#fff3cd;border-color:#ffecb5}.alert-warning .alert-link{color:#523e02}.alert-danger{color:#842029;background-color:#f8d7da;border-color:#f5c2c7}.alert-danger .alert-link{color:#6a1a21}.alert-light{color:#636464;background-color:#fefefe;border-color:#fdfdfe}.alert-light .alert-link{color:#4f5050}.alert-dark{color:#141619;background-color:#d3d3d4;border-color:#bcbebf}.alert-dark .alert-link{color:#101214}@-webkit-keyframes progress-bar-stripes{0%{background-position-x:1rem}}@keyframes progress-bar-stripes{0%{background-position-x:1rem}}.progress{display:flex;height:1rem;overflow:hidden;font-size:.75rem;background-color:#e9ecef;border-radius:.25rem}.progress-bar{display:flex;flex-direction:column;justify-content:center;overflow:hidden;color:#fff;text-align:center;white-space:nowrap;background-color:#0d6efd;transition:width .6s ease}@media (prefers-reduced-motion:reduce){.progress-bar{transition:none}}.progress-bar-striped{background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-size:1rem 1rem}.progress-bar-animated{-webkit-animation:1s linear infinite progress-bar-stripes;animation:1s linear infinite progress-bar-stripes}@media (prefers-reduced-motion:reduce){.progress-bar-animated{-webkit-animation:none;animation:none}}.list-group{display:flex;flex-direction:column;padding-left:0;margin-bottom:0;border-radius:.25rem}.list-group-numbered{list-style-type:none;counter-reset:section}.list-group-numbered>li::before{content:counters(section, ".") ". ";counter-increment:section}.list-group-item-action{width:100%;color:#495057;text-align:inherit}.list-group-item-action:focus,.list-group-item-action:hover{z-index:1;color:#495057;text-decoration:none;background-color:#f8f9fa}.list-group-item-action:active{color:#212529;background-color:#e9ecef}.list-group-item{position:relative;display:block;padding:.5rem 1rem;color:#212529;text-decoration:none;background-color:#fff;border:1px solid rgba(0,0,0,.125)}.list-group-item:first-child{border-top-left-radius:inherit;border-top-right-radius:inherit}.list-group-item:last-child{border-bottom-right-radius:inherit;border-bottom-left-radius:inherit}.list-group-item.disabled,.list-group-item:disabled{color:#6c757d;pointer-events:none;background-color:#fff}.list-group-item.active{z-index:2;color:#fff;background-color:#0d6efd;border-color:#0d6efd}.list-group-item+.list-group-item{border-top-width:0}.list-group-item+.list-group-item.active{margin-top:-1px;border-top-width:1px}.list-group-horizontal{flex-direction:row}.list-group-horizontal>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal>.list-group-item.active{margin-top:0}.list-group-horizontal>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}@media (min-width:576px){.list-group-horizontal-sm{flex-direction:row}.list-group-horizontal-sm>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-sm>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-sm>.list-group-item.active{margin-top:0}.list-group-horizontal-sm>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-sm>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:768px){.list-group-horizontal-md{flex-direction:row}.list-group-horizontal-md>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-md>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-md>.list-group-item.active{margin-top:0}.list-group-horizontal-md>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-md>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:992px){.list-group-horizontal-lg{flex-direction:row}.list-group-horizontal-lg>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-lg>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-lg>.list-group-item.active{margin-top:0}.list-group-horizontal-lg>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-lg>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1200px){.list-group-horizontal-xl{flex-direction:row}.list-group-horizontal-xl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xl>.list-group-item.active{margin-top:0}.list-group-horizontal-xl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}@media (min-width:1400px){.list-group-horizontal-xxl{flex-direction:row}.list-group-horizontal-xxl>.list-group-item:first-child{border-bottom-left-radius:.25rem;border-top-right-radius:0}.list-group-horizontal-xxl>.list-group-item:last-child{border-top-right-radius:.25rem;border-bottom-left-radius:0}.list-group-horizontal-xxl>.list-group-item.active{margin-top:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item{border-top-width:1px;border-left-width:0}.list-group-horizontal-xxl>.list-group-item+.list-group-item.active{margin-left:-1px;border-left-width:1px}}.list-group-flush{border-radius:0}.list-group-flush>.list-group-item{border-width:0 0 1px}.list-group-flush>.list-group-item:last-child{border-bottom-width:0}.list-group-item-primary{color:#084298;background-color:#cfe2ff}.list-group-item-primary.list-group-item-action:focus,.list-group-item-primary.list-group-item-action:hover{color:#084298;background-color:#bacbe6}.list-group-item-primary.list-group-item-action.active{color:#fff;background-color:#084298;border-color:#084298}.list-group-item-secondary{color:#41464b;background-color:#e2e3e5}.list-group-item-secondary.list-group-item-action:focus,.list-group-item-secondary.list-group-item-action:hover{color:#41464b;background-color:#cbccce}.list-group-item-secondary.list-group-item-action.active{color:#fff;background-color:#41464b;border-color:#41464b}.list-group-item-success{color:#0f5132;background-color:#d1e7dd}.list-group-item-success.list-group-item-action:focus,.list-group-item-success.list-group-item-action:hover{color:#0f5132;background-color:#bcd0c7}.list-group-item-success.list-group-item-action.active{color:#fff;background-color:#0f5132;border-color:#0f5132}.list-group-item-info{color:#055160;background-color:#cff4fc}.list-group-item-info.list-group-item-action:focus,.list-group-item-info.list-group-item-action:hover{color:#055160;background-color:#badce3}.list-group-item-info.list-group-item-action.active{color:#fff;background-color:#055160;border-color:#055160}.list-group-item-warning{color:#664d03;background-color:#fff3cd}.list-group-item-warning.list-group-item-action:focus,.list-group-item-warning.list-group-item-action:hover{color:#664d03;background-color:#e6dbb9}.list-group-item-warning.list-group-item-action.active{color:#fff;background-color:#664d03;border-color:#664d03}.list-group-item-danger{color:#842029;background-color:#f8d7da}.list-group-item-danger.list-group-item-action:focus,.list-group-item-danger.list-group-item-action:hover{color:#842029;background-color:#dfc2c4}.list-group-item-danger.list-group-item-action.active{color:#fff;background-color:#842029;border-color:#842029}.list-group-item-light{color:#636464;background-color:#fefefe}.list-group-item-light.list-group-item-action:focus,.list-group-item-light.list-group-item-action:hover{color:#636464;background-color:#e5e5e5}.list-group-item-light.list-group-item-action.active{color:#fff;background-color:#636464;border-color:#636464}.list-group-item-dark{color:#141619;background-color:#d3d3d4}.list-group-item-dark.list-group-item-action:focus,.list-group-item-dark.list-group-item-action:hover{color:#141619;background-color:#bebebf}.list-group-item-dark.list-group-item-action.active{color:#fff;background-color:#141619;border-color:#141619}.btn-close{box-sizing:content-box;width:1em;height:1em;padding:.25em .25em;color:#000;background:transparent url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000'%3e%3cpath d='M.293.293a1 1 0 011.414 0L8 6.586 14.293.293a1 1 0 111.414 1.414L9.414 8l6.293 6.293a1 1 0 01-1.414 1.414L8 9.414l-6.293 6.293a1 1 0 01-1.414-1.414L6.586 8 .293 1.707a1 1 0 010-1.414z'/%3e%3c/svg%3e") center/1em auto no-repeat;border:0;border-radius:.25rem;opacity:.5}.btn-close:hover{color:#000;text-decoration:none;opacity:.75}.btn-close:focus{outline:0;box-shadow:0 0 0 .25rem rgba(13,110,253,.25);opacity:1}.btn-close.disabled,.btn-close:disabled{pointer-events:none;-webkit-user-select:none;-moz-user-select:none;user-select:none;opacity:.25}.btn-close-white{filter:invert(1) grayscale(100%) brightness(200%)}.toast{width:350px;max-width:100%;font-size:.875rem;pointer-events:auto;background-color:rgba(255,255,255,.85);background-clip:padding-box;border:1px solid rgba(0,0,0,.1);box-shadow:0 .5rem 1rem rgba(0,0,0,.15);border-radius:.25rem}.toast.showing{opacity:0}.toast:not(.show){display:none}.toast-container{width:-webkit-max-content;width:-moz-max-content;width:max-content;max-width:100%;pointer-events:none}.toast-container>:not(:last-child){margin-bottom:.75rem}.toast-header{display:flex;align-items:center;padding:.5rem .75rem;color:#6c757d;background-color:rgba(255,255,255,.85);background-clip:padding-box;border-bottom:1px solid rgba(0,0,0,.05);border-top-left-radius:calc(.25rem - 1px);border-top-right-radius:calc(.25rem - 1px)}.toast-header .btn-close{margin-right:-.375rem;margin-left:.75rem}.toast-body{padding:.75rem;word-wrap:break-word}.modal{position:fixed;top:0;left:0;z-index:1055;display:none;width:100%;height:100%;overflow-x:hidden;overflow-y:auto;outline:0}.modal-dialog{position:relative;width:auto;margin:.5rem;pointer-events:none}.modal.fade .modal-dialog{transition:transform .3s ease-out;transform:translate(0,-50px)}@media (prefers-reduced-motion:reduce){.modal.fade .modal-dialog{transition:none}}.modal.show .modal-dialog{transform:none}.modal.modal-static .modal-dialog{transform:scale(1.02)}.modal-dialog-scrollable{height:calc(100% - 1rem)}.modal-dialog-scrollable .modal-content{max-height:100%;overflow:hidden}.modal-dialog-scrollable .modal-body{overflow-y:auto}.modal-dialog-centered{display:flex;align-items:center;min-height:calc(100% - 1rem)}.modal-content{position:relative;display:flex;flex-direction:column;width:100%;pointer-events:auto;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem;outline:0}.modal-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100vw;height:100vh;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop.show{opacity:.5}.modal-header{display:flex;flex-shrink:0;align-items:center;justify-content:space-between;padding:1rem 1rem;border-bottom:1px solid #dee2e6;border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.modal-header .btn-close{padding:.5rem .5rem;margin:-.5rem -.5rem -.5rem auto}.modal-title{margin-bottom:0;line-height:1.5}.modal-body{position:relative;flex:1 1 auto;padding:1rem}.modal-footer{display:flex;flex-wrap:wrap;flex-shrink:0;align-items:center;justify-content:flex-end;padding:.75rem;border-top:1px solid #dee2e6;border-bottom-right-radius:calc(.3rem - 1px);border-bottom-left-radius:calc(.3rem - 1px)}.modal-footer>*{margin:.25rem}@media (min-width:576px){.modal-dialog{max-width:500px;margin:1.75rem auto}.modal-dialog-scrollable{height:calc(100% - 3.5rem)}.modal-dialog-centered{min-height:calc(100% - 3.5rem)}.modal-sm{max-width:300px}}@media (min-width:992px){.modal-lg,.modal-xl{max-width:800px}}@media (min-width:1200px){.modal-xl{max-width:1140px}}.modal-fullscreen{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen .modal-header{border-radius:0}.modal-fullscreen .modal-body{overflow-y:auto}.modal-fullscreen .modal-footer{border-radius:0}@media (max-width:575.98px){.modal-fullscreen-sm-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-sm-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-sm-down .modal-header{border-radius:0}.modal-fullscreen-sm-down .modal-body{overflow-y:auto}.modal-fullscreen-sm-down .modal-footer{border-radius:0}}@media (max-width:767.98px){.modal-fullscreen-md-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-md-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-md-down .modal-header{border-radius:0}.modal-fullscreen-md-down .modal-body{overflow-y:auto}.modal-fullscreen-md-down .modal-footer{border-radius:0}}@media (max-width:991.98px){.modal-fullscreen-lg-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-lg-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-lg-down .modal-header{border-radius:0}.modal-fullscreen-lg-down .modal-body{overflow-y:auto}.modal-fullscreen-lg-down .modal-footer{border-radius:0}}@media (max-width:1199.98px){.modal-fullscreen-xl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xl-down .modal-header{border-radius:0}.modal-fullscreen-xl-down .modal-body{overflow-y:auto}.modal-fullscreen-xl-down .modal-footer{border-radius:0}}@media (max-width:1399.98px){.modal-fullscreen-xxl-down{width:100vw;max-width:none;height:100%;margin:0}.modal-fullscreen-xxl-down .modal-content{height:100%;border:0;border-radius:0}.modal-fullscreen-xxl-down .modal-header{border-radius:0}.modal-fullscreen-xxl-down .modal-body{overflow-y:auto}.modal-fullscreen-xxl-down .modal-footer{border-radius:0}}.tooltip{position:absolute;z-index:1080;display:block;margin:0;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;opacity:0}.tooltip.show{opacity:.9}.tooltip .tooltip-arrow{position:absolute;display:block;width:.8rem;height:.4rem}.tooltip .tooltip-arrow::before{position:absolute;content:"";border-color:transparent;border-style:solid}.bs-tooltip-auto[data-popper-placement^=top],.bs-tooltip-top{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow,.bs-tooltip-top .tooltip-arrow{bottom:0}.bs-tooltip-auto[data-popper-placement^=top] .tooltip-arrow::before,.bs-tooltip-top .tooltip-arrow::before{top:-1px;border-width:.4rem .4rem 0;border-top-color:#000}.bs-tooltip-auto[data-popper-placement^=right],.bs-tooltip-end{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow,.bs-tooltip-end .tooltip-arrow{left:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=right] .tooltip-arrow::before,.bs-tooltip-end .tooltip-arrow::before{right:-1px;border-width:.4rem .4rem .4rem 0;border-right-color:#000}.bs-tooltip-auto[data-popper-placement^=bottom],.bs-tooltip-bottom{padding:.4rem 0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow,.bs-tooltip-bottom .tooltip-arrow{top:0}.bs-tooltip-auto[data-popper-placement^=bottom] .tooltip-arrow::before,.bs-tooltip-bottom .tooltip-arrow::before{bottom:-1px;border-width:0 .4rem .4rem;border-bottom-color:#000}.bs-tooltip-auto[data-popper-placement^=left],.bs-tooltip-start{padding:0 .4rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow,.bs-tooltip-start .tooltip-arrow{right:0;width:.4rem;height:.8rem}.bs-tooltip-auto[data-popper-placement^=left] .tooltip-arrow::before,.bs-tooltip-start .tooltip-arrow::before{left:-1px;border-width:.4rem 0 .4rem .4rem;border-left-color:#000}.tooltip-inner{max-width:200px;padding:.25rem .5rem;color:#fff;text-align:center;background-color:#000;border-radius:.25rem}.popover{position:absolute;top:0;left:0;z-index:1070;display:block;max-width:276px;font-family:var(--bs-font-sans-serif);font-style:normal;font-weight:400;line-height:1.5;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;white-space:normal;line-break:auto;font-size:.875rem;word-wrap:break-word;background-color:#fff;background-clip:padding-box;border:1px solid rgba(0,0,0,.2);border-radius:.3rem}.popover .popover-arrow{position:absolute;display:block;width:1rem;height:.5rem}.popover .popover-arrow::after,.popover .popover-arrow::before{position:absolute;display:block;content:"";border-color:transparent;border-style:solid}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow,.bs-popover-top>.popover-arrow{bottom:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::before,.bs-popover-top>.popover-arrow::before{bottom:0;border-width:.5rem .5rem 0;border-top-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=top]>.popover-arrow::after,.bs-popover-top>.popover-arrow::after{bottom:1px;border-width:.5rem .5rem 0;border-top-color:#fff}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow,.bs-popover-end>.popover-arrow{left:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::before,.bs-popover-end>.popover-arrow::before{left:0;border-width:.5rem .5rem .5rem 0;border-right-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=right]>.popover-arrow::after,.bs-popover-end>.popover-arrow::after{left:1px;border-width:.5rem .5rem .5rem 0;border-right-color:#fff}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow,.bs-popover-bottom>.popover-arrow{top:calc(-.5rem - 1px)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::before,.bs-popover-bottom>.popover-arrow::before{top:0;border-width:0 .5rem .5rem .5rem;border-bottom-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=bottom]>.popover-arrow::after,.bs-popover-bottom>.popover-arrow::after{top:1px;border-width:0 .5rem .5rem .5rem;border-bottom-color:#fff}.bs-popover-auto[data-popper-placement^=bottom] .popover-header::before,.bs-popover-bottom .popover-header::before{position:absolute;top:0;left:50%;display:block;width:1rem;margin-left:-.5rem;content:"";border-bottom:1px solid #f0f0f0}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow,.bs-popover-start>.popover-arrow{right:calc(-.5rem - 1px);width:.5rem;height:1rem}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::before,.bs-popover-start>.popover-arrow::before{right:0;border-width:.5rem 0 .5rem .5rem;border-left-color:rgba(0,0,0,.25)}.bs-popover-auto[data-popper-placement^=left]>.popover-arrow::after,.bs-popover-start>.popover-arrow::after{right:1px;border-width:.5rem 0 .5rem .5rem;border-left-color:#fff}.popover-header{padding:.5rem 1rem;margin-bottom:0;font-size:1rem;background-color:#f0f0f0;border-bottom:1px solid rgba(0,0,0,.2);border-top-left-radius:calc(.3rem - 1px);border-top-right-radius:calc(.3rem - 1px)}.popover-header:empty{display:none}.popover-body{padding:1rem 1rem;color:#212529}.carousel{position:relative}.carousel.pointer-event{touch-action:pan-y}.carousel-inner{position:relative;width:100%;overflow:hidden}.carousel-inner::after{display:block;clear:both;content:""}.carousel-item{position:relative;display:none;float:left;width:100%;margin-right:-100%;-webkit-backface-visibility:hidden;backface-visibility:hidden;transition:transform .6s ease-in-out}@media (prefers-reduced-motion:reduce){.carousel-item{transition:none}}.carousel-item-next,.carousel-item-prev,.carousel-item.active{display:block}.active.carousel-item-end,.carousel-item-next:not(.carousel-item-start){transform:translateX(100%)}.active.carousel-item-start,.carousel-item-prev:not(.carousel-item-end){transform:translateX(-100%)}.carousel-fade .carousel-item{opacity:0;transition-property:opacity;transform:none}.carousel-fade .carousel-item-next.carousel-item-start,.carousel-fade .carousel-item-prev.carousel-item-end,.carousel-fade .carousel-item.active{z-index:1;opacity:1}.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{z-index:0;opacity:0;transition:opacity 0s .6s}@media (prefers-reduced-motion:reduce){.carousel-fade .active.carousel-item-end,.carousel-fade .active.carousel-item-start{transition:none}}.carousel-control-next,.carousel-control-prev{position:absolute;top:0;bottom:0;z-index:1;display:flex;align-items:center;justify-content:center;width:15%;padding:0;color:#fff;text-align:center;background:0 0;border:0;opacity:.5;transition:opacity .15s ease}@media (prefers-reduced-motion:reduce){.carousel-control-next,.carousel-control-prev{transition:none}}.carousel-control-next:focus,.carousel-control-next:hover,.carousel-control-prev:focus,.carousel-control-prev:hover{color:#fff;text-decoration:none;outline:0;opacity:.9}.carousel-control-prev{left:0}.carousel-control-next{right:0}.carousel-control-next-icon,.carousel-control-prev-icon{display:inline-block;width:2rem;height:2rem;background-repeat:no-repeat;background-position:50%;background-size:100% 100%}.carousel-control-prev-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M11.354 1.646a.5.5 0 0 1 0 .708L5.707 8l5.647 5.646a.5.5 0 0 1-.708.708l-6-6a.5.5 0 0 1 0-.708l6-6a.5.5 0 0 1 .708 0z'/%3e%3c/svg%3e")}.carousel-control-next-icon{background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%3e%3cpath d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e")}.carousel-indicators{position:absolute;right:0;bottom:0;left:0;z-index:2;display:flex;justify-content:center;padding:0;margin-right:15%;margin-bottom:1rem;margin-left:15%;list-style:none}.carousel-indicators [data-bs-target]{box-sizing:content-box;flex:0 1 auto;width:30px;height:3px;padding:0;margin-right:3px;margin-left:3px;text-indent:-999px;cursor:pointer;background-color:#fff;background-clip:padding-box;border:0;border-top:10px solid transparent;border-bottom:10px solid transparent;opacity:.5;transition:opacity .6s ease}@media (prefers-reduced-motion:reduce){.carousel-indicators [data-bs-target]{transition:none}}.carousel-indicators .active{opacity:1}.carousel-caption{position:absolute;right:15%;bottom:1.25rem;left:15%;padding-top:1.25rem;padding-bottom:1.25rem;color:#fff;text-align:center}.carousel-dark .carousel-control-next-icon,.carousel-dark .carousel-control-prev-icon{filter:invert(1) grayscale(100)}.carousel-dark .carousel-indicators [data-bs-target]{background-color:#000}.carousel-dark .carousel-caption{color:#000}@-webkit-keyframes spinner-border{to{transform:rotate(360deg)}}@keyframes spinner-border{to{transform:rotate(360deg)}}.spinner-border{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;border:.25em solid currentColor;border-right-color:transparent;border-radius:50%;-webkit-animation:.75s linear infinite spinner-border;animation:.75s linear infinite spinner-border}.spinner-border-sm{width:1rem;height:1rem;border-width:.2em}@-webkit-keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}@keyframes spinner-grow{0%{transform:scale(0)}50%{opacity:1;transform:none}}.spinner-grow{display:inline-block;width:2rem;height:2rem;vertical-align:-.125em;background-color:currentColor;border-radius:50%;opacity:0;-webkit-animation:.75s linear infinite spinner-grow;animation:.75s linear infinite spinner-grow}.spinner-grow-sm{width:1rem;height:1rem}@media (prefers-reduced-motion:reduce){.spinner-border,.spinner-grow{-webkit-animation-duration:1.5s;animation-duration:1.5s}}.offcanvas{position:fixed;bottom:0;z-index:1045;display:flex;flex-direction:column;max-width:100%;visibility:hidden;background-color:#fff;background-clip:padding-box;outline:0;transition:transform .3s ease-in-out}@media (prefers-reduced-motion:reduce){.offcanvas{transition:none}}.offcanvas-backdrop{position:fixed;top:0;left:0;z-index:1040;width:100vw;height:100vh;background-color:#000}.offcanvas-backdrop.fade{opacity:0}.offcanvas-backdrop.show{opacity:.5}.offcanvas-header{display:flex;align-items:center;justify-content:space-between;padding:1rem 1rem}.offcanvas-header .btn-close{padding:.5rem .5rem;margin-top:-.5rem;margin-right:-.5rem;margin-bottom:-.5rem}.offcanvas-title{margin-bottom:0;line-height:1.5}.offcanvas-body{flex-grow:1;padding:1rem 1rem;overflow-y:auto}.offcanvas-start{top:0;left:0;width:400px;border-right:1px solid rgba(0,0,0,.2);transform:translateX(-100%)}.offcanvas-end{top:0;right:0;width:400px;border-left:1px solid rgba(0,0,0,.2);transform:translateX(100%)}.offcanvas-top{top:0;right:0;left:0;height:30vh;max-height:100%;border-bottom:1px solid rgba(0,0,0,.2);transform:translateY(-100%)}.offcanvas-bottom{right:0;left:0;height:30vh;max-height:100%;border-top:1px solid rgba(0,0,0,.2);transform:translateY(100%)}.offcanvas.show{transform:none}.placeholder{display:inline-block;min-height:1em;vertical-align:middle;cursor:wait;background-color:currentColor;opacity:.5}.placeholder.btn::before{display:inline-block;content:""}.placeholder-xs{min-height:.6em}.placeholder-sm{min-height:.8em}.placeholder-lg{min-height:1.2em}.placeholder-glow .placeholder{-webkit-animation:placeholder-glow 2s ease-in-out infinite;animation:placeholder-glow 2s ease-in-out infinite}@-webkit-keyframes placeholder-glow{50%{opacity:.2}}@keyframes placeholder-glow{50%{opacity:.2}}.placeholder-wave{-webkit-mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);mask-image:linear-gradient(130deg,#000 55%,rgba(0,0,0,0.8) 75%,#000 95%);-webkit-mask-size:200% 100%;mask-size:200% 100%;-webkit-animation:placeholder-wave 2s linear infinite;animation:placeholder-wave 2s linear infinite}@-webkit-keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}@keyframes placeholder-wave{100%{-webkit-mask-position:-200% 0%;mask-position:-200% 0%}}.clearfix::after{display:block;clear:both;content:""}.link-primary{color:#0d6efd}.link-primary:focus,.link-primary:hover{color:#0a58ca}.link-secondary{color:#6c757d}.link-secondary:focus,.link-secondary:hover{color:#565e64}.link-success{color:#198754}.link-success:focus,.link-success:hover{color:#146c43}.link-info{color:#0dcaf0}.link-info:focus,.link-info:hover{color:#3dd5f3}.link-warning{color:#ffc107}.link-warning:focus,.link-warning:hover{color:#ffcd39}.link-danger{color:#dc3545}.link-danger:focus,.link-danger:hover{color:#b02a37}.link-light{color:#f8f9fa}.link-light:focus,.link-light:hover{color:#f9fafb}.link-dark{color:#212529}.link-dark:focus,.link-dark:hover{color:#1a1e21}.ratio{position:relative;width:100%}.ratio::before{display:block;padding-top:var(--bs-aspect-ratio);content:""}.ratio>*{position:absolute;top:0;left:0;width:100%;height:100%}.ratio-1x1{--bs-aspect-ratio:100%}.ratio-4x3{--bs-aspect-ratio:75%}.ratio-16x9{--bs-aspect-ratio:56.25%}.ratio-21x9{--bs-aspect-ratio:42.8571428571%}.fixed-top{position:fixed;top:0;right:0;left:0;z-index:1030}.fixed-bottom{position:fixed;right:0;bottom:0;left:0;z-index:1030}.sticky-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}@media (min-width:576px){.sticky-sm-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:768px){.sticky-md-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:992px){.sticky-lg-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1200px){.sticky-xl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}@media (min-width:1400px){.sticky-xxl-top{position:-webkit-sticky;position:sticky;top:0;z-index:1020}}.hstack{display:flex;flex-direction:row;align-items:center;align-self:stretch}.vstack{display:flex;flex:1 1 auto;flex-direction:column;align-self:stretch}.visually-hidden,.visually-hidden-focusable:not(:focus):not(:focus-within){position:absolute!important;width:1px!important;height:1px!important;padding:0!important;margin:-1px!important;overflow:hidden!important;clip:rect(0,0,0,0)!important;white-space:nowrap!important;border:0!important}.stretched-link::after{position:absolute;top:0;right:0;bottom:0;left:0;z-index:1;content:""}.text-truncate{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}.vr{display:inline-block;align-self:stretch;width:1px;min-height:1em;background-color:currentColor;opacity:.25}.align-baseline{vertical-align:baseline!important}.align-top{vertical-align:top!important}.align-middle{vertical-align:middle!important}.align-bottom{vertical-align:bottom!important}.align-text-bottom{vertical-align:text-bottom!important}.align-text-top{vertical-align:text-top!important}.float-start{float:left!important}.float-end{float:right!important}.float-none{float:none!important}.opacity-0{opacity:0!important}.opacity-25{opacity:.25!important}.opacity-50{opacity:.5!important}.opacity-75{opacity:.75!important}.opacity-100{opacity:1!important}.overflow-auto{overflow:auto!important}.overflow-hidden{overflow:hidden!important}.overflow-visible{overflow:visible!important}.overflow-scroll{overflow:scroll!important}.d-inline{display:inline!important}.d-inline-block{display:inline-block!important}.d-block{display:block!important}.d-grid{display:grid!important}.d-table{display:table!important}.d-table-row{display:table-row!important}.d-table-cell{display:table-cell!important}.d-flex{display:flex!important}.d-inline-flex{display:inline-flex!important}.d-none{display:none!important}.shadow{box-shadow:0 .5rem 1rem rgba(0,0,0,.15)!important}.shadow-sm{box-shadow:0 .125rem .25rem rgba(0,0,0,.075)!important}.shadow-lg{box-shadow:0 1rem 3rem rgba(0,0,0,.175)!important}.shadow-none{box-shadow:none!important}.position-static{position:static!important}.position-relative{position:relative!important}.position-absolute{position:absolute!important}.position-fixed{position:fixed!important}.position-sticky{position:-webkit-sticky!important;position:sticky!important}.top-0{top:0!important}.top-50{top:50%!important}.top-100{top:100%!important}.bottom-0{bottom:0!important}.bottom-50{bottom:50%!important}.bottom-100{bottom:100%!important}.start-0{left:0!important}.start-50{left:50%!important}.start-100{left:100%!important}.end-0{right:0!important}.end-50{right:50%!important}.end-100{right:100%!important}.translate-middle{transform:translate(-50%,-50%)!important}.translate-middle-x{transform:translateX(-50%)!important}.translate-middle-y{transform:translateY(-50%)!important}.border{border:1px solid #dee2e6!important}.border-0{border:0!important}.border-top{border-top:1px solid #dee2e6!important}.border-top-0{border-top:0!important}.border-end{border-right:1px solid #dee2e6!important}.border-end-0{border-right:0!important}.border-bottom{border-bottom:1px solid #dee2e6!important}.border-bottom-0{border-bottom:0!important}.border-start{border-left:1px solid #dee2e6!important}.border-start-0{border-left:0!important}.border-primary{border-color:#0d6efd!important}.border-secondary{border-color:#6c757d!important}.border-success{border-color:#198754!important}.border-info{border-color:#0dcaf0!important}.border-warning{border-color:#ffc107!important}.border-danger{border-color:#dc3545!important}.border-light{border-color:#f8f9fa!important}.border-dark{border-color:#212529!important}.border-white{border-color:#fff!important}.border-1{border-width:1px!important}.border-2{border-width:2px!important}.border-3{border-width:3px!important}.border-4{border-width:4px!important}.border-5{border-width:5px!important}.w-25{width:25%!important}.w-50{width:50%!important}.w-75{width:75%!important}.w-100{width:100%!important}.w-auto{width:auto!important}.mw-100{max-width:100%!important}.vw-100{width:100vw!important}.min-vw-100{min-width:100vw!important}.h-25{height:25%!important}.h-50{height:50%!important}.h-75{height:75%!important}.h-100{height:100%!important}.h-auto{height:auto!important}.mh-100{max-height:100%!important}.vh-100{height:100vh!important}.min-vh-100{min-height:100vh!important}.flex-fill{flex:1 1 auto!important}.flex-row{flex-direction:row!important}.flex-column{flex-direction:column!important}.flex-row-reverse{flex-direction:row-reverse!important}.flex-column-reverse{flex-direction:column-reverse!important}.flex-grow-0{flex-grow:0!important}.flex-grow-1{flex-grow:1!important}.flex-shrink-0{flex-shrink:0!important}.flex-shrink-1{flex-shrink:1!important}.flex-wrap{flex-wrap:wrap!important}.flex-nowrap{flex-wrap:nowrap!important}.flex-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-0{gap:0!important}.gap-1{gap:.25rem!important}.gap-2{gap:.5rem!important}.gap-3{gap:1rem!important}.gap-4{gap:1.5rem!important}.gap-5{gap:3rem!important}.justify-content-start{justify-content:flex-start!important}.justify-content-end{justify-content:flex-end!important}.justify-content-center{justify-content:center!important}.justify-content-between{justify-content:space-between!important}.justify-content-around{justify-content:space-around!important}.justify-content-evenly{justify-content:space-evenly!important}.align-items-start{align-items:flex-start!important}.align-items-end{align-items:flex-end!important}.align-items-center{align-items:center!important}.align-items-baseline{align-items:baseline!important}.align-items-stretch{align-items:stretch!important}.align-content-start{align-content:flex-start!important}.align-content-end{align-content:flex-end!important}.align-content-center{align-content:center!important}.align-content-between{align-content:space-between!important}.align-content-around{align-content:space-around!important}.align-content-stretch{align-content:stretch!important}.align-self-auto{align-self:auto!important}.align-self-start{align-self:flex-start!important}.align-self-end{align-self:flex-end!important}.align-self-center{align-self:center!important}.align-self-baseline{align-self:baseline!important}.align-self-stretch{align-self:stretch!important}.order-first{order:-1!important}.order-0{order:0!important}.order-1{order:1!important}.order-2{order:2!important}.order-3{order:3!important}.order-4{order:4!important}.order-5{order:5!important}.order-last{order:6!important}.m-0{margin:0!important}.m-1{margin:.25rem!important}.m-2{margin:.5rem!important}.m-3{margin:1rem!important}.m-4{margin:1.5rem!important}.m-5{margin:3rem!important}.m-auto{margin:auto!important}.mx-0{margin-right:0!important;margin-left:0!important}.mx-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-3{margin-right:1rem!important;margin-left:1rem!important}.mx-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-5{margin-right:3rem!important;margin-left:3rem!important}.mx-auto{margin-right:auto!important;margin-left:auto!important}.my-0{margin-top:0!important;margin-bottom:0!important}.my-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-0{margin-top:0!important}.mt-1{margin-top:.25rem!important}.mt-2{margin-top:.5rem!important}.mt-3{margin-top:1rem!important}.mt-4{margin-top:1.5rem!important}.mt-5{margin-top:3rem!important}.mt-auto{margin-top:auto!important}.me-0{margin-right:0!important}.me-1{margin-right:.25rem!important}.me-2{margin-right:.5rem!important}.me-3{margin-right:1rem!important}.me-4{margin-right:1.5rem!important}.me-5{margin-right:3rem!important}.me-auto{margin-right:auto!important}.mb-0{margin-bottom:0!important}.mb-1{margin-bottom:.25rem!important}.mb-2{margin-bottom:.5rem!important}.mb-3{margin-bottom:1rem!important}.mb-4{margin-bottom:1.5rem!important}.mb-5{margin-bottom:3rem!important}.mb-auto{margin-bottom:auto!important}.ms-0{margin-left:0!important}.ms-1{margin-left:.25rem!important}.ms-2{margin-left:.5rem!important}.ms-3{margin-left:1rem!important}.ms-4{margin-left:1.5rem!important}.ms-5{margin-left:3rem!important}.ms-auto{margin-left:auto!important}.p-0{padding:0!important}.p-1{padding:.25rem!important}.p-2{padding:.5rem!important}.p-3{padding:1rem!important}.p-4{padding:1.5rem!important}.p-5{padding:3rem!important}.px-0{padding-right:0!important;padding-left:0!important}.px-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-3{padding-right:1rem!important;padding-left:1rem!important}.px-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-5{padding-right:3rem!important;padding-left:3rem!important}.py-0{padding-top:0!important;padding-bottom:0!important}.py-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-0{padding-top:0!important}.pt-1{padding-top:.25rem!important}.pt-2{padding-top:.5rem!important}.pt-3{padding-top:1rem!important}.pt-4{padding-top:1.5rem!important}.pt-5{padding-top:3rem!important}.pe-0{padding-right:0!important}.pe-1{padding-right:.25rem!important}.pe-2{padding-right:.5rem!important}.pe-3{padding-right:1rem!important}.pe-4{padding-right:1.5rem!important}.pe-5{padding-right:3rem!important}.pb-0{padding-bottom:0!important}.pb-1{padding-bottom:.25rem!important}.pb-2{padding-bottom:.5rem!important}.pb-3{padding-bottom:1rem!important}.pb-4{padding-bottom:1.5rem!important}.pb-5{padding-bottom:3rem!important}.ps-0{padding-left:0!important}.ps-1{padding-left:.25rem!important}.ps-2{padding-left:.5rem!important}.ps-3{padding-left:1rem!important}.ps-4{padding-left:1.5rem!important}.ps-5{padding-left:3rem!important}.font-monospace{font-family:var(--bs-font-monospace)!important}.fs-1{font-size:calc(1.375rem + 1.5vw)!important}.fs-2{font-size:calc(1.325rem + .9vw)!important}.fs-3{font-size:calc(1.3rem + .6vw)!important}.fs-4{font-size:calc(1.275rem + .3vw)!important}.fs-5{font-size:1.25rem!important}.fs-6{font-size:1rem!important}.fst-italic{font-style:italic!important}.fst-normal{font-style:normal!important}.fw-light{font-weight:300!important}.fw-lighter{font-weight:lighter!important}.fw-normal{font-weight:400!important}.fw-bold{font-weight:700!important}.fw-bolder{font-weight:bolder!important}.lh-1{line-height:1!important}.lh-sm{line-height:1.25!important}.lh-base{line-height:1.5!important}.lh-lg{line-height:2!important}.text-start{text-align:left!important}.text-end{text-align:right!important}.text-center{text-align:center!important}.text-decoration-none{text-decoration:none!important}.text-decoration-underline{text-decoration:underline!important}.text-decoration-line-through{text-decoration:line-through!important}.text-lowercase{text-transform:lowercase!important}.text-uppercase{text-transform:uppercase!important}.text-capitalize{text-transform:capitalize!important}.text-wrap{white-space:normal!important}.text-nowrap{white-space:nowrap!important}.text-break{word-wrap:break-word!important;word-break:break-word!important}.text-primary{--bs-text-opacity:1;color:rgba(var(--bs-primary-rgb),var(--bs-text-opacity))!important}.text-secondary{--bs-text-opacity:1;color:rgba(var(--bs-secondary-rgb),var(--bs-text-opacity))!important}.text-success{--bs-text-opacity:1;color:rgba(var(--bs-success-rgb),var(--bs-text-opacity))!important}.text-info{--bs-text-opacity:1;color:rgba(var(--bs-info-rgb),var(--bs-text-opacity))!important}.text-warning{--bs-text-opacity:1;color:rgba(var(--bs-warning-rgb),var(--bs-text-opacity))!important}.text-danger{--bs-text-opacity:1;color:rgba(var(--bs-danger-rgb),var(--bs-text-opacity))!important}.text-light{--bs-text-opacity:1;color:rgba(var(--bs-light-rgb),var(--bs-text-opacity))!important}.text-dark{--bs-text-opacity:1;color:rgba(var(--bs-dark-rgb),var(--bs-text-opacity))!important}.text-black{--bs-text-opacity:1;color:rgba(var(--bs-black-rgb),var(--bs-text-opacity))!important}.text-white{--bs-text-opacity:1;color:rgba(var(--bs-white-rgb),var(--bs-text-opacity))!important}.text-body{--bs-text-opacity:1;color:rgba(var(--bs-body-color-rgb),var(--bs-text-opacity))!important}.text-muted{--bs-text-opacity:1;color:#6c757d!important}.text-black-50{--bs-text-opacity:1;color:rgba(0,0,0,.5)!important}.text-white-50{--bs-text-opacity:1;color:rgba(255,255,255,.5)!important}.text-reset{--bs-text-opacity:1;color:inherit!important}.text-opacity-25{--bs-text-opacity:0.25}.text-opacity-50{--bs-text-opacity:0.5}.text-opacity-75{--bs-text-opacity:0.75}.text-opacity-100{--bs-text-opacity:1}.bg-primary{--bs-bg-opacity:1;background-color:rgba(var(--bs-primary-rgb),var(--bs-bg-opacity))!important}.bg-secondary{--bs-bg-opacity:1;background-color:rgba(var(--bs-secondary-rgb),var(--bs-bg-opacity))!important}.bg-success{--bs-bg-opacity:1;background-color:rgba(var(--bs-success-rgb),var(--bs-bg-opacity))!important}.bg-info{--bs-bg-opacity:1;background-color:rgba(var(--bs-info-rgb),var(--bs-bg-opacity))!important}.bg-warning{--bs-bg-opacity:1;background-color:rgba(var(--bs-warning-rgb),var(--bs-bg-opacity))!important}.bg-danger{--bs-bg-opacity:1;background-color:rgba(var(--bs-danger-rgb),var(--bs-bg-opacity))!important}.bg-light{--bs-bg-opacity:1;background-color:rgba(var(--bs-light-rgb),var(--bs-bg-opacity))!important}.bg-dark{--bs-bg-opacity:1;background-color:rgba(var(--bs-dark-rgb),var(--bs-bg-opacity))!important}.bg-black{--bs-bg-opacity:1;background-color:rgba(var(--bs-black-rgb),var(--bs-bg-opacity))!important}.bg-white{--bs-bg-opacity:1;background-color:rgba(var(--bs-white-rgb),var(--bs-bg-opacity))!important}.bg-body{--bs-bg-opacity:1;background-color:rgba(var(--bs-body-bg-rgb),var(--bs-bg-opacity))!important}.bg-transparent{--bs-bg-opacity:1;background-color:transparent!important}.bg-opacity-10{--bs-bg-opacity:0.1}.bg-opacity-25{--bs-bg-opacity:0.25}.bg-opacity-50{--bs-bg-opacity:0.5}.bg-opacity-75{--bs-bg-opacity:0.75}.bg-opacity-100{--bs-bg-opacity:1}.bg-gradient{background-image:var(--bs-gradient)!important}.user-select-all{-webkit-user-select:all!important;-moz-user-select:all!important;user-select:all!important}.user-select-auto{-webkit-user-select:auto!important;-moz-user-select:auto!important;user-select:auto!important}.user-select-none{-webkit-user-select:none!important;-moz-user-select:none!important;user-select:none!important}.pe-none{pointer-events:none!important}.pe-auto{pointer-events:auto!important}.rounded{border-radius:.25rem!important}.rounded-0{border-radius:0!important}.rounded-1{border-radius:.2rem!important}.rounded-2{border-radius:.25rem!important}.rounded-3{border-radius:.3rem!important}.rounded-circle{border-radius:50%!important}.rounded-pill{border-radius:50rem!important}.rounded-top{border-top-left-radius:.25rem!important;border-top-right-radius:.25rem!important}.rounded-end{border-top-right-radius:.25rem!important;border-bottom-right-radius:.25rem!important}.rounded-bottom{border-bottom-right-radius:.25rem!important;border-bottom-left-radius:.25rem!important}.rounded-start{border-bottom-left-radius:.25rem!important;border-top-left-radius:.25rem!important}.visible{visibility:visible!important}.invisible{visibility:hidden!important}@media (min-width:576px){.float-sm-start{float:left!important}.float-sm-end{float:right!important}.float-sm-none{float:none!important}.d-sm-inline{display:inline!important}.d-sm-inline-block{display:inline-block!important}.d-sm-block{display:block!important}.d-sm-grid{display:grid!important}.d-sm-table{display:table!important}.d-sm-table-row{display:table-row!important}.d-sm-table-cell{display:table-cell!important}.d-sm-flex{display:flex!important}.d-sm-inline-flex{display:inline-flex!important}.d-sm-none{display:none!important}.flex-sm-fill{flex:1 1 auto!important}.flex-sm-row{flex-direction:row!important}.flex-sm-column{flex-direction:column!important}.flex-sm-row-reverse{flex-direction:row-reverse!important}.flex-sm-column-reverse{flex-direction:column-reverse!important}.flex-sm-grow-0{flex-grow:0!important}.flex-sm-grow-1{flex-grow:1!important}.flex-sm-shrink-0{flex-shrink:0!important}.flex-sm-shrink-1{flex-shrink:1!important}.flex-sm-wrap{flex-wrap:wrap!important}.flex-sm-nowrap{flex-wrap:nowrap!important}.flex-sm-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-sm-0{gap:0!important}.gap-sm-1{gap:.25rem!important}.gap-sm-2{gap:.5rem!important}.gap-sm-3{gap:1rem!important}.gap-sm-4{gap:1.5rem!important}.gap-sm-5{gap:3rem!important}.justify-content-sm-start{justify-content:flex-start!important}.justify-content-sm-end{justify-content:flex-end!important}.justify-content-sm-center{justify-content:center!important}.justify-content-sm-between{justify-content:space-between!important}.justify-content-sm-around{justify-content:space-around!important}.justify-content-sm-evenly{justify-content:space-evenly!important}.align-items-sm-start{align-items:flex-start!important}.align-items-sm-end{align-items:flex-end!important}.align-items-sm-center{align-items:center!important}.align-items-sm-baseline{align-items:baseline!important}.align-items-sm-stretch{align-items:stretch!important}.align-content-sm-start{align-content:flex-start!important}.align-content-sm-end{align-content:flex-end!important}.align-content-sm-center{align-content:center!important}.align-content-sm-between{align-content:space-between!important}.align-content-sm-around{align-content:space-around!important}.align-content-sm-stretch{align-content:stretch!important}.align-self-sm-auto{align-self:auto!important}.align-self-sm-start{align-self:flex-start!important}.align-self-sm-end{align-self:flex-end!important}.align-self-sm-center{align-self:center!important}.align-self-sm-baseline{align-self:baseline!important}.align-self-sm-stretch{align-self:stretch!important}.order-sm-first{order:-1!important}.order-sm-0{order:0!important}.order-sm-1{order:1!important}.order-sm-2{order:2!important}.order-sm-3{order:3!important}.order-sm-4{order:4!important}.order-sm-5{order:5!important}.order-sm-last{order:6!important}.m-sm-0{margin:0!important}.m-sm-1{margin:.25rem!important}.m-sm-2{margin:.5rem!important}.m-sm-3{margin:1rem!important}.m-sm-4{margin:1.5rem!important}.m-sm-5{margin:3rem!important}.m-sm-auto{margin:auto!important}.mx-sm-0{margin-right:0!important;margin-left:0!important}.mx-sm-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-sm-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-sm-3{margin-right:1rem!important;margin-left:1rem!important}.mx-sm-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-sm-5{margin-right:3rem!important;margin-left:3rem!important}.mx-sm-auto{margin-right:auto!important;margin-left:auto!important}.my-sm-0{margin-top:0!important;margin-bottom:0!important}.my-sm-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-sm-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-sm-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-sm-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-sm-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-sm-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-sm-0{margin-top:0!important}.mt-sm-1{margin-top:.25rem!important}.mt-sm-2{margin-top:.5rem!important}.mt-sm-3{margin-top:1rem!important}.mt-sm-4{margin-top:1.5rem!important}.mt-sm-5{margin-top:3rem!important}.mt-sm-auto{margin-top:auto!important}.me-sm-0{margin-right:0!important}.me-sm-1{margin-right:.25rem!important}.me-sm-2{margin-right:.5rem!important}.me-sm-3{margin-right:1rem!important}.me-sm-4{margin-right:1.5rem!important}.me-sm-5{margin-right:3rem!important}.me-sm-auto{margin-right:auto!important}.mb-sm-0{margin-bottom:0!important}.mb-sm-1{margin-bottom:.25rem!important}.mb-sm-2{margin-bottom:.5rem!important}.mb-sm-3{margin-bottom:1rem!important}.mb-sm-4{margin-bottom:1.5rem!important}.mb-sm-5{margin-bottom:3rem!important}.mb-sm-auto{margin-bottom:auto!important}.ms-sm-0{margin-left:0!important}.ms-sm-1{margin-left:.25rem!important}.ms-sm-2{margin-left:.5rem!important}.ms-sm-3{margin-left:1rem!important}.ms-sm-4{margin-left:1.5rem!important}.ms-sm-5{margin-left:3rem!important}.ms-sm-auto{margin-left:auto!important}.p-sm-0{padding:0!important}.p-sm-1{padding:.25rem!important}.p-sm-2{padding:.5rem!important}.p-sm-3{padding:1rem!important}.p-sm-4{padding:1.5rem!important}.p-sm-5{padding:3rem!important}.px-sm-0{padding-right:0!important;padding-left:0!important}.px-sm-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-sm-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-sm-3{padding-right:1rem!important;padding-left:1rem!important}.px-sm-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-sm-5{padding-right:3rem!important;padding-left:3rem!important}.py-sm-0{padding-top:0!important;padding-bottom:0!important}.py-sm-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-sm-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-sm-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-sm-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-sm-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-sm-0{padding-top:0!important}.pt-sm-1{padding-top:.25rem!important}.pt-sm-2{padding-top:.5rem!important}.pt-sm-3{padding-top:1rem!important}.pt-sm-4{padding-top:1.5rem!important}.pt-sm-5{padding-top:3rem!important}.pe-sm-0{padding-right:0!important}.pe-sm-1{padding-right:.25rem!important}.pe-sm-2{padding-right:.5rem!important}.pe-sm-3{padding-right:1rem!important}.pe-sm-4{padding-right:1.5rem!important}.pe-sm-5{padding-right:3rem!important}.pb-sm-0{padding-bottom:0!important}.pb-sm-1{padding-bottom:.25rem!important}.pb-sm-2{padding-bottom:.5rem!important}.pb-sm-3{padding-bottom:1rem!important}.pb-sm-4{padding-bottom:1.5rem!important}.pb-sm-5{padding-bottom:3rem!important}.ps-sm-0{padding-left:0!important}.ps-sm-1{padding-left:.25rem!important}.ps-sm-2{padding-left:.5rem!important}.ps-sm-3{padding-left:1rem!important}.ps-sm-4{padding-left:1.5rem!important}.ps-sm-5{padding-left:3rem!important}.text-sm-start{text-align:left!important}.text-sm-end{text-align:right!important}.text-sm-center{text-align:center!important}}@media (min-width:768px){.float-md-start{float:left!important}.float-md-end{float:right!important}.float-md-none{float:none!important}.d-md-inline{display:inline!important}.d-md-inline-block{display:inline-block!important}.d-md-block{display:block!important}.d-md-grid{display:grid!important}.d-md-table{display:table!important}.d-md-table-row{display:table-row!important}.d-md-table-cell{display:table-cell!important}.d-md-flex{display:flex!important}.d-md-inline-flex{display:inline-flex!important}.d-md-none{display:none!important}.flex-md-fill{flex:1 1 auto!important}.flex-md-row{flex-direction:row!important}.flex-md-column{flex-direction:column!important}.flex-md-row-reverse{flex-direction:row-reverse!important}.flex-md-column-reverse{flex-direction:column-reverse!important}.flex-md-grow-0{flex-grow:0!important}.flex-md-grow-1{flex-grow:1!important}.flex-md-shrink-0{flex-shrink:0!important}.flex-md-shrink-1{flex-shrink:1!important}.flex-md-wrap{flex-wrap:wrap!important}.flex-md-nowrap{flex-wrap:nowrap!important}.flex-md-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-md-0{gap:0!important}.gap-md-1{gap:.25rem!important}.gap-md-2{gap:.5rem!important}.gap-md-3{gap:1rem!important}.gap-md-4{gap:1.5rem!important}.gap-md-5{gap:3rem!important}.justify-content-md-start{justify-content:flex-start!important}.justify-content-md-end{justify-content:flex-end!important}.justify-content-md-center{justify-content:center!important}.justify-content-md-between{justify-content:space-between!important}.justify-content-md-around{justify-content:space-around!important}.justify-content-md-evenly{justify-content:space-evenly!important}.align-items-md-start{align-items:flex-start!important}.align-items-md-end{align-items:flex-end!important}.align-items-md-center{align-items:center!important}.align-items-md-baseline{align-items:baseline!important}.align-items-md-stretch{align-items:stretch!important}.align-content-md-start{align-content:flex-start!important}.align-content-md-end{align-content:flex-end!important}.align-content-md-center{align-content:center!important}.align-content-md-between{align-content:space-between!important}.align-content-md-around{align-content:space-around!important}.align-content-md-stretch{align-content:stretch!important}.align-self-md-auto{align-self:auto!important}.align-self-md-start{align-self:flex-start!important}.align-self-md-end{align-self:flex-end!important}.align-self-md-center{align-self:center!important}.align-self-md-baseline{align-self:baseline!important}.align-self-md-stretch{align-self:stretch!important}.order-md-first{order:-1!important}.order-md-0{order:0!important}.order-md-1{order:1!important}.order-md-2{order:2!important}.order-md-3{order:3!important}.order-md-4{order:4!important}.order-md-5{order:5!important}.order-md-last{order:6!important}.m-md-0{margin:0!important}.m-md-1{margin:.25rem!important}.m-md-2{margin:.5rem!important}.m-md-3{margin:1rem!important}.m-md-4{margin:1.5rem!important}.m-md-5{margin:3rem!important}.m-md-auto{margin:auto!important}.mx-md-0{margin-right:0!important;margin-left:0!important}.mx-md-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-md-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-md-3{margin-right:1rem!important;margin-left:1rem!important}.mx-md-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-md-5{margin-right:3rem!important;margin-left:3rem!important}.mx-md-auto{margin-right:auto!important;margin-left:auto!important}.my-md-0{margin-top:0!important;margin-bottom:0!important}.my-md-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-md-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-md-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-md-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-md-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-md-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-md-0{margin-top:0!important}.mt-md-1{margin-top:.25rem!important}.mt-md-2{margin-top:.5rem!important}.mt-md-3{margin-top:1rem!important}.mt-md-4{margin-top:1.5rem!important}.mt-md-5{margin-top:3rem!important}.mt-md-auto{margin-top:auto!important}.me-md-0{margin-right:0!important}.me-md-1{margin-right:.25rem!important}.me-md-2{margin-right:.5rem!important}.me-md-3{margin-right:1rem!important}.me-md-4{margin-right:1.5rem!important}.me-md-5{margin-right:3rem!important}.me-md-auto{margin-right:auto!important}.mb-md-0{margin-bottom:0!important}.mb-md-1{margin-bottom:.25rem!important}.mb-md-2{margin-bottom:.5rem!important}.mb-md-3{margin-bottom:1rem!important}.mb-md-4{margin-bottom:1.5rem!important}.mb-md-5{margin-bottom:3rem!important}.mb-md-auto{margin-bottom:auto!important}.ms-md-0{margin-left:0!important}.ms-md-1{margin-left:.25rem!important}.ms-md-2{margin-left:.5rem!important}.ms-md-3{margin-left:1rem!important}.ms-md-4{margin-left:1.5rem!important}.ms-md-5{margin-left:3rem!important}.ms-md-auto{margin-left:auto!important}.p-md-0{padding:0!important}.p-md-1{padding:.25rem!important}.p-md-2{padding:.5rem!important}.p-md-3{padding:1rem!important}.p-md-4{padding:1.5rem!important}.p-md-5{padding:3rem!important}.px-md-0{padding-right:0!important;padding-left:0!important}.px-md-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-md-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-md-3{padding-right:1rem!important;padding-left:1rem!important}.px-md-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-md-5{padding-right:3rem!important;padding-left:3rem!important}.py-md-0{padding-top:0!important;padding-bottom:0!important}.py-md-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-md-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-md-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-md-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-md-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-md-0{padding-top:0!important}.pt-md-1{padding-top:.25rem!important}.pt-md-2{padding-top:.5rem!important}.pt-md-3{padding-top:1rem!important}.pt-md-4{padding-top:1.5rem!important}.pt-md-5{padding-top:3rem!important}.pe-md-0{padding-right:0!important}.pe-md-1{padding-right:.25rem!important}.pe-md-2{padding-right:.5rem!important}.pe-md-3{padding-right:1rem!important}.pe-md-4{padding-right:1.5rem!important}.pe-md-5{padding-right:3rem!important}.pb-md-0{padding-bottom:0!important}.pb-md-1{padding-bottom:.25rem!important}.pb-md-2{padding-bottom:.5rem!important}.pb-md-3{padding-bottom:1rem!important}.pb-md-4{padding-bottom:1.5rem!important}.pb-md-5{padding-bottom:3rem!important}.ps-md-0{padding-left:0!important}.ps-md-1{padding-left:.25rem!important}.ps-md-2{padding-left:.5rem!important}.ps-md-3{padding-left:1rem!important}.ps-md-4{padding-left:1.5rem!important}.ps-md-5{padding-left:3rem!important}.text-md-start{text-align:left!important}.text-md-end{text-align:right!important}.text-md-center{text-align:center!important}}@media (min-width:992px){.float-lg-start{float:left!important}.float-lg-end{float:right!important}.float-lg-none{float:none!important}.d-lg-inline{display:inline!important}.d-lg-inline-block{display:inline-block!important}.d-lg-block{display:block!important}.d-lg-grid{display:grid!important}.d-lg-table{display:table!important}.d-lg-table-row{display:table-row!important}.d-lg-table-cell{display:table-cell!important}.d-lg-flex{display:flex!important}.d-lg-inline-flex{display:inline-flex!important}.d-lg-none{display:none!important}.flex-lg-fill{flex:1 1 auto!important}.flex-lg-row{flex-direction:row!important}.flex-lg-column{flex-direction:column!important}.flex-lg-row-reverse{flex-direction:row-reverse!important}.flex-lg-column-reverse{flex-direction:column-reverse!important}.flex-lg-grow-0{flex-grow:0!important}.flex-lg-grow-1{flex-grow:1!important}.flex-lg-shrink-0{flex-shrink:0!important}.flex-lg-shrink-1{flex-shrink:1!important}.flex-lg-wrap{flex-wrap:wrap!important}.flex-lg-nowrap{flex-wrap:nowrap!important}.flex-lg-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-lg-0{gap:0!important}.gap-lg-1{gap:.25rem!important}.gap-lg-2{gap:.5rem!important}.gap-lg-3{gap:1rem!important}.gap-lg-4{gap:1.5rem!important}.gap-lg-5{gap:3rem!important}.justify-content-lg-start{justify-content:flex-start!important}.justify-content-lg-end{justify-content:flex-end!important}.justify-content-lg-center{justify-content:center!important}.justify-content-lg-between{justify-content:space-between!important}.justify-content-lg-around{justify-content:space-around!important}.justify-content-lg-evenly{justify-content:space-evenly!important}.align-items-lg-start{align-items:flex-start!important}.align-items-lg-end{align-items:flex-end!important}.align-items-lg-center{align-items:center!important}.align-items-lg-baseline{align-items:baseline!important}.align-items-lg-stretch{align-items:stretch!important}.align-content-lg-start{align-content:flex-start!important}.align-content-lg-end{align-content:flex-end!important}.align-content-lg-center{align-content:center!important}.align-content-lg-between{align-content:space-between!important}.align-content-lg-around{align-content:space-around!important}.align-content-lg-stretch{align-content:stretch!important}.align-self-lg-auto{align-self:auto!important}.align-self-lg-start{align-self:flex-start!important}.align-self-lg-end{align-self:flex-end!important}.align-self-lg-center{align-self:center!important}.align-self-lg-baseline{align-self:baseline!important}.align-self-lg-stretch{align-self:stretch!important}.order-lg-first{order:-1!important}.order-lg-0{order:0!important}.order-lg-1{order:1!important}.order-lg-2{order:2!important}.order-lg-3{order:3!important}.order-lg-4{order:4!important}.order-lg-5{order:5!important}.order-lg-last{order:6!important}.m-lg-0{margin:0!important}.m-lg-1{margin:.25rem!important}.m-lg-2{margin:.5rem!important}.m-lg-3{margin:1rem!important}.m-lg-4{margin:1.5rem!important}.m-lg-5{margin:3rem!important}.m-lg-auto{margin:auto!important}.mx-lg-0{margin-right:0!important;margin-left:0!important}.mx-lg-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-lg-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-lg-3{margin-right:1rem!important;margin-left:1rem!important}.mx-lg-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-lg-5{margin-right:3rem!important;margin-left:3rem!important}.mx-lg-auto{margin-right:auto!important;margin-left:auto!important}.my-lg-0{margin-top:0!important;margin-bottom:0!important}.my-lg-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-lg-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-lg-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-lg-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-lg-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-lg-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-lg-0{margin-top:0!important}.mt-lg-1{margin-top:.25rem!important}.mt-lg-2{margin-top:.5rem!important}.mt-lg-3{margin-top:1rem!important}.mt-lg-4{margin-top:1.5rem!important}.mt-lg-5{margin-top:3rem!important}.mt-lg-auto{margin-top:auto!important}.me-lg-0{margin-right:0!important}.me-lg-1{margin-right:.25rem!important}.me-lg-2{margin-right:.5rem!important}.me-lg-3{margin-right:1rem!important}.me-lg-4{margin-right:1.5rem!important}.me-lg-5{margin-right:3rem!important}.me-lg-auto{margin-right:auto!important}.mb-lg-0{margin-bottom:0!important}.mb-lg-1{margin-bottom:.25rem!important}.mb-lg-2{margin-bottom:.5rem!important}.mb-lg-3{margin-bottom:1rem!important}.mb-lg-4{margin-bottom:1.5rem!important}.mb-lg-5{margin-bottom:3rem!important}.mb-lg-auto{margin-bottom:auto!important}.ms-lg-0{margin-left:0!important}.ms-lg-1{margin-left:.25rem!important}.ms-lg-2{margin-left:.5rem!important}.ms-lg-3{margin-left:1rem!important}.ms-lg-4{margin-left:1.5rem!important}.ms-lg-5{margin-left:3rem!important}.ms-lg-auto{margin-left:auto!important}.p-lg-0{padding:0!important}.p-lg-1{padding:.25rem!important}.p-lg-2{padding:.5rem!important}.p-lg-3{padding:1rem!important}.p-lg-4{padding:1.5rem!important}.p-lg-5{padding:3rem!important}.px-lg-0{padding-right:0!important;padding-left:0!important}.px-lg-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-lg-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-lg-3{padding-right:1rem!important;padding-left:1rem!important}.px-lg-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-lg-5{padding-right:3rem!important;padding-left:3rem!important}.py-lg-0{padding-top:0!important;padding-bottom:0!important}.py-lg-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-lg-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-lg-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-lg-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-lg-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-lg-0{padding-top:0!important}.pt-lg-1{padding-top:.25rem!important}.pt-lg-2{padding-top:.5rem!important}.pt-lg-3{padding-top:1rem!important}.pt-lg-4{padding-top:1.5rem!important}.pt-lg-5{padding-top:3rem!important}.pe-lg-0{padding-right:0!important}.pe-lg-1{padding-right:.25rem!important}.pe-lg-2{padding-right:.5rem!important}.pe-lg-3{padding-right:1rem!important}.pe-lg-4{padding-right:1.5rem!important}.pe-lg-5{padding-right:3rem!important}.pb-lg-0{padding-bottom:0!important}.pb-lg-1{padding-bottom:.25rem!important}.pb-lg-2{padding-bottom:.5rem!important}.pb-lg-3{padding-bottom:1rem!important}.pb-lg-4{padding-bottom:1.5rem!important}.pb-lg-5{padding-bottom:3rem!important}.ps-lg-0{padding-left:0!important}.ps-lg-1{padding-left:.25rem!important}.ps-lg-2{padding-left:.5rem!important}.ps-lg-3{padding-left:1rem!important}.ps-lg-4{padding-left:1.5rem!important}.ps-lg-5{padding-left:3rem!important}.text-lg-start{text-align:left!important}.text-lg-end{text-align:right!important}.text-lg-center{text-align:center!important}}@media (min-width:1200px){.float-xl-start{float:left!important}.float-xl-end{float:right!important}.float-xl-none{float:none!important}.d-xl-inline{display:inline!important}.d-xl-inline-block{display:inline-block!important}.d-xl-block{display:block!important}.d-xl-grid{display:grid!important}.d-xl-table{display:table!important}.d-xl-table-row{display:table-row!important}.d-xl-table-cell{display:table-cell!important}.d-xl-flex{display:flex!important}.d-xl-inline-flex{display:inline-flex!important}.d-xl-none{display:none!important}.flex-xl-fill{flex:1 1 auto!important}.flex-xl-row{flex-direction:row!important}.flex-xl-column{flex-direction:column!important}.flex-xl-row-reverse{flex-direction:row-reverse!important}.flex-xl-column-reverse{flex-direction:column-reverse!important}.flex-xl-grow-0{flex-grow:0!important}.flex-xl-grow-1{flex-grow:1!important}.flex-xl-shrink-0{flex-shrink:0!important}.flex-xl-shrink-1{flex-shrink:1!important}.flex-xl-wrap{flex-wrap:wrap!important}.flex-xl-nowrap{flex-wrap:nowrap!important}.flex-xl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xl-0{gap:0!important}.gap-xl-1{gap:.25rem!important}.gap-xl-2{gap:.5rem!important}.gap-xl-3{gap:1rem!important}.gap-xl-4{gap:1.5rem!important}.gap-xl-5{gap:3rem!important}.justify-content-xl-start{justify-content:flex-start!important}.justify-content-xl-end{justify-content:flex-end!important}.justify-content-xl-center{justify-content:center!important}.justify-content-xl-between{justify-content:space-between!important}.justify-content-xl-around{justify-content:space-around!important}.justify-content-xl-evenly{justify-content:space-evenly!important}.align-items-xl-start{align-items:flex-start!important}.align-items-xl-end{align-items:flex-end!important}.align-items-xl-center{align-items:center!important}.align-items-xl-baseline{align-items:baseline!important}.align-items-xl-stretch{align-items:stretch!important}.align-content-xl-start{align-content:flex-start!important}.align-content-xl-end{align-content:flex-end!important}.align-content-xl-center{align-content:center!important}.align-content-xl-between{align-content:space-between!important}.align-content-xl-around{align-content:space-around!important}.align-content-xl-stretch{align-content:stretch!important}.align-self-xl-auto{align-self:auto!important}.align-self-xl-start{align-self:flex-start!important}.align-self-xl-end{align-self:flex-end!important}.align-self-xl-center{align-self:center!important}.align-self-xl-baseline{align-self:baseline!important}.align-self-xl-stretch{align-self:stretch!important}.order-xl-first{order:-1!important}.order-xl-0{order:0!important}.order-xl-1{order:1!important}.order-xl-2{order:2!important}.order-xl-3{order:3!important}.order-xl-4{order:4!important}.order-xl-5{order:5!important}.order-xl-last{order:6!important}.m-xl-0{margin:0!important}.m-xl-1{margin:.25rem!important}.m-xl-2{margin:.5rem!important}.m-xl-3{margin:1rem!important}.m-xl-4{margin:1.5rem!important}.m-xl-5{margin:3rem!important}.m-xl-auto{margin:auto!important}.mx-xl-0{margin-right:0!important;margin-left:0!important}.mx-xl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xl-auto{margin-right:auto!important;margin-left:auto!important}.my-xl-0{margin-top:0!important;margin-bottom:0!important}.my-xl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xl-0{margin-top:0!important}.mt-xl-1{margin-top:.25rem!important}.mt-xl-2{margin-top:.5rem!important}.mt-xl-3{margin-top:1rem!important}.mt-xl-4{margin-top:1.5rem!important}.mt-xl-5{margin-top:3rem!important}.mt-xl-auto{margin-top:auto!important}.me-xl-0{margin-right:0!important}.me-xl-1{margin-right:.25rem!important}.me-xl-2{margin-right:.5rem!important}.me-xl-3{margin-right:1rem!important}.me-xl-4{margin-right:1.5rem!important}.me-xl-5{margin-right:3rem!important}.me-xl-auto{margin-right:auto!important}.mb-xl-0{margin-bottom:0!important}.mb-xl-1{margin-bottom:.25rem!important}.mb-xl-2{margin-bottom:.5rem!important}.mb-xl-3{margin-bottom:1rem!important}.mb-xl-4{margin-bottom:1.5rem!important}.mb-xl-5{margin-bottom:3rem!important}.mb-xl-auto{margin-bottom:auto!important}.ms-xl-0{margin-left:0!important}.ms-xl-1{margin-left:.25rem!important}.ms-xl-2{margin-left:.5rem!important}.ms-xl-3{margin-left:1rem!important}.ms-xl-4{margin-left:1.5rem!important}.ms-xl-5{margin-left:3rem!important}.ms-xl-auto{margin-left:auto!important}.p-xl-0{padding:0!important}.p-xl-1{padding:.25rem!important}.p-xl-2{padding:.5rem!important}.p-xl-3{padding:1rem!important}.p-xl-4{padding:1.5rem!important}.p-xl-5{padding:3rem!important}.px-xl-0{padding-right:0!important;padding-left:0!important}.px-xl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xl-0{padding-top:0!important;padding-bottom:0!important}.py-xl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xl-0{padding-top:0!important}.pt-xl-1{padding-top:.25rem!important}.pt-xl-2{padding-top:.5rem!important}.pt-xl-3{padding-top:1rem!important}.pt-xl-4{padding-top:1.5rem!important}.pt-xl-5{padding-top:3rem!important}.pe-xl-0{padding-right:0!important}.pe-xl-1{padding-right:.25rem!important}.pe-xl-2{padding-right:.5rem!important}.pe-xl-3{padding-right:1rem!important}.pe-xl-4{padding-right:1.5rem!important}.pe-xl-5{padding-right:3rem!important}.pb-xl-0{padding-bottom:0!important}.pb-xl-1{padding-bottom:.25rem!important}.pb-xl-2{padding-bottom:.5rem!important}.pb-xl-3{padding-bottom:1rem!important}.pb-xl-4{padding-bottom:1.5rem!important}.pb-xl-5{padding-bottom:3rem!important}.ps-xl-0{padding-left:0!important}.ps-xl-1{padding-left:.25rem!important}.ps-xl-2{padding-left:.5rem!important}.ps-xl-3{padding-left:1rem!important}.ps-xl-4{padding-left:1.5rem!important}.ps-xl-5{padding-left:3rem!important}.text-xl-start{text-align:left!important}.text-xl-end{text-align:right!important}.text-xl-center{text-align:center!important}}@media (min-width:1400px){.float-xxl-start{float:left!important}.float-xxl-end{float:right!important}.float-xxl-none{float:none!important}.d-xxl-inline{display:inline!important}.d-xxl-inline-block{display:inline-block!important}.d-xxl-block{display:block!important}.d-xxl-grid{display:grid!important}.d-xxl-table{display:table!important}.d-xxl-table-row{display:table-row!important}.d-xxl-table-cell{display:table-cell!important}.d-xxl-flex{display:flex!important}.d-xxl-inline-flex{display:inline-flex!important}.d-xxl-none{display:none!important}.flex-xxl-fill{flex:1 1 auto!important}.flex-xxl-row{flex-direction:row!important}.flex-xxl-column{flex-direction:column!important}.flex-xxl-row-reverse{flex-direction:row-reverse!important}.flex-xxl-column-reverse{flex-direction:column-reverse!important}.flex-xxl-grow-0{flex-grow:0!important}.flex-xxl-grow-1{flex-grow:1!important}.flex-xxl-shrink-0{flex-shrink:0!important}.flex-xxl-shrink-1{flex-shrink:1!important}.flex-xxl-wrap{flex-wrap:wrap!important}.flex-xxl-nowrap{flex-wrap:nowrap!important}.flex-xxl-wrap-reverse{flex-wrap:wrap-reverse!important}.gap-xxl-0{gap:0!important}.gap-xxl-1{gap:.25rem!important}.gap-xxl-2{gap:.5rem!important}.gap-xxl-3{gap:1rem!important}.gap-xxl-4{gap:1.5rem!important}.gap-xxl-5{gap:3rem!important}.justify-content-xxl-start{justify-content:flex-start!important}.justify-content-xxl-end{justify-content:flex-end!important}.justify-content-xxl-center{justify-content:center!important}.justify-content-xxl-between{justify-content:space-between!important}.justify-content-xxl-around{justify-content:space-around!important}.justify-content-xxl-evenly{justify-content:space-evenly!important}.align-items-xxl-start{align-items:flex-start!important}.align-items-xxl-end{align-items:flex-end!important}.align-items-xxl-center{align-items:center!important}.align-items-xxl-baseline{align-items:baseline!important}.align-items-xxl-stretch{align-items:stretch!important}.align-content-xxl-start{align-content:flex-start!important}.align-content-xxl-end{align-content:flex-end!important}.align-content-xxl-center{align-content:center!important}.align-content-xxl-between{align-content:space-between!important}.align-content-xxl-around{align-content:space-around!important}.align-content-xxl-stretch{align-content:stretch!important}.align-self-xxl-auto{align-self:auto!important}.align-self-xxl-start{align-self:flex-start!important}.align-self-xxl-end{align-self:flex-end!important}.align-self-xxl-center{align-self:center!important}.align-self-xxl-baseline{align-self:baseline!important}.align-self-xxl-stretch{align-self:stretch!important}.order-xxl-first{order:-1!important}.order-xxl-0{order:0!important}.order-xxl-1{order:1!important}.order-xxl-2{order:2!important}.order-xxl-3{order:3!important}.order-xxl-4{order:4!important}.order-xxl-5{order:5!important}.order-xxl-last{order:6!important}.m-xxl-0{margin:0!important}.m-xxl-1{margin:.25rem!important}.m-xxl-2{margin:.5rem!important}.m-xxl-3{margin:1rem!important}.m-xxl-4{margin:1.5rem!important}.m-xxl-5{margin:3rem!important}.m-xxl-auto{margin:auto!important}.mx-xxl-0{margin-right:0!important;margin-left:0!important}.mx-xxl-1{margin-right:.25rem!important;margin-left:.25rem!important}.mx-xxl-2{margin-right:.5rem!important;margin-left:.5rem!important}.mx-xxl-3{margin-right:1rem!important;margin-left:1rem!important}.mx-xxl-4{margin-right:1.5rem!important;margin-left:1.5rem!important}.mx-xxl-5{margin-right:3rem!important;margin-left:3rem!important}.mx-xxl-auto{margin-right:auto!important;margin-left:auto!important}.my-xxl-0{margin-top:0!important;margin-bottom:0!important}.my-xxl-1{margin-top:.25rem!important;margin-bottom:.25rem!important}.my-xxl-2{margin-top:.5rem!important;margin-bottom:.5rem!important}.my-xxl-3{margin-top:1rem!important;margin-bottom:1rem!important}.my-xxl-4{margin-top:1.5rem!important;margin-bottom:1.5rem!important}.my-xxl-5{margin-top:3rem!important;margin-bottom:3rem!important}.my-xxl-auto{margin-top:auto!important;margin-bottom:auto!important}.mt-xxl-0{margin-top:0!important}.mt-xxl-1{margin-top:.25rem!important}.mt-xxl-2{margin-top:.5rem!important}.mt-xxl-3{margin-top:1rem!important}.mt-xxl-4{margin-top:1.5rem!important}.mt-xxl-5{margin-top:3rem!important}.mt-xxl-auto{margin-top:auto!important}.me-xxl-0{margin-right:0!important}.me-xxl-1{margin-right:.25rem!important}.me-xxl-2{margin-right:.5rem!important}.me-xxl-3{margin-right:1rem!important}.me-xxl-4{margin-right:1.5rem!important}.me-xxl-5{margin-right:3rem!important}.me-xxl-auto{margin-right:auto!important}.mb-xxl-0{margin-bottom:0!important}.mb-xxl-1{margin-bottom:.25rem!important}.mb-xxl-2{margin-bottom:.5rem!important}.mb-xxl-3{margin-bottom:1rem!important}.mb-xxl-4{margin-bottom:1.5rem!important}.mb-xxl-5{margin-bottom:3rem!important}.mb-xxl-auto{margin-bottom:auto!important}.ms-xxl-0{margin-left:0!important}.ms-xxl-1{margin-left:.25rem!important}.ms-xxl-2{margin-left:.5rem!important}.ms-xxl-3{margin-left:1rem!important}.ms-xxl-4{margin-left:1.5rem!important}.ms-xxl-5{margin-left:3rem!important}.ms-xxl-auto{margin-left:auto!important}.p-xxl-0{padding:0!important}.p-xxl-1{padding:.25rem!important}.p-xxl-2{padding:.5rem!important}.p-xxl-3{padding:1rem!important}.p-xxl-4{padding:1.5rem!important}.p-xxl-5{padding:3rem!important}.px-xxl-0{padding-right:0!important;padding-left:0!important}.px-xxl-1{padding-right:.25rem!important;padding-left:.25rem!important}.px-xxl-2{padding-right:.5rem!important;padding-left:.5rem!important}.px-xxl-3{padding-right:1rem!important;padding-left:1rem!important}.px-xxl-4{padding-right:1.5rem!important;padding-left:1.5rem!important}.px-xxl-5{padding-right:3rem!important;padding-left:3rem!important}.py-xxl-0{padding-top:0!important;padding-bottom:0!important}.py-xxl-1{padding-top:.25rem!important;padding-bottom:.25rem!important}.py-xxl-2{padding-top:.5rem!important;padding-bottom:.5rem!important}.py-xxl-3{padding-top:1rem!important;padding-bottom:1rem!important}.py-xxl-4{padding-top:1.5rem!important;padding-bottom:1.5rem!important}.py-xxl-5{padding-top:3rem!important;padding-bottom:3rem!important}.pt-xxl-0{padding-top:0!important}.pt-xxl-1{padding-top:.25rem!important}.pt-xxl-2{padding-top:.5rem!important}.pt-xxl-3{padding-top:1rem!important}.pt-xxl-4{padding-top:1.5rem!important}.pt-xxl-5{padding-top:3rem!important}.pe-xxl-0{padding-right:0!important}.pe-xxl-1{padding-right:.25rem!important}.pe-xxl-2{padding-right:.5rem!important}.pe-xxl-3{padding-right:1rem!important}.pe-xxl-4{padding-right:1.5rem!important}.pe-xxl-5{padding-right:3rem!important}.pb-xxl-0{padding-bottom:0!important}.pb-xxl-1{padding-bottom:.25rem!important}.pb-xxl-2{padding-bottom:.5rem!important}.pb-xxl-3{padding-bottom:1rem!important}.pb-xxl-4{padding-bottom:1.5rem!important}.pb-xxl-5{padding-bottom:3rem!important}.ps-xxl-0{padding-left:0!important}.ps-xxl-1{padding-left:.25rem!important}.ps-xxl-2{padding-left:.5rem!important}.ps-xxl-3{padding-left:1rem!important}.ps-xxl-4{padding-left:1.5rem!important}.ps-xxl-5{padding-left:3rem!important}.text-xxl-start{text-align:left!important}.text-xxl-end{text-align:right!important}.text-xxl-center{text-align:center!important}}@media (min-width:1200px){.fs-1{font-size:2.5rem!important}.fs-2{font-size:2rem!important}.fs-3{font-size:1.75rem!important}.fs-4{font-size:1.5rem!important}}@media print{.d-print-inline{display:inline!important}.d-print-inline-block{display:inline-block!important}.d-print-block{display:block!important}.d-print-grid{display:grid!important}.d-print-table{display:table!important}.d-print-table-row{display:table-row!important}.d-print-table-cell{display:table-cell!important}.d-print-flex{display:flex!important}.d-print-inline-flex{display:inline-flex!important}.d-print-none{display:none!important}} -/*# sourceMappingURL=bootstrap.min.css.map */ \ No newline at end of file diff --git a/web/docroot/index.html b/web/docroot/index.html deleted file mode 100644 index 66839d44d..000000000 --- a/web/docroot/index.html +++ /dev/null @@ -1,67 +0,0 @@ - - - - - SensESP Device - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

- - -
- -
- - diff --git a/web/docroot/info b/web/docroot/info deleted file mode 100644 index 01d4f26e5..000000000 --- a/web/docroot/info +++ /dev/null @@ -1,56 +0,0 @@ -{ - "Properties": { - "Built at": { - "Value": "Apr 29 2022 12:34:26", - "Group": "Software", - "Order": 2000 - }, - "Hostname": { - "Value": "asyncnew", - "Group": "Network", - "Order": 500 - }, - "MAC Address": { - "Value": "94:3C:C6:9A:xx:xx", - "Group": "Network", - "Order": 1100 - }, - "SK connection status": { - "Value": "Connected", - "Group": "Network", - "Order": 1600 - }, - "SSID": { - "Value": "Sensors", - "Group": "Network", - "Order": 1200 - }, - "SenseESP version": { - "Value": "2.4.2-alpha", - "Group": "Software", - "Order": 1900 - }, - "Signal K server address": { - "Value": "", - "Group": "Network", - "Order": 1400 - }, - "Signal K server port": { - "Value": 0, - "Group": "Network", - "Order": 1500 - }, - "WiFi signal strength": { - "Value": -45, - "Group": "Network", - "Order": 1300 - } - }, - "Commands": [], - "Pages": [], - "Config": [ - "/System/WiFi Settings", - "/System/Signal K Settings", - "/Transforms/Linear" - ] -} diff --git a/web/docroot/js/jsoneditor.min.js b/web/docroot/js/jsoneditor.min.js deleted file mode 100644 index 3d8990507..000000000 --- a/web/docroot/js/jsoneditor.min.js +++ /dev/null @@ -1,19 +0,0 @@ -/** - * @name JSON Editor - * @description JSON Schema Based Editor - * This library is the continuation of jdorn's great work (see also https://github.com/jdorn/json-editor/issues/800) - * @version 1.3.5 - * @author Jeremy Dorn - * @see https://github.com/jdorn/json-editor/ - * @see https://github.com/json-editor/json-editor - * @license MIT - * @example see README.md and docs/ for requirements, examples and usage info - */ -!function(a,b){"use strict";var c=b(a);"object"==typeof module&&null!=module&&module.exports?module.exports=c:"function"==typeof define&&define.amd?define(function(){return c}):a.JSONEditor=c}("undefined"!=typeof window?window:this,function(a,b){var c;!function(){var a=!1,b=/xyz/.test(function(){window.postMessage("xyz")})?/\b_super\b/:/.*/;return c=function(){},c.extend=function d(c){function e(){!a&&this.init&&this.init.apply(this,arguments)}var f=this.prototype;a=!0;var g=new this;a=!1;for(var h in c)g[h]="function"==typeof c[h]&&"function"==typeof f[h]&&b.test(c[h])?function(a,b){return function(){var c=this._super;this._super=f[a];var d=b.apply(this,arguments);return this._super=c,d}}(h,c[h]):c[h];return e.prototype=g,e.prototype.constructor=e,e.extend=d,e},c}(),function(){function a(a,c){c=c||{bubbles:!1,cancelable:!1,detail:b};var d=document.createEvent("CustomEvent");return d.initCustomEvent(a,c.bubbles,c.cancelable,c.detail),d}a.prototype=window.Event.prototype,window.CustomEvent=a}(),function(){for(var a=0,b=["ms","moz","webkit","o"],c=0;c0&&a.length-1 in a){for(c=0;c=i&&!j&&(j=!0,b())},c,k)}},f.send()}}),i||b()},expandRefs:function(a){for(a=e({},a);a.$ref;){var b=this.refs_with_info[a.$ref];delete a.$ref;var c="";b.$ref.startsWith("#")&&(c=b.fetchUrl);var d=c+b.$ref;this.refs[d]||(d=c+decodeURIComponent(b.$ref)),a=this.extendSchemas(a,e({},this.refs[d]))}return a},expandSchema:function(a,b){var c,d=this,g=e({},a);if("object"==typeof a.type&&(Array.isArray(a.type)?f(a.type,function(b,c){"object"==typeof c&&(a.type[b]=d.expandSchema(c))}):a.type=d.expandSchema(a.type)),"object"==typeof a.disallow&&(Array.isArray(a.disallow)?f(a.disallow,function(b,c){"object"==typeof c&&(a.disallow[b]=d.expandSchema(c))}):a.disallow=d.expandSchema(a.disallow)),a.anyOf&&f(a.anyOf,function(b,c){a.anyOf[b]=d.expandSchema(c)}),a.dependencies&&f(a.dependencies,function(b,c){"object"!=typeof c||Array.isArray(c)||(a.dependencies[b]=d.expandSchema(c))}),a.not&&(a.not=this.expandSchema(a.not)),a.allOf){for(c=0;ca.minimum:c>=a.minimum,window.math?g=window.math[a.exclusiveMinimum?"larger":"largerEq"](window.math.bignumber(c),window.math.bignumber(a.minimum)):window.Decimal&&(g=new window.Decimal(c)[a.exclusiveMinimum?"gt":"gte"](new window.Decimal(a.minimum))),g||l.push({path:d,property:"minimum",message:this.translate(a.exclusiveMinimum?"error_minimum_excl":"error_minimum_incl",[a.minimum])}))}else if("string"==typeof c)a.maxLength&&(c+"").length>a.maxLength&&l.push({path:d,property:"maxLength",message:this.translate("error_maxLength",[a.maxLength])}),a.minLength&&(c+"").lengtha.maxItems&&l.push({path:d,property:"maxItems",message:this.translate("error_maxItems",[a.maxItems])}),a.minItems&&c.lengtha.maxProperties&&l.push({path:d,property:"maxProperties",message:this.translate("error_maxProperties",[a.maxProperties])})}if(a.minProperties){g=0;for(i in c)c.hasOwnProperty(i)&&g++;g0:this.dependenciesFulfilled=!g||0===g.length):this.dependenciesFulfilled=!1,this.dependenciesFulfilled!==h&&this.notify(),this.dependenciesFulfilled?d.style.display="block":d.style.display="none"}},setContainer:function(a){this.container=a,this.schema.id&&this.container.setAttribute("data-schemaid",this.schema.id),this.schema.type&&"string"==typeof this.schema.type&&this.container.setAttribute("data-schematype",this.schema.type),this.container.setAttribute("data-schemapath",this.path)},preBuild:function(){},build:function(){},postBuild:function(){this.setupWatchListeners(),this.addLinks(),this.setValue(this.getDefault(),!0),this.updateHeaderText(),this.register(),this.onWatchedFieldChange()},setupWatchListeners:function(){var a=this;if(this.watched={},this.schema.vars&&(this.schema.watch=this.schema.vars),this.watched_values={},this.watch_listener=function(){a.refreshWatchedFieldValues()&&a.onWatchedFieldChange()},this.schema.hasOwnProperty("watch")){var b,c,d,e,f;for(var g in this.schema.watch)if(this.schema.watch.hasOwnProperty(g)){if(b=this.schema.watch[g],Array.isArray(b)){if(b.length<2)continue;c=[b[0]].concat(b[1].split("."))}else c=b.split("."),a.theme.closest(a.container,'[data-schemaid="'+c[0]+'"]')||c.unshift("#");if(d=c.shift(),"#"===d&&(d=a.jsoneditor.schema.id||"root"),e=a.theme.closest(a.container,'[data-schemaid="'+d+'"]'),!e)throw"Could not find ancestor node with id "+d;f=e.getAttribute("data-schemapath")+"."+c.join("."),a.jsoneditor.watch(f,a.watch_listener),a.watched[g]=f}}this.schema.headerTemplate&&(this.header_template=this.jsoneditor.compileTemplate(this.schema.headerTemplate,this.template_engine))},addLinks:function(){if(!this.no_link_holder&&(this.link_holder=this.theme.getLinksHolder(),this.container.appendChild(this.link_holder),this.schema.links))for(var a=0;a=0){b=this.theme.getBlockLinkHolder(),c=this.theme.getBlockLink(),c.setAttribute("target","_blank");var j=document.createElement(e);j.setAttribute("controls","controls"),this.theme.createMediaLink(b,c,j),this.link_watchers.push(function(a){var b=f(a),d=g(a);c.setAttribute("href",b),c.textContent=d||b,j.setAttribute("src",b)})}else c=b=this.theme.getBlockLink(),b.setAttribute("target","_blank"),b.textContent=a.rel,this.link_watchers.push(function(a){var c=f(a),d=g(a);b.setAttribute("href",c),b.textContent=d||c});return h&&c&&(h===!0?c.setAttribute("download",""):this.link_watchers.push(function(a){c.setAttribute("download",h(a))})),a["class"]&&c.classList.add(a["class"]),b},refreshWatchedFieldValues:function(){if(this.watched_values){var a={},b=!1,c=this;if(this.watched){var d,e;for(var f in this.watched)this.watched.hasOwnProperty(f)&&(e=c.jsoneditor.getEditor(this.watched[f]),d=e?e.getValue():null,c.watched_values[f]!==d&&(b=!0),a[f]=d)}return a.self=this.getValue(),this.watched_values.self!==a.self&&(b=!0),this.watched_values=a,b}},getWatchedFieldValues:function(){return this.watched_values},updateHeaderText:function(){if(this.header)if(this.header.children.length){for(var a=0;a-1:!!this.jsoneditor.options.required_by_default},getDisplayText:function(a){var b=[],c={};f(a,function(a,b){b.title&&(c[b.title]=c[b.title]||0,c[b.title]++),b.description&&(c[b.description]=c[b.description]||0,c[b.description]++),b.format&&(c[b.format]=c[b.format]||0,c[b.format]++),b.type&&(c[b.type]=c[b.type]||0,c[b.type]++)}),f(a,function(a,d){var e;e="string"==typeof d?d:d.title&&c[d.title]<=1?d.title:d.format&&c[d.format]<=1?d.format:d.type&&c[d.type]<=1?d.type:d.description&&c[d.description]<=1?d.descripton:d.title?d.title:d.format?d.format:d.type?d.type:d.description?d.description:JSON.stringify(d).length<500?JSON.stringify(d):"type",b.push(e)});var d={};return f(b,function(a,e){d[e]=d[e]||0,d[e]++,c[e]>1&&(b[a]=e+" "+d[e])}),b},getValidId:function(a){return a=a===b?"":a.toString(),a.replace(/\s+/g,"-")},setInputAttributes:function(a){if(this.schema.options&&this.schema.options.inputAttributes){var b=this.schema.options.inputAttributes,c=["name","type"].concat(a);for(var d in b)b.hasOwnProperty(d)&&c.indexOf(d.toLowerCase())==-1&&this.input.setAttribute(d,b[d])}},getOption:function(a){try{throw"getOption is deprecated"}catch(b){window.console.error(b)}return this.options[a]},showValidationErrors:function(a){}}),h.defaults.editors["null"]=h.AbstractEditor.extend({getValue:function(){return this.dependenciesFulfilled?null:b},setValue:function(){this.onChange()},getNumColumns:function(){return 2}}),h.defaults.editors.string=h.AbstractEditor.extend({register:function(){this._super(),this.input&&this.input.setAttribute("name",this.formname)},unregister:function(){this._super(),this.input&&this.input.removeAttribute("name")},setValue:function(a,b,c){if((!this.template||c)&&(null===a||"undefined"==typeof a?a="":"object"==typeof a?a=JSON.stringify(a):"string"!=typeof a&&(a=""+a), -a!==this.serialized)){var d=this.sanitize(a);if(this.input.value!==d){this.input.value=d,this.sceditor_instance?this.sceditor_instance.val(d):this.SimpleMDE?this.SimpleMDE.value(d):this.ace_editor&&(this.ace_editor.setValue(d),this.ace_editor.session.getSelection().clearSelection(),this.ace_editor.resize());var e=c||this.getValue()!==a;this.refreshValue(),b?this.is_dirty=!1:"change"===this.jsoneditor.options.show_errors&&(this.is_dirty=!0),this.adjust_height&&this.adjust_height(this.input),this.onChange(e)}}},getNumColumns:function(){var a,b=Math.ceil(Math.max(this.getTitle().length,this.schema.maxLength||0,this.schema.minLength||0)/5);return a="textarea"===this.input_type?6:["text","email"].indexOf(this.input_type)>=0?4:2,Math.min(12,Math.max(b,a))},build:function(){var a=this;if(this.options.compact||(this.header=this.label=this.theme.getFormInputLabel(this.getTitle())),this.schema.description&&(this.description=this.theme.getFormInputDescription(this.schema.description)),this.options.infoText&&(this.infoButton=this.theme.getInfoButton(this.options.infoText)),this.format=this.schema.format,!this.format&&this.schema.media&&this.schema.media.type&&(this.format=this.schema.media.type.replace(/(^(application|text)\/(x-)?(script\.)?)|(-source$)/g,"")),!this.format&&this.options.default_format&&(this.format=this.options.default_format),this.options.format&&(this.format=this.options.format),this.format)if("textarea"===this.format)this.input_type="textarea",this.input=this.theme.getTextareaInput();else if("range"===this.format){this.input_type="range";var b=this.schema.minimum||0,c=this.schema.maximum||Math.max(100,b+1),d=1;this.schema.multipleOf&&(b%this.schema.multipleOf&&(b=Math.ceil(b/this.schema.multipleOf)*this.schema.multipleOf),c%this.schema.multipleOf&&(c=Math.floor(c/this.schema.multipleOf)*this.schema.multipleOf),d=this.schema.multipleOf),this.input=this.theme.getRangeInput(b,c,d)}else["actionscript","batchfile","bbcode","c","c++","cpp","coffee","csharp","css","dart","django","ejs","erlang","golang","groovy","handlebars","haskell","haxe","html","ini","jade","java","javascript","json","less","lisp","lua","makefile","markdown","matlab","mysql","objectivec","pascal","perl","pgsql","php","python","r","ruby","sass","scala","scss","smarty","sql","sqlserver","stylus","svg","twig","vbscript","xml","yaml"].indexOf(this.format)>=0?(this.input_type=this.format,this.source_code=!0,this.input=this.theme.getTextareaInput()):(this.input_type=this.format,this.input=this.theme.getFormInputField(this.input_type));else this.input_type="text",this.input=this.theme.getFormInputField(this.input_type);if("undefined"!=typeof this.schema.maxLength&&this.input.setAttribute("maxlength",this.schema.maxLength),"undefined"!=typeof this.schema.pattern?this.input.setAttribute("pattern",this.schema.pattern):"undefined"!=typeof this.schema.minLength&&this.input.setAttribute("pattern",".{"+this.schema.minLength+",}"),this.options.compact?this.container.classList.add("compact"):this.options.input_width&&(this.input.style.width=this.options.input_width),(this.schema.readOnly||this.schema.readonly||this.schema.template)&&(this.always_disabled=!0,this.input.setAttribute("readonly","true")),this.setInputAttributes(["maxlength","pattern","readonly","min","max","step"]),this.input.addEventListener("change",function(b){if(b.preventDefault(),b.stopPropagation(),a.schema.template)return void(this.value=a.value);var c=this.value,d=a.sanitize(c);c!==d&&(this.value=d),a.is_dirty=!0,a.refreshValue(),a.onChange(!0)}),this.options.input_height&&(this.input.style.height=this.options.input_height),this.options.expand_height&&(this.adjust_height=function(a){if(a){var b,c=a.offsetHeight;if(a.offsetHeight100);)b++,c++,a.style.height=c+"px";else{for(b=0;a.offsetHeight>=a.scrollHeight+3&&!(b>100);)b++,c--,a.style.height=c+"px";a.style.height=c+1+"px"}}},this.input.addEventListener("keyup",function(b){a.adjust_height(this)}),this.input.addEventListener("change",function(b){a.adjust_height(this)}),this.adjust_height()),this.format&&this.input.setAttribute("data-schemaformat",this.format),this.control=this.theme.getFormControl(this.label,this.input,this.description,this.infoButton),"range"===this.format){var e=document.createElement("output");e.setAttribute("class","range-output"),this.control.appendChild(e),e.value=this.schema["default"],this.input.addEventListener("change",function(){e.value=a.input.value}),this.input.addEventListener("input",function(){e.value=a.input.value})}this.container.appendChild(this.control),window.requestAnimationFrame(function(){a.input.parentNode&&a.afterInputReady(),a.adjust_height&&a.adjust_height(a.input)}),this.schema.template?(this.template=this.jsoneditor.compileTemplate(this.schema.template,this.template_engine),this.refreshValue()):this.refreshValue()},postBuild:function(){this._super(),window.Cleave&&this.schema.options&&"object"==typeof this.schema.options.cleave&&(this.cleave=new window.Cleave(this.input,this.schema.options.cleave))},enable:function(){this.always_disabled||(this.input.disabled=!1,this._super())},disable:function(a){a&&(this.always_disabled=!0),this.input.disabled=!0,this._super()},afterInputReady:function(){var a,b=this;if(this.source_code)if(this.options.wysiwyg&&["html","bbcode"].indexOf(this.input_type)>=0&&window.jQuery&&window.jQuery.fn&&window.jQuery.fn.sceditor)a=e({},{plugins:"html"===b.input_type?"xhtml":"bbcode",emoticonsEnabled:!1,width:"100%",height:300},h.plugins.sceditor,b.options.sceditor_options||{}),window.jQuery(b.input).sceditor(a),b.sceditor_instance=window.jQuery(b.input).sceditor("instance"),b.sceditor_instance.blur(function(){var a=window.jQuery("
"+b.sceditor_instance.val()+"
");window.jQuery("#sceditor-start-marker,#sceditor-end-marker,.sceditor-nlf",a).remove(),b.input.value=a.html(),b.value=b.input.value,b.is_dirty=!0,b.onChange(!0)});else if("markdown"===this.input_type&&window.SimpleMDE)a=e({},h.plugins.SimpleMDE,{element:this.input}),this.SimpleMDE=new window.SimpleMDE(a),this.SimpleMDE.codemirror.on("change",function(){b.value=b.SimpleMDE.value(),b.is_dirty=!0,b.onChange(!0)});else if(window.ace){var c=this.input_type;"cpp"!==c&&"c++"!==c&&"c"!==c||(c="c_cpp"),this.ace_container=document.createElement("div"),this.ace_container.style.width="100%",this.ace_container.style.position="relative",this.ace_container.style.height="400px",this.input.parentNode.insertBefore(this.ace_container,this.input),this.input.style.display="none",this.ace_editor=window.ace.edit(this.ace_container);var d=this.schema.options&&this.schema.options.ace;d&&this.ace_editor.setOptions(d),this.ace_editor.setValue(this.getValue()),this.ace_editor.session.getSelection().clearSelection(),this.ace_editor.resize(),h.plugins.ace.theme&&this.ace_editor.setTheme("ace/theme/"+h.plugins.ace.theme),this.ace_editor.getSession().setMode("ace/mode/"+this.schema.format),this.ace_editor.on("change",function(){var a=b.ace_editor.getValue();b.input.value=a,b.refreshValue(),b.is_dirty=!0,b.onChange(!0)})}b.theme.afterInputReady(b.input)},refreshValue:function(){this.value=this.input.value,"string"!=typeof this.value&&(this.value=""),this.serialized=this.value},destroy:function(){this.sceditor_instance?this.sceditor_instance.destroy():this.SimpleMDE?(this.SimpleMDE.toTextArea(),this.SimpleMDE=null):this.ace_editor&&this.ace_editor.destroy(),this.cleave&&this.cleave.destroy(),this.template=null,this.input&&this.input.parentNode&&this.input.parentNode.removeChild(this.input),this.label&&this.label.parentNode&&this.label.parentNode.removeChild(this.label),this.description&&this.description.parentNode&&this.description.parentNode.removeChild(this.description),this._super()},sanitize:function(a){return a},onWatchedFieldChange:function(){var a;this.template&&(a=this.getWatchedFieldValues(),this.setValue(this.template(a),!1,!0)),this._super()},showValidationErrors:function(a){var b=this;if("always"===this.jsoneditor.options.show_errors);else if(!this.is_dirty&&this.previous_error_setting===this.jsoneditor.options.show_errors)return;this.previous_error_setting=this.jsoneditor.options.show_errors;var c=[];f(a,function(a,d){d.path===b.path&&c.push(d.message)}),c.length?this.theme.addInputError(this.input,c.join(". ")+"."):this.theme.removeInputError(this.input)}}),h.defaults.editors.hidden=h.AbstractEditor.extend({register:function(){this._super(),this.input&&this.input.setAttribute("name",this.formname)},unregister:function(){this._super(),this.input&&this.input.removeAttribute("name")},setValue:function(a,b,c){if((!this.template||c)&&(null===a||"undefined"==typeof a?a="":"object"==typeof a?a=JSON.stringify(a):"string"!=typeof a&&(a=""+a),a!==this.serialized)){var d=this.sanitize(a);if(this.input.value!==d){this.input.value=d;var e=c||this.getValue()!==a;this.refreshValue(),b?this.is_dirty=!1:"change"===this.jsoneditor.options.show_errors&&(this.is_dirty=!0),this.adjust_height&&this.adjust_height(this.input),this.onChange(e)}}},getNumColumns:function(){return 2},enable:function(){this._super()},disable:function(){this._super()},refreshValue:function(){this.value=this.input.value,"string"!=typeof this.value&&(this.value=""),this.serialized=this.value},destroy:function(){this.template=null,this.input&&this.input.parentNode&&this.input.parentNode.removeChild(this.input),this.label&&this.label.parentNode&&this.label.parentNode.removeChild(this.label),this.description&&this.description.parentNode&&this.description.parentNode.removeChild(this.description),this._super()},sanitize:function(a){return a},onWatchedFieldChange:function(){var a;this.template&&(a=this.getWatchedFieldValues(),this.setValue(this.template(a),!1,!0)),this._super()},build:function(){this.format=this.schema.format,!this.format&&this.options.default_format&&(this.format=this.options.default_format),this.options.format&&(this.format=this.options.format),this.input_type="hidden",this.input=this.theme.getFormInputField(this.input_type),this.format&&this.input.setAttribute("data-schemaformat",this.format),this.container.appendChild(this.input),this.schema.template?(this.template=this.jsoneditor.compileTemplate(this.schema.template,this.template_engine),this.refreshValue()):this.refreshValue()}}),h.defaults.editors.number=h.defaults.editors.string.extend({build:function(){if(this._super(),"undefined"!=typeof this.schema.minimum){var a=this.schema.minimum;"undefined"!=typeof this.schema.exclusiveMinimum&&(a+=1),this.input.setAttribute("min",a)}if("undefined"!=typeof this.schema.maximum){var b=this.schema.maximum;"undefined"!=typeof this.schema.exclusiveMaximum&&(b-=1),this.input.setAttribute("max",b)}if("undefined"!=typeof this.schema.step){var c=this.schema.step||1;this.input.setAttribute("step",c)}this.setInputAttributes(["maxlength","pattern","readonly","min","max","step"])},sanitize:function(a){return(a+"").replace(/[^0-9\.\-eE]/g,"")},getNumColumns:function(){return 2},getValue:function(){return this.dependenciesFulfilled?""===this.value?b:1*this.value:b}}),h.defaults.editors.integer=h.defaults.editors.number.extend({sanitize:function(a){return a+="",a.replace(/[^0-9\-]/g,"")},getNumColumns:function(){return 2}}),h.defaults.editors.rating=h.defaults.editors.integer.extend({build:function(){var a,b=this;this.options.compact||(this.header=this.label=this.theme.getFormInputLabel(this.getTitle())),this.schema.description&&(this.description=this.theme.getFormInputDescription(this.schema.description));var c="json-editor-style-rating",d=document.getElementById(c);if(!d){var e=document.createElement("style");e.id=c,e.type="text/css",e.innerHTML=" .rating-container { display: inline-block; clear: both; } .rating { float:left; } /* :not(:checked) is a filter, so that browsers that don’t support :checked don’t follow these rules. Every browser that supports :checked also supports :not(), so it doesn’t make the test unnecessarily selective */ .rating:not(:checked) > input { position:absolute; top:-9999px; clip:rect(0,0,0,0); } .rating:not(:checked) > label { float:right; width:1em; padding:0 .1em; overflow:hidden; white-space:nowrap; cursor:pointer; color:#ddd; } .rating:not(:checked) > label:before { content: '★ '; } .rating > input:checked ~ label { color: #FFB200; } .rating:not([readOnly]):not(:checked) > label:hover, .rating:not([readOnly]):not(:checked) > label:hover ~ label { color: #FFDA00; } .rating:not([readOnly]) > input:checked + label:hover, .rating:not([readOnly]) > input:checked + label:hover ~ label, .rating:not([readOnly]) > input:checked ~ label:hover, .rating:not([readOnly]) > input:checked ~ label:hover ~ label, .rating:not([readOnly]) > label:hover ~ input:checked ~ label { color: #FF8C0D; } .rating:not([readOnly]) > label:active { position:relative; top:2px; left:2px; }",document.getElementsByTagName("head")[0].appendChild(e)}this.input=this.theme.getFormInputField("hidden"),this.container.appendChild(this.input);var g=document.createElement("div");g.classList.add("rating-container");var h=document.createElement("div");h.setAttribute("name",this.formname),h.classList.add("rating"),g.appendChild(h),this.options.compact&&this.container.setAttribute("class",this.container.getAttribute("class")+" compact");var i=this.schema.maximum?this.schema.maximum:5;for(this.schema.exclusiveMaximum&&i--,this.inputs=[],a=i;a>0;a--){var j=this.formname+a,k=this.theme.getFormInputField("radio");k.setAttribute("id",j),k.setAttribute("value",a),k.setAttribute("name",this.formname),h.appendChild(k),this.inputs.push(k);var l=document.createElement("label");l.setAttribute("for",j),l.appendChild(document.createTextNode(a+(1==a?" star":" stars"))),h.appendChild(l)}(this.schema.readOnly||this.schema.readonly)&&(this.always_disabled=!0,f(this.inputs,function(a,b){h.setAttribute("readOnly","readOnly"),b.disabled=!0})),g.addEventListener("change",function(a){a.preventDefault(),a.stopPropagation(),b.input.value=a.srcElement.value,b.is_dirty=!0,b.refreshValue(),b.watch_listener(),b.jsoneditor.notifyWatchers(b.path),b.parent?b.parent.onChildEditorChange(b):b.jsoneditor.onChange()}),this.control=this.theme.getFormControl(this.label,g,this.description),this.container.appendChild(this.control),this.refreshValue()},setValue:function(a){var b=this.sanitize(a);if(this.value!==b){var c=this;f(this.inputs,function(a,d){if(d.value===b)return d.checked=!0,c.value=b,c.input.value=c.value,c.watch_listener(),c.jsoneditor.notifyWatchers(c.path),!1})}}}),h.defaults.editors.object=h.AbstractEditor.extend({getDefault:function(){return e({},this.schema["default"]||{})},getChildEditors:function(){return this.editors},register:function(){if(this._super(),this.editors)for(var a in this.editors)this.editors.hasOwnProperty(a)&&this.editors[a].register()},unregister:function(){if(this._super(),this.editors)for(var a in this.editors)this.editors.hasOwnProperty(a)&&this.editors[a].unregister()},getNumColumns:function(){return Math.max(Math.min(12,this.maxwidth),3)},enable:function(){if(!this.always_disabled&&(this.editjson_button&&(this.editjson_button.disabled=!1),this.addproperty_button&&(this.addproperty_button.disabled=!1),this._super(),this.editors))for(var a in this.editors)this.editors.hasOwnProperty(a)&&this.editors[a].enable()},disable:function(a){if(a&&(this.always_disabled=!0),this.editjson_button&&(this.editjson_button.disabled=!0),this.addproperty_button&&(this.addproperty_button.disabled=!0),this.hideEditJSON(),this._super(),this.editors)for(var b in this.editors)this.editors.hasOwnProperty(b)&&this.editors[b].disable(a)},layoutEditors:function(){var a,b,c=this;if(this.row_container){this.property_order=Object.keys(this.editors),this.property_order=this.property_order.sort(function(a,b){var d=c.editors[a].schema.propertyOrder,e=c.editors[b].schema.propertyOrder;return"number"!=typeof d&&(d=1e3),"number"!=typeof e&&(e=1e3),d-e});var d,e="categories"===this.format;if("grid"===this.format){var h=[];for(f(this.property_order,function(a,b){var d=c.editors[b];if(!d.property_removed){for(var e=!1,f=d.options.hidden?0:d.options.grid_columns||d.getNumColumns(),g=d.options.hidden?0:d.container.offsetHeight,i=0;ig)&&(e=i);e===!1&&(h.push({width:0,minh:999999,maxh:0,editors:[]}),e=h.length-1),h[e].editors.push({key:b,width:f,height:g}),h[e].width+=f,h[e].minh=Math.min(h[e].minh,g),h[e].maxh=Math.max(h[e].maxh,g)}}),a=0;ah[a].editors[i].width&&(i=b),h[a].editors[b].width*=12/h[a].width,h[a].editors[b].width=Math.floor(h[a].editors[b].width),j+=h[a].editors[b].width;j<12&&(h[a].editors[i].width+=12-j),h[a].width=12}if(this.layout===JSON.stringify(h))return!1;for(this.layout=JSON.stringify(h),d=document.createElement("div"),a=0;a0?p.firstChild.isObjOrArray&&(e.appendChild(n),p.insertBefore(e,p.firstChild),c.theme.insertBasicTopTab(d.tab,o),d.basicPane=e):(e.appendChild(n),p.appendChild(e),c.theme.addTopTab(o,d.tab),d.basicPane=e)),d.options.hidden?d.container.style.display="none":c.theme.setGridColumnSize(d.container,12),g.appendChild(d.container),d.rowPane=e}});this.tabPanesContainer.firstChild;)this.tabPanesContainer.removeChild(this.tabPanesContainer.firstChild);var q=this.tabs_holder.parentNode;q.removeChild(q.firstChild),q.appendChild(o),this.tabPanesContainer=p,this.tabs_holder=o;var r=this.theme.getFirstTab(this.tabs_holder);return void(r&&g(r,"click"))}f(this.property_order,function(a,b){var e=c.editors[b];if(!e.property_removed){var f=c.theme.getGridRow();d.appendChild(f),e.options.hidden?e.container.style.display="none":c.theme.setGridColumnSize(e.container,12),f.appendChild(e.container)}})}for(;this.row_container.firstChild;)this.row_container.removeChild(this.row_container.firstChild);this.row_container.appendChild(d)}},getPropertySchema:function(a){var b=this.schema.properties[a]||{};b=e({},b);var c=!!this.schema.properties[a];if(this.schema.patternProperties)for(var d in this.schema.patternProperties)if(this.schema.patternProperties.hasOwnProperty(d)){var f=new RegExp(d);f.test(a)&&(b.allOf=b.allOf||[],b.allOf.push(this.schema.patternProperties[d]),c=!0)}return!c&&this.schema.additionalProperties&&"object"==typeof this.schema.additionalProperties&&(b=e({},this.schema.additionalProperties)),b},preBuild:function(){this._super(),this.editors={},this.cached_editors={};var a=this;if(this.format=this.options.layout||this.options.object_layout||this.schema.format||this.jsoneditor.options.object_layout||"normal",this.schema.properties=this.schema.properties||{},this.minwidth=0,this.maxwidth=0,this.options.table_row)f(this.schema.properties,function(b,c){var d=a.jsoneditor.getEditorClass(c);a.editors[b]=a.jsoneditor.createEditor(d,{jsoneditor:a.jsoneditor,schema:c,path:a.path+"."+b,parent:a,compact:!0,required:!0}),a.editors[b].preBuild();var e=a.editors[b].options.hidden?0:a.editors[b].options.grid_columns||a.editors[b].getNumColumns();a.minwidth+=e,a.maxwidth+=e}),this.no_link_holder=!0;else{if(this.options.table)throw"Not supported yet";this.schema.defaultProperties||(this.jsoneditor.options.display_required_only||this.options.display_required_only?(this.schema.defaultProperties=[],f(this.schema.properties,function(b,c){a.isRequired({key:b,schema:c})&&a.schema.defaultProperties.push(b)})):a.schema.defaultProperties=Object.keys(a.schema.properties)),a.maxwidth+=1,f(this.schema.defaultProperties,function(b,c){a.addObjectProperty(c,!0),a.editors[c]&&(a.minwidth=Math.max(a.minwidth,a.editors[c].options.grid_columns||a.editors[c].getNumColumns()),a.maxwidth+=a.editors[c].options.grid_columns||a.editors[c].getNumColumns())})}this.property_order=Object.keys(this.editors),this.property_order=this.property_order.sort(function(b,c){var d=a.editors[b].schema.propertyOrder,e=a.editors[c].schema.propertyOrder;return"number"!=typeof d&&(d=1e3),"number"!=typeof e&&(e=1e3),d-e})},addTab:function(a){var b=this,c=b.rows[a].schema&&("object"===b.rows[a].schema.type||"array"===b.rows[a].schema.type);b.tabs_holder&&(b.rows[a].tab_text=document.createElement("span"),c?b.rows[a].tab_text.textContent=b.rows[a].getHeaderText():b.rows[a].tab_text.textContent="undefined"==typeof b.schema.basicCategoryTitle?"Basic":b.schema.basicCategoryTitle,b.rows[a].tab=b.theme.getTopTab(b.rows[a].tab_text,this.getValidId(b.rows[a].tab_text.textContent)),b.rows[a].tab.addEventListener("click",function(c){b.active_tab=b.rows[a].tab,b.refreshTabs(),c.preventDefault(),c.stopPropagation()}))},addRow:function(a,b,c){var d=this,e=this.rows.length,f="object"===a.schema.type||"array"===a.schema.type;d.rows[e]=a,d.rows[e].rowPane=c,f?(d.addTab(e),d.theme.addTopTab(b,d.rows[e].tab)):"undefined"==typeof d.basicTab?(d.addTab(e),d.basicTab=e,d.basicPane=c,d.theme.addTopTab(b,d.rows[e].tab)):(d.rows[e].tab=d.rows[d.basicTab].tab,d.rows[e].tab_text=d.rows[d.basicTab].tab_text,d.rows[e].rowPane=d.rows[d.basicTab].rowPane)},refreshTabs:function(a){var b=this,c="undefined"!=typeof b.basicTab,d=!1;f(this.rows,function(e,f){f.tab&&f.rowPane&&f.rowPane.parentNode&&(c&&f.tab==b.rows[b.basicTab].tab&&d||(a?f.tab_text.textContent=f.getHeaderText():(c&&f.tab==b.rows[b.basicTab].tab&&(d=!0),f.tab===b.active_tab?b.theme.markTabActive(f):b.theme.markTabInactive(f))))})},build:function(){var a=this,b="categories"===this.format;if(this.rows=[],this.active_tab=null,this.options.table_row)this.editor_holder=this.container,f(this.editors,function(b,c){var d=a.theme.getTableCell();a.editor_holder.appendChild(d),c.setContainer(d),c.build(),c.postBuild(),a.editors[b].options.hidden&&(d.style.display="none"),a.editors[b].options.input_width&&(d.style.width=a.editors[b].options.input_width)});else{if(this.options.table)throw"Not supported yet";this.header=document.createElement("span"),this.header.textContent=this.getTitle(),this.title=this.theme.getHeader(this.header),this.container.appendChild(this.title),this.container.style.position="relative",this.editjson_holder=this.theme.getModal(),this.editjson_textarea=this.theme.getTextareaInput(),this.editjson_textarea.style.height="170px",this.editjson_textarea.style.width="300px",this.editjson_textarea.style.display="block",this.editjson_save=this.getButton("Save","save","Save"),this.editjson_save.classList.add("json-editor-btntype-save"),this.editjson_save.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.saveJSON()}),this.editjson_copy=this.getButton("Copy","copy","Copy"),this.editjson_copy.classList.add("json-editor-btntype-copy"),this.editjson_copy.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.copyJSON()}),this.editjson_cancel=this.getButton("Cancel","cancel","Cancel"),this.editjson_cancel.classList.add("json-editor-btntype-cancel"),this.editjson_cancel.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.hideEditJSON()}),this.editjson_holder.appendChild(this.editjson_textarea),this.editjson_holder.appendChild(this.editjson_save),this.editjson_holder.appendChild(this.editjson_copy),this.editjson_holder.appendChild(this.editjson_cancel),this.addproperty_holder=this.theme.getModal(),this.addproperty_list=document.createElement("div"),this.addproperty_list.style.width="295px",this.addproperty_list.style.maxHeight="160px",this.addproperty_list.style.padding="5px 0",this.addproperty_list.style.overflowY="auto",this.addproperty_list.style.overflowX="hidden",this.addproperty_list.style.paddingLeft="5px",this.addproperty_list.setAttribute("class","property-selector"),this.addproperty_add=this.getButton("add","add","add"),this.addproperty_add.classList.add("json-editor-btntype-add"),this.addproperty_input=this.theme.getFormInputField("text"),this.addproperty_input.setAttribute("placeholder","Property name..."),this.addproperty_input.style.width="220px",this.addproperty_input.style.marginBottom="0",this.addproperty_input.style.display="inline-block",this.addproperty_add.addEventListener("click",function(b){if(b.preventDefault(),b.stopPropagation(),a.addproperty_input.value){if(a.editors[a.addproperty_input.value])return void window.alert("there is already a property with that name");a.addObjectProperty(a.addproperty_input.value),a.editors[a.addproperty_input.value]&&a.editors[a.addproperty_input.value].disable(),a.onChange(!0)}}),this.addproperty_holder.appendChild(this.addproperty_list),this.addproperty_holder.appendChild(this.addproperty_input),this.addproperty_holder.appendChild(this.addproperty_add);var c=document.createElement("div");c.style.clear="both",this.addproperty_holder.appendChild(c),document.addEventListener("click",function(a){!this.addproperty_holder.contains(a.target)&&this.adding_property&&(a.preventDefault(),a.stopPropagation(),this.toggleAddProperty())}.bind(this)),this.schema.description&&(this.description=this.theme.getDescription(this.schema.description),this.container.appendChild(this.description)),this.error_holder=document.createElement("div"),this.container.appendChild(this.error_holder),this.editor_holder=this.theme.getIndentedPanel(),this.container.appendChild(this.editor_holder),this.row_container=this.theme.getGridContainer(),b?(this.tabs_holder=this.theme.getTopTabHolder(this.getValidId(this.schema.title)),this.tabPanesContainer=this.theme.getTopTabContentHolder(this.tabs_holder),this.editor_holder.appendChild(this.tabs_holder)):(this.tabs_holder=this.theme.getTabHolder(this.getValidId(this.schema.title)),this.tabPanesContainer=this.theme.getTabContentHolder(this.tabs_holder),this.editor_holder.appendChild(this.row_container)),f(this.editors,function(c,d){var e=a.theme.getTabContent(),f=a.theme.getGridColumn(),g=!(!d.schema||"object"!==d.schema.type&&"array"!==d.schema.type);if(e.isObjOrArray=g,b){if(g){var h=a.theme.getGridContainer();h.appendChild(f),e.appendChild(h),a.tabPanesContainer.appendChild(e),a.row_container=h}else"undefined"==typeof a.row_container_basic&&(a.row_container_basic=a.theme.getGridContainer(),e.appendChild(a.row_container_basic),0==a.tabPanesContainer.childElementCount?a.tabPanesContainer.appendChild(e):a.tabPanesContainer.insertBefore(e,a.tabPanesContainer.childNodes[1])),a.row_container_basic.appendChild(f);a.addRow(d,a.tabs_holder,e),e.id=a.getValidId(d.schema.title)}else a.row_container.appendChild(f);d.setContainer(f),d.build(),d.postBuild()}),this.rows[0]&&g(this.rows[0].tab,"click"),this.title_controls=this.theme.getHeaderButtonHolder(),this.editjson_controls=this.theme.getHeaderButtonHolder(),this.addproperty_controls=this.theme.getHeaderButtonHolder(),this.title.appendChild(this.title_controls),this.title.appendChild(this.editjson_controls),this.title.appendChild(this.addproperty_controls),this.collapsed=!1,this.toggle_button=this.getButton("","collapse",this.translate("button_collapse")),this.toggle_button.classList.add("json-editor-btntype-toggle"),this.title_controls.appendChild(this.toggle_button),this.toggle_button.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.collapsed?(a.editor_holder.style.display="",a.collapsed=!1,a.setButtonText(a.toggle_button,"","collapse",a.translate("button_collapse"))):(a.editor_holder.style.display="none",a.collapsed=!0,a.setButtonText(a.toggle_button,"","expand",a.translate("button_expand")))}),this.options.collapsed&&g(this.toggle_button,"click"),this.schema.options&&"undefined"!=typeof this.schema.options.disable_collapse?this.schema.options.disable_collapse&&(this.toggle_button.style.display="none"):this.jsoneditor.options.disable_collapse&&(this.toggle_button.style.display="none"),this.editjson_button=this.getButton("JSON","edit","Edit JSON"),this.editjson_button.classList.add("json-editor-btntype-editjson"),this.editjson_button.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.toggleEditJSON()}),this.editjson_controls.appendChild(this.editjson_button),this.editjson_controls.appendChild(this.editjson_holder),this.schema.options&&"undefined"!=typeof this.schema.options.disable_edit_json?this.schema.options.disable_edit_json&&(this.editjson_button.style.display="none"):this.jsoneditor.options.disable_edit_json&&(this.editjson_button.style.display="none"),this.addproperty_button=this.getButton("Properties","edit","Object Properties"),this.addproperty_button.classList.add("json-editor-btntype-properties"),this.addproperty_button.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.toggleAddProperty()}),this.addproperty_controls.appendChild(this.addproperty_button),this.addproperty_controls.appendChild(this.addproperty_holder),this.refreshAddProperties()}this.options.table_row?(this.editor_holder=this.container,f(this.property_order,function(b,c){a.editor_holder.appendChild(a.editors[c].container)})):(this.layoutEditors(),this.layoutEditors())},showEditJSON:function(){this.editjson_holder&&(this.hideAddProperty(),this.editjson_holder.style.left=this.editjson_button.offsetLeft+"px",this.editjson_holder.style.top=this.editjson_button.offsetTop+this.editjson_button.offsetHeight+"px",this.editjson_textarea.value=JSON.stringify(this.getValue(),null,2),this.disable(),this.editjson_holder.style.display="",this.editjson_button.disabled=!1,this.editing_json=!0)},hideEditJSON:function(){this.editjson_holder&&this.editing_json&&(this.editjson_holder.style.display="none",this.enable(),this.editing_json=!1)},copyJSON:function(){if(this.editjson_holder){var a=document.createElement("textarea");a.value=this.editjson_textarea.value,a.setAttribute("readonly",""),a.style.position="absolute",a.style.left="-9999px",document.body.appendChild(a),a.select(),document.execCommand("copy"),document.body.removeChild(a)}},saveJSON:function(){if(this.editjson_holder)try{var a=JSON.parse(this.editjson_textarea.value);this.setValue(a),this.hideEditJSON(),this.onChange(!0)}catch(b){throw window.alert("invalid JSON"),b}},toggleEditJSON:function(){this.editing_json?this.hideEditJSON():this.showEditJSON()},insertPropertyControlUsingPropertyOrder:function(a,b,c){var d;this.schema.properties[a]&&(d=this.schema.properties[a].propertyOrder),"number"!=typeof d&&(d=1e3),b.propertyOrder=d;for(var e=0;e=this.schema.maxProperties),this.addproperty_checkboxes&&(this.addproperty_list.innerHTML=""),this.addproperty_checkboxes={};for(a in this.cached_editors)this.cached_editors.hasOwnProperty(a)&&(this.addPropertyCheckbox(a),this.isRequired(this.cached_editors[a])&&a in this.editors&&(this.addproperty_checkboxes[a].disabled=!0),"undefined"!=typeof this.schema.minProperties&&d<=this.schema.minProperties?(this.addproperty_checkboxes[a].disabled=this.addproperty_checkboxes[a].checked,this.addproperty_checkboxes[a].checked||(e=!0)):a in this.editors?(e=!0,c=!0):b||this.schema.properties.hasOwnProperty(a)?(this.addproperty_checkboxes[a].disabled=!1,e=!0):this.addproperty_checkboxes[a].disabled=!0);this.canHaveAdditionalProperties()&&(e=!0);for(a in this.schema.properties)this.schema.properties.hasOwnProperty(a)&&(this.cached_editors[a]||(e=!0,this.addPropertyCheckbox(a)));e?this.canHaveAdditionalProperties()?b?this.addproperty_add.disabled=!1:this.addproperty_add.disabled=!0:(this.addproperty_add.style.display="none",this.addproperty_input.style.display="none"):(this.hideAddProperty(),this.addproperty_controls.style.display="none")},isRequired:function(a){return"boolean"==typeof a.schema.required?a.schema.required:Array.isArray(this.schema.required)?this.schema.required.indexOf(a.key)>-1:!!this.jsoneditor.options.required_by_default},setValue:function(a,b){var c=this;a=a||{},("object"!=typeof a||Array.isArray(a))&&(a={}),f(this.cached_editors,function(d,e){"undefined"!=typeof a[d]?(c.addObjectProperty(d),e.setValue(a[d],b)):b||c.isRequired(e)?e.setValue(e.getDefault(),b):c.removeObjectProperty(d)}),f(a,function(a,d){c.cached_editors[a]||(c.addObjectProperty(a),c.editors[a]&&c.editors[a].setValue(d,b))}),this.refreshValue(),this.layoutEditors(),this.onChange()},showValidationErrors:function(a){var b=this,c=[],d=[];if(f(a,function(a,e){e.path===b.path?c.push(e):d.push(e)}),this.error_holder)if(c.length){this.error_holder.innerHTML="",this.error_holder.style.display="",f(c,function(a,c){b.error_holder.appendChild(b.theme.getErrorMessage(c.message))})}else this.error_holder.style.display="none";this.options.table_row&&(c.length?this.theme.addTableRowError(this.container):this.theme.removeTableRowError(this.container)),f(this.editors,function(a,b){b.showValidationErrors(d)})}}),h.defaults.editors.array=h.AbstractEditor.extend({askConfirmation:function(){return this.jsoneditor.options.prompt_before_delete!==!0||confirm("Are you sure you want to remove this node?")!==!1},getDefault:function(){return this.schema["default"]||[]},register:function(){if(this._super(),this.rows)for(var a=0;a=this.schema.items.length?this.schema.additionalItems===!0?{}:this.schema.additionalItems?e({},this.schema.additionalItems):void 0:e({},this.schema.items[a]):this.schema.items?e({},this.schema.items):{}},getItemInfo:function(a){var b=this.getItemSchema(a);this.item_info=this.item_info||{};var c=JSON.stringify(b);return"undefined"!=typeof this.item_info[c]?this.item_info[c]:(b=this.jsoneditor.expandRefs(b),this.item_info[c]={title:b.title||"item","default":b["default"],width:12,child_editors:b.properties||b.items},this.item_info[c])},getElementEditor:function(a){var b=this.getItemInfo(a),c=this.getItemSchema(a);c=this.jsoneditor.expandRefs(c),c.title=b.title+" "+(a+1);var d,e=this.jsoneditor.getEditorClass(c);this.tabs_holder?(d="tabs-top"===this.schema.format?this.theme.getTopTabContent():this.theme.getTabContent(),d.id=this.path+"."+a):d=b.child_editors?this.theme.getChildEditorHolder():this.theme.getIndentedPanel(),this.row_holder.appendChild(d);var f=this.jsoneditor.createEditor(e,{jsoneditor:this.jsoneditor,schema:c,container:d,path:this.path+"."+a,parent:this,required:!0});return f.preBuild(),f.build(),f.postBuild(),f.title_controls||(f.array_controls=this.theme.getButtonHolder(),d.appendChild(f.array_controls)),f},destroy:function(){this.empty(!0),this.title&&this.title.parentNode&&this.title.parentNode.removeChild(this.title),this.description&&this.description.parentNode&&this.description.parentNode.removeChild(this.description),this.row_holder&&this.row_holder.parentNode&&this.row_holder.parentNode.removeChild(this.row_holder),this.controls&&this.controls.parentNode&&this.controls.parentNode.removeChild(this.controls),this.panel&&this.panel.parentNode&&this.panel.parentNode.removeChild(this.panel),this.rows=this.row_cache=this.title=this.description=this.row_holder=this.panel=this.controls=null,this._super()},empty:function(a){if(this.rows){var b=this;f(this.rows,function(c,d){a&&(d.tab&&d.tab.parentNode&&d.tab.parentNode.removeChild(d.tab),b.destroyRow(d,!0),b.row_cache[c]=null),b.rows[c]=null}),b.rows=[],a&&(b.row_cache=[])}},destroyRow:function(a,b){var c=a.container;b?(a.destroy(),c.parentNode&&c.parentNode.removeChild(c),a.tab&&a.tab.parentNode&&a.tab.parentNode.removeChild(a.tab)):(a.tab&&(a.tab.style.display="none"),c.style.display="none",a.unregister())},getMax:function(){return Array.isArray(this.schema.items)&&this.schema.additionalItems===!1?Math.min(this.schema.items.length,this.schema.maxItems||1/0):this.schema.maxItems||1/0},refreshTabs:function(a){var b=this;f(this.rows,function(c,d){d.tab&&(a?d.tab_text.textContent=d.getHeaderText():d.tab===b.active_tab?b.theme.markTabActive(d):b.theme.markTabInactive(d))})},setValue:function(a,b){a=a||[],Array.isArray(a)||(a=[a]);var c=JSON.stringify(a);if(c!==this.serialized){if(this.schema.minItems)for(;a.lengththis.getMax()&&(a=a.slice(0,this.getMax()));var d=this;f(a,function(a,c){d.rows[a]?d.rows[a].setValue(c,b):d.row_cache[a]?(d.rows[a]=d.row_cache[a],d.rows[a].setValue(c,b),d.rows[a].container.style.display="",d.rows[a].tab&&(d.rows[a].tab.style.display=""),d.rows[a].register()):d.addRow(c,b)});for(var e=a.length;e=this.rows.length;f(this.rows,function(a,c){c.movedown_button&&(a===b.rows.length-1?c.movedown_button.style.display="none":c.movedown_button.style.display=""),c.delete_button&&(d?c.delete_button.style.display="none":c.delete_button.style.display=""),b.value[a]=c.getValue()});var e=!1;this.value.length?1===this.value.length?(this.remove_all_rows_button.style.display="none",d||this.hide_delete_last_row_buttons?this.delete_last_row_button.style.display="none":(this.delete_last_row_button.style.display="",e=!0)):(d||this.hide_delete_last_row_buttons?this.delete_last_row_button.style.display="none":(this.delete_last_row_button.style.display="",e=!0),d||this.hide_delete_all_rows_buttons?this.remove_all_rows_button.style.display="none":(this.remove_all_rows_button.style.display="",e=!0)):(this.delete_last_row_button.style.display="none",this.remove_all_rows_button.style.display="none"),this.getMax()&&this.getMax()<=this.rows.length||this.hide_add_button?this.add_row_button.style.display="none":(this.add_row_button.style.display="",e=!0),!this.collapsed&&e?this.controls.style.display="inline-block":this.controls.style.display="none"}},addRow:function(a,b){var c=this,d=this.rows.length;c.rows[d]=this.getElementEditor(d),c.row_cache[d]=c.rows[d],c.tabs_holder&&(c.rows[d].tab_text=document.createElement("span"),c.rows[d].tab_text.textContent=c.rows[d].getHeaderText(),"tabs-top"===c.schema.format?(c.rows[d].tab=c.theme.getTopTab(c.rows[d].tab_text,this.getValidId(c.rows[d].path)),c.theme.addTopTab(c.tabs_holder,c.rows[d].tab)):(c.rows[d].tab=c.theme.getTab(c.rows[d].tab_text,this.getValidId(c.rows[d].path)),c.theme.addTab(c.tabs_holder,c.rows[d].tab)),c.rows[d].tab.addEventListener("click",function(a){c.active_tab=c.rows[d].tab,c.refreshTabs(),a.preventDefault(),a.stopPropagation()}));var e=c.rows[d].title_controls||c.rows[d].array_controls;c.hide_delete_buttons||(c.rows[d].delete_button=this.getButton(c.getItemTitle(),"delete",this.translate("button_delete_row_title",[c.getItemTitle()])),c.rows[d].delete_button.classList.add("delete","json-editor-btntype-delete"),c.rows[d].delete_button.setAttribute("data-i",d),c.rows[d].delete_button.addEventListener("click",function(a){if(a.preventDefault(),a.stopPropagation(),!c.askConfirmation())return!1;var b=1*this.getAttribute("data-i"),d=c.getValue(),e=[],g=null;f(d,function(a,c){a!==b&&e.push(c)}),c.empty(!0),c.setValue(e),c.rows[b]?g=c.rows[b].tab:c.rows[b-1]&&(g=c.rows[b-1].tab),g&&(c.active_tab=g,c.refreshTabs()),c.onChange(!0),c.jsoneditor.trigger("deleteRow")}),e&&e.appendChild(c.rows[d].delete_button)),c.show_copy_button&&(c.rows[d].copy_button=this.getButton(c.getItemTitle(),"copy","Copy "+c.getItemTitle()),c.rows[d].copy_button.classList.add("copy","json-editor-btntype-copy"),c.rows[d].copy_button.setAttribute("data-i",d),c.rows[d].copy_button.addEventListener("click",function(a){var b=c.getValue();a.preventDefault(),a.stopPropagation();var d=1*this.getAttribute("data-i");f(b,function(a,c){a===d&&b.push(c)}),c.setValue(b),c.refreshValue(!0),c.onChange(!0)}),e.appendChild(c.rows[d].copy_button)),d&&!c.hide_move_buttons&&(c.rows[d].moveup_button=this.getButton("","moveup",this.translate("button_move_up_title")),c.rows[d].moveup_button.classList.add("moveup","json-editor-btntype-move"),c.rows[d].moveup_button.setAttribute("data-i",d),c.rows[d].moveup_button.addEventListener("click",function(a){a.preventDefault(),a.stopPropagation();var b=1*this.getAttribute("data-i");if(!(b<=0)){var d=c.getValue(),e=d[b-1];d[b-1]=d[b],d[b]=e,c.setValue(d),c.active_tab=c.rows[b-1].tab,c.refreshTabs(),c.onChange(!0),c.jsoneditor.trigger("moveRow")}}),e&&e.appendChild(c.rows[d].moveup_button)),c.hide_move_buttons||(c.rows[d].movedown_button=this.getButton("","movedown",this.translate("button_move_down_title")),c.rows[d].movedown_button.classList.add("movedown","json-editor-btntype-move"),c.rows[d].movedown_button.setAttribute("data-i",d),c.rows[d].movedown_button.addEventListener("click",function(a){a.preventDefault(),a.stopPropagation();var b=1*this.getAttribute("data-i"),d=c.getValue();if(!(b>=d.length-1)){var e=d[b+1];d[b+1]=d[b],d[b]=e,c.setValue(d),c.active_tab=c.rows[b+1].tab,c.refreshTabs(),c.onChange(!0),c.jsoneditor.trigger("moveRow")}}),e&&e.appendChild(c.rows[d].movedown_button)),a&&c.rows[d].setValue(a,b),c.refreshTabs()},addControls:function(){var a=this;this.collapsed=!1,this.toggle_button=this.getButton("","collapse",this.translate("button_collapse")),this.toggle_button.classList.add("json-editor-btntype-toggle"),this.title_controls.appendChild(this.toggle_button);var b=a.row_holder.style.display,c=a.controls.style.display;this.toggle_button.addEventListener("click",function(d){d.preventDefault(),d.stopPropagation(),a.collapsed?(a.collapsed=!1,a.panel&&(a.panel.style.display=""),a.row_holder.style.display=b,a.tabs_holder&&(a.tabs_holder.style.display=""),a.controls.style.display=c,a.setButtonText(this,"","collapse",a.translate("button_collapse"))):(a.collapsed=!0,a.row_holder.style.display="none",a.tabs_holder&&(a.tabs_holder.style.display="none"),a.controls.style.display="none",a.panel&&(a.panel.style.display="none"),a.setButtonText(this,"","expand",a.translate("button_expand")))}),this.options.collapsed&&g(this.toggle_button,"click"),this.schema.options&&"undefined"!=typeof this.schema.options.disable_collapse?this.schema.options.disable_collapse&&(this.toggle_button.style.display="none"):this.jsoneditor.options.disable_collapse&&(this.toggle_button.style.display="none"),this.add_row_button=this.getButton(this.getItemTitle(),"add",this.translate("button_add_row_title",[this.getItemTitle()])),this.add_row_button.classList.add("json-editor-btntype-add"),this.add_row_button.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation();var c=a.rows.length;a.row_cache[c]?(a.rows[c]=a.row_cache[c],a.rows[c].setValue(a.rows[c].getDefault(),!0),a.rows[c].container.style.display="",a.rows[c].tab&&(a.rows[c].tab.style.display=""),a.rows[c].register()):a.addRow(),a.active_tab=a.rows[c].tab,a.refreshTabs(),a.refreshValue(),a.onChange(!0),a.jsoneditor.trigger("addRow")}),a.controls.appendChild(this.add_row_button),this.delete_last_row_button=this.getButton(this.translate("button_delete_last",[this.getItemTitle()]),"delete",this.translate("button_delete_last_title",[this.getItemTitle()])),this.delete_last_row_button.classList.add("json-editor-btntype-deletelast"),this.delete_last_row_button.addEventListener("click",function(b){if(b.preventDefault(),b.stopPropagation(),!a.askConfirmation())return!1;var c=a.getValue(),d=null;c.pop(),a.empty(!0),a.setValue(c),a.rows[a.rows.length-1]&&(d=a.rows[a.rows.length-1].tab),d&&(a.active_tab=d,a.refreshTabs()),a.onChange(!0),a.jsoneditor.trigger("deleteRow")}),a.controls.appendChild(this.delete_last_row_button),this.remove_all_rows_button=this.getButton(this.translate("button_delete_all"),"delete",this.translate("button_delete_all_title")),this.remove_all_rows_button.classList.add("json-editor-btntype-deleteall"),this.remove_all_rows_button.addEventListener("click",function(b){return b.preventDefault(),b.stopPropagation(),!!a.askConfirmation()&&(a.empty(!0),a.setValue([]),a.onChange(!0),void a.jsoneditor.trigger("deleteAllRows"))}),a.controls.appendChild(this.remove_all_rows_button),a.tabs&&(this.add_row_button.style.width="100%",this.add_row_button.style.textAlign="left",this.add_row_button.style.marginBottom="3px",this.delete_last_row_button.style.width="100%",this.delete_last_row_button.style.textAlign="left",this.delete_last_row_button.style.marginBottom="3px",this.remove_all_rows_button.style.width="100%",this.remove_all_rows_button.style.textAlign="left",this.remove_all_rows_button.style.marginBottom="3px")},showValidationErrors:function(a){var b=this,c=[],d=[];if(f(a,function(a,e){e.path===b.path?c.push(e):d.push(e)}),this.error_holder)if(c.length){this.error_holder.innerHTML="",this.error_holder.style.display="",f(c,function(a,c){b.error_holder.appendChild(b.theme.getErrorMessage(c.message))})}else this.error_holder.style.display="none";f(this.rows,function(a,b){b.showValidationErrors(d)})}}),h.defaults.editors.table=h.defaults.editors.array.extend({register:function(){if(this._super(),this.rows)for(var a=0;athis.schema.maxItems&&(a=a.slice(0,this.schema.maxItems));var c=JSON.stringify(a);if(c!==this.serialized){var d=!1,e=this;f(a,function(a,b){e.rows[a]?e.rows[a].setValue(b):(e.addRow(b),d=!0)});for(var g=a.length;g=this.rows.length,c=!1;f(this.rows,function(d,e){e.movedown_button&&(d===a.rows.length-1?e.movedown_button.style.display="none":(c=!0,e.movedown_button.style.display="")),e.delete_button&&(b?e.delete_button.style.display="none":(c=!0,e.delete_button.style.display="")),e.moveup_button&&(c=!0)}),f(this.rows,function(a,b){c?b.controls_cell.style.display="":b.controls_cell.style.display="none"}),c?this.controls_header_cell.style.display="":this.controls_header_cell.style.display="none";var d=!1;this.value.length?1===this.value.length?(this.table.style.display="",this.remove_all_rows_button.style.display="none",b||this.hide_delete_last_row_buttons?this.delete_last_row_button.style.display="none":(this.delete_last_row_button.style.display="",d=!0)):(this.table.style.display="",b||this.hide_delete_last_row_buttons?this.delete_last_row_button.style.display="none":(this.delete_last_row_button.style.display="",d=!0),b||this.hide_delete_all_rows_buttons?this.remove_all_rows_button.style.display="none":(this.remove_all_rows_button.style.display="",d=!0)):(this.delete_last_row_button.style.display="none",this.remove_all_rows_button.style.display="none",this.table.style.display="none"),this.schema.maxItems&&this.schema.maxItems<=this.rows.length||this.hide_add_button?this.add_row_button.style.display="none":(this.add_row_button.style.display="",d=!0),d?this.controls.style.display="":this.controls.style.display="none"},refreshValue:function(){var a=this;this.value=[],f(this.rows,function(b,c){a.value[b]=c.getValue()}),this.serialized=JSON.stringify(this.value)},addRow:function(a){var b=this,c=this.rows.length;b.rows[c]=this.getElementEditor(c);var d=b.rows[c].table_controls;this.hide_delete_buttons||(b.rows[c].delete_button=this.getButton("","delete",this.translate("button_delete_row_title_short")),b.rows[c].delete_button.classList.add("delete","json-editor-btntype-delete"),b.rows[c].delete_button.setAttribute("data-i",c),b.rows[c].delete_button.addEventListener("click",function(a){if(a.preventDefault(),a.stopPropagation(),!b.askConfirmation())return!1;var c=1*this.getAttribute("data-i"),d=b.getValue(),e=[];f(d,function(a,b){a!==c&&e.push(b)}),b.setValue(e),b.onChange(!0)}),d.appendChild(b.rows[c].delete_button)),c&&!this.hide_move_buttons&&(b.rows[c].moveup_button=this.getButton("","moveup",this.translate("button_move_up_title")),b.rows[c].moveup_button.classList.add("moveup","json-editor-btntype-move"),b.rows[c].moveup_button.setAttribute("data-i",c),b.rows[c].moveup_button.addEventListener("click",function(a){a.preventDefault(),a.stopPropagation();var c=1*this.getAttribute("data-i");if(!(c<=0)){var d=b.getValue(),e=d[c-1];d[c-1]=d[c],d[c]=e,b.setValue(d),b.onChange(!0)}}),d.appendChild(b.rows[c].moveup_button)),this.hide_move_buttons||(b.rows[c].movedown_button=this.getButton("","movedown",this.translate("button_move_down_title")),b.rows[c].movedown_button.classList.add("movedown","json-editor-btntype-move"),b.rows[c].movedown_button.setAttribute("data-i",c),b.rows[c].movedown_button.addEventListener("click",function(a){a.preventDefault(),a.stopPropagation();var c=1*this.getAttribute("data-i"),d=b.getValue();if(!(c>=d.length-1)){var e=d[c+1];d[c+1]=d[c],d[c]=e,b.setValue(d),b.onChange(!0)}}),d.appendChild(b.rows[c].movedown_button)),a&&b.rows[c].setValue(a)},addControls:function(){var a=this;this.collapsed=!1,this.toggle_button=this.getButton("","collapse",this.translate("button_collapse")),this.toggle_button.classList.add("json-editor-btntype-toggle"),this.title_controls&&(this.title_controls.appendChild(this.toggle_button),this.toggle_button.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.collapsed?(a.collapsed=!1,a.panel.style.display="",a.setButtonText(this,"","collapse",a.translate("button_collapse"))):(a.collapsed=!0,a.panel.style.display="none",a.setButtonText(this,"","expand",a.translate("button_expand")))}),this.options.collapsed&&g(this.toggle_button,"click"),this.schema.options&&"undefined"!=typeof this.schema.options.disable_collapse?this.schema.options.disable_collapse&&(this.toggle_button.style.display="none"):this.jsoneditor.options.disable_collapse&&(this.toggle_button.style.display="none")),this.add_row_button=this.getButton(this.getItemTitle(),"add",this.translate("button_add_row_title",[this.getItemTitle()])),this.add_row_button.classList.add("json-editor-btntype-add"),this.add_row_button.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.addRow(),a.refreshValue(),a.refreshRowButtons(),a.onChange(!0)}),a.controls.appendChild(this.add_row_button),this.delete_last_row_button=this.getButton(this.translate("button_delete_last",[this.getItemTitle()]),"delete",this.translate("button_delete_last_title",[this.getItemTitle()])),this.delete_last_row_button.classList.add("json-editor-btntype-deletelast"),this.delete_last_row_button.addEventListener("click",function(b){if(b.preventDefault(),b.stopPropagation(),!a.askConfirmation())return!1;var c=a.getValue();c.pop(),a.setValue(c),a.onChange(!0)}),a.controls.appendChild(this.delete_last_row_button),this.remove_all_rows_button=this.getButton(this.translate("button_delete_all"),"delete",this.translate("button_delete_all_title")), -this.remove_all_rows_button.classList.add("json-editor-btntype-deleteall"),this.remove_all_rows_button.addEventListener("click",function(b){return b.preventDefault(),b.stopPropagation(),!!a.askConfirmation()&&(a.setValue([]),void a.onChange(!0))}),a.controls.appendChild(this.remove_all_rows_button)}}),h.defaults.editors.multiple=h.AbstractEditor.extend({register:function(){if(this.editors){for(var a=0;anull";if("object"==typeof a){var c="";return f(a,function(d,e){var f=b.getHTML(e);Array.isArray(a)||(f="
"+d+": "+f+"
"),c+="
  • "+f+"
  • "}),c=Array.isArray(a)?"
      "+c+"
    ":"
      "+c+"
    "}return"boolean"==typeof a?a?"true":"false":"string"==typeof a?a.replace(/&/g,"&").replace(//g,">"):a},setValue:function(a){this.value!==a&&(this.value=a,this.refreshValue(),this.onChange())},destroy:function(){this.display_area&&this.display_area.parentNode&&this.display_area.parentNode.removeChild(this.display_area),this.title&&this.title.parentNode&&this.title.parentNode.removeChild(this.title),this.switcher&&this.switcher.parentNode&&this.switcher.parentNode.removeChild(this.switcher),this._super()}}),h.defaults.editors.select=h.AbstractEditor.extend({setValue:function(a,b){a=this.typecast(a||"");var c=a;this.enum_values.indexOf(c)<0&&(c=this.enum_values[0]),this.value!==c&&(b?this.is_dirty=!1:"change"===this.jsoneditor.options.show_errors&&(this.is_dirty=!0),this.input.value=this.enum_options[this.enum_values.indexOf(c)],this.select2&&(this.select2v4?this.select2.val(this.input.value).trigger("change"):this.select2.select2("val",this.input.value)),this.value=c,this.onChange(),this.change())},register:function(){this._super(),this.input&&this.input.setAttribute("name",this.formname)},unregister:function(){this._super(),this.input&&this.input.removeAttribute("name")},getNumColumns:function(){if(!this.enum_options)return 3;for(var a=this.getTitle().length,b=0;b2||this.enum_options.length&&this.enumSource)){var a=e({},h.plugins.select2);this.schema.options&&this.schema.options.select2_options&&(a=e(a,this.schema.options.select2_options)),this.select2=window.jQuery(this.input).select2(a),this.select2v4=this.select2.select2.hasOwnProperty("amd");var b=this;this.select2.on("select2-blur",function(){b.select2v4?b.input.value=b.select2.val():b.input.value=b.select2.select2("val"),b.onInputChange()}),this.select2.on("change",function(){b.select2v4?b.input.value=b.select2.val():b.input.value=b.select2.select2("val"),b.onInputChange()})}else this.select2=null},postBuild:function(){this._super(),this.theme.afterInputReady(this.input),this.setupSelect2()},onWatchedFieldChange:function(){var a,b;if(this.enumSource){a=this.getWatchedFieldValues();for(var c=[],d=[],e=0;e=2||this.enum_options.length&&this.enumSource)){var c=e({},h.plugins.selectize);this.schema.options&&this.schema.options.selectize_options&&(c=e(c,this.schema.options.selectize_options)),this.selectize=window.jQuery(this.input).selectize(e(c,{create:c.create===b||c.create,onChange:function(){a.onInputChange()}}))}else this.selectize=null},postBuild:function(){this._super(),this.theme.afterInputReady(this.input),this.setupSelectize()},onWatchedFieldChange:function(){var a,c;if(this.enumSource){a=this.getWatchedFieldValues();for(var d=[],e=[],f=0;f1&&a.schema.options&&a.schema.options.multiple&&1==a.schema.options.multiple&&a.parent&&"object"==a.parent.schema.type&&a.parent.parent&&"array"==a.parent.parent.schema.type){a.arrayEditor=a.jsoneditor.getEditor(a.parent.parent.path),a.value=a.arrayEditor.getValue(),a.total=this.files.length,a.current_item_index=parseInt(a.parent.key),a.count=a.current_item_index;for(var c=0;cType: "+a+", Size: "+Math.floor((this.value.length-this.value.split(",")[0].length-1)/1.33333)+" bytes","image"===a.substr(0,5)){this.preview.innerHTML+="
    ";var b=document.createElement("img");b.style.maxWidth="100%",b.style.maxHeight="100px",b.src=this.value,this.preview.appendChild(b)}}else this.preview.innerHTML="Invalid data URI"}},enable:function(){this.always_disabled||(this.uploader&&(this.uploader.disabled=!1),this._super())},disable:function(a){a&&(this.always_disabled=!0),this.uploader&&(this.uploader.disabled=!0),this._super()},setValue:function(a){this.value!==a&&(this.value=a,this.input.value=this.value,this.refreshPreview(),this.onChange())},destroy:function(){this.preview&&this.preview.parentNode&&this.preview.parentNode.removeChild(this.preview),this.title&&this.title.parentNode&&this.title.parentNode.removeChild(this.title),this.input&&this.input.parentNode&&this.input.parentNode.removeChild(this.input),this.uploader&&this.uploader.parentNode&&this.uploader.parentNode.removeChild(this.uploader),this._super()}}),h.defaults.editors.upload=h.AbstractEditor.extend({getNumColumns:function(){return 4},build:function(){var a=this;if(this.title=this.header=this.label=this.theme.getFormInputLabel(this.getTitle()),this.input=this.theme.getFormInputField("hidden"),this.container.appendChild(this.input),!this.schema.readOnly&&!this.schema.readonly){if(!this.jsoneditor.options.upload)throw"Upload handler required for upload editor";this.uploader=this.theme.getFormInputField("file"),this.uploader.addEventListener("change",function(b){if(b.preventDefault(),b.stopPropagation(),this.files&&this.files.length){var c=new FileReader;c.onload=function(b){a.preview_value=b.target.result,a.refreshPreview(),a.onChange(!0),c=null},c.readAsDataURL(this.files[0])}})}var b=this.schema.description;b||(b=""),this.preview=this.theme.getFormInputDescription(b),this.container.appendChild(this.preview),this.control=this.theme.getFormControl(this.label,this.uploader||this.input,this.preview),this.container.appendChild(this.control),window.requestAnimationFrame(function(){if(a.value){var b=document.createElement("img");b.style.maxWidth="100%",b.style.maxHeight="100px",b.onload=function(c){a.preview.appendChild(b)},b.onerror=function(a){console.error("upload error",a)},b.src=a.container.querySelector("a").href}})},refreshPreview:function(){if(this.last_preview!==this.preview_value&&(this.last_preview=this.preview_value,this.preview.innerHTML="",this.preview_value)){var a=this,b=this.preview_value.match(/^data:([^;,]+)[;,]/);b&&(b=b[1]),b||(b="unknown");var c=this.uploader.files[0];if(this.preview.innerHTML="Type: "+b+", Size: "+c.size+" bytes","image"===b.substr(0,5)){this.preview.innerHTML+="
    ";var d=document.createElement("img");d.style.maxWidth="100%",d.style.maxHeight="100px",d.src=this.preview_value,this.preview.appendChild(d)}this.preview.innerHTML+="
    ";var e=this.getButton("Upload","upload","Upload");this.preview.appendChild(e),e.addEventListener("click",function(b){b.preventDefault(),e.setAttribute("disabled","disabled"),a.theme.removeInputError(a.uploader),a.theme.getProgressBar&&(a.progressBar=a.theme.getProgressBar(),a.preview.appendChild(a.progressBar)),a.jsoneditor.options.upload(a.path,c,{success:function(b){a.setValue(b),a.parent?a.parent.onChildEditorChange(a):a.jsoneditor.onChange(), -a.progressBar&&a.preview.removeChild(a.progressBar),e.removeAttribute("disabled")},failure:function(b){a.theme.addInputError(a.uploader,b),a.progressBar&&a.preview.removeChild(a.progressBar),e.removeAttribute("disabled")},updateProgress:function(b){a.progressBar&&(b?a.theme.updateProgressBar(a.progressBar,b):a.theme.updateProgressBarUnknown(a.progressBar))}})}),(this.jsoneditor.options.auto_upload||this.schema.options.auto_upload)&&(e.dispatchEvent(new MouseEvent("click")),this.preview.removeChild(e))}},enable:function(){this.always_disabled||(this.uploader&&(this.uploader.disabled=!1),this._super())},disable:function(a){a&&(this.always_disabled=!0),this.uploader&&(this.uploader.disabled=!0),this._super()},setValue:function(a){this.value!==a&&(this.value=a,this.input.value=this.value,this.onChange())},destroy:function(){this.preview&&this.preview.parentNode&&this.preview.parentNode.removeChild(this.preview),this.title&&this.title.parentNode&&this.title.parentNode.removeChild(this.title),this.input&&this.input.parentNode&&this.input.parentNode.removeChild(this.input),this.uploader&&this.uploader.parentNode&&this.uploader.parentNode.removeChild(this.uploader),this._super()}}),h.defaults.editors.checkbox=h.AbstractEditor.extend({setValue:function(a,b){this.value=!!a,this.input.checked=this.value,this.onChange()},register:function(){this._super(),this.input&&this.input.setAttribute("name",this.formname)},unregister:function(){this._super(),this.input&&this.input.removeAttribute("name")},getNumColumns:function(){return Math.min(12,Math.max(this.getTitle().length/7,2))},build:function(){var a=this;this.options.compact||(this.label=this.header=this.theme.getCheckboxLabel(this.getTitle())),this.schema.description&&(this.description=this.theme.getFormInputDescription(this.schema.description)),this.options.infoText&&(this.infoButton=this.theme.getInfoButton(this.options.infoText)),this.options.compact&&this.container.classList.add("compact"),this.input=this.theme.getCheckbox(),this.control=this.theme.getFormControl(this.label,this.input,this.description,this.infoButton),(this.schema.readOnly||this.schema.readonly)&&(this.always_disabled=!0,this.input.disabled=!0),this.input.addEventListener("change",function(b){b.preventDefault(),b.stopPropagation(),a.value=this.checked,a.onChange(!0)}),this.container.appendChild(this.control)},enable:function(){this.always_disabled||(this.input.disabled=!1,this._super())},disable:function(a){a&&(this.always_disabled=!0),this.input.disabled=!0,this._super()},destroy:function(){this.label&&this.label.parentNode&&this.label.parentNode.removeChild(this.label),this.description&&this.description.parentNode&&this.description.parentNode.removeChild(this.description),this.input&&this.input.parentNode&&this.input.parentNode.removeChild(this.input),this._super()},showValidationErrors:function(a){var b=this;if("always"===this.jsoneditor.options.show_errors);else if(!this.is_dirty&&this.previous_error_setting===this.jsoneditor.options.show_errors)return;this.previous_error_setting=this.jsoneditor.options.show_errors;var c=[];f(a,function(a,d){d.path===b.path&&c.push(d.message)}),this.input.controlgroup=this.control,c.length?this.theme.addInputError(this.input,c.join(". ")+"."):this.theme.removeInputError(this.input)}}),h.defaults.editors.arraySelectize=h.AbstractEditor.extend({build:function(){this.title=this.theme.getFormInputLabel(this.getTitle()),this.title_controls=this.theme.getHeaderButtonHolder(),this.title.appendChild(this.title_controls),this.error_holder=document.createElement("div"),this.schema.description&&(this.description=this.theme.getDescription(this.schema.description)),this.input=document.createElement("select"),this.input.setAttribute("multiple","multiple");var a=this.theme.getFormControl(this.title,this.input,this.description);this.container.appendChild(a),this.container.appendChild(this.error_holder),window.jQuery(this.input).selectize({delimiter:!1,createOnBlur:!0,create:!0})},postBuild:function(){var a=this;this.input.selectize.on("change",function(b){a.refreshValue(),a.onChange(!0)})},destroy:function(){this.empty(!0),this.title&&this.title.parentNode&&this.title.parentNode.removeChild(this.title),this.description&&this.description.parentNode&&this.description.parentNode.removeChild(this.description),this.input&&this.input.parentNode&&this.input.parentNode.removeChild(this.input),this._super()},empty:function(a){},setValue:function(a,b){var c=this;a=a||[],Array.isArray(a)||(a=[a]),this.input.selectize.clearOptions(),this.input.selectize.clear(!0),a.forEach(function(a){c.input.selectize.addOption({text:a,value:a})}),this.input.selectize.setValue(a),this.refreshValue(b)},refreshValue:function(a){this.value=this.input.selectize.getValue()},showValidationErrors:function(a){var b=this,c=[],d=[];if(f(a,function(a,e){e.path===b.path?c.push(e):d.push(e)}),this.error_holder)if(c.length){this.error_holder.innerHTML="",this.error_holder.style.display="",f(c,function(a,c){b.error_holder.appendChild(b.theme.getErrorMessage(c.message))})}else this.error_holder.style.display="none"}}),h.defaults.editors.starrating=h.defaults.editors.string.extend({build:function(){var a=this;this.options.compact||(this.header=this.label=this.theme.getFormInputLabel(this.getTitle())),this.schema.description&&(this.description=this.theme.getFormInputDescription(this.schema.description)),this.options.infoText&&(this.infoButton=this.theme.getInfoButton(this.options.infoText)),this.options.compact&&this.container.classList.add("compact"),this.ratingContainer=document.createElement("div"),this.ratingContainer.classList.add("starrating"),this.enum_values=this.schema["enum"],this.radioGroup=[];for(var b=function(b){b.preventDefault(),b.stopPropagation(),a.setValue(this.value),a.onChange(!0)},c=this.enum_values.length-1;c>-1;c--){var d=this.key+"-"+c,e=this.theme.getFormInputField("radio");e.name=this.formname+"[starrating]",e.value=this.enum_values[c],e.id=d,e.addEventListener("change",b,!1),this.radioGroup.push(e);var f=document.createElement("label");f.htmlFor=d,f.title=this.enum_values[c],this.options.displayValue&&f.classList.add("starrating-display-enabled"),this.ratingContainer.appendChild(e),this.ratingContainer.appendChild(f)}if(this.options.displayValue&&(this.displayRating=document.createElement("div"),this.displayRating.classList.add("starrating-display"),this.displayRating.innerText=this.enum_values[0],this.ratingContainer.appendChild(this.displayRating)),this.schema.readOnly||this.schema.readonly){this.always_disabled=!0;for(var g=0;c0){var d=new Date(1e3*a),e=d.getFullYear(),f=this.zeroPad(d.getMonth()+1),g=this.zeroPad(d.getDate()),h=this.zeroPad(d.getHours()),i=this.zeroPad(d.getMinutes()),j=this.zeroPad(d.getSeconds()),k=[e,f,g].join("-"),l=[h,i,j].join(":"),m=k+" "+l;"date"==this.schema.format?m=k:"time"==this.schema.format&&(m=l),this.input.value=m,this.flatpickr&&this.flatpickr.setDate(m)}},destroy:function(){this.flatpickr&&this.flatpickr.destroy(),this.flatpickr=null,this._super()},zeroPad:function(a){return("0"+a).slice(-2)}}),h.defaults.editors.signature=h.defaults.editors.string.extend({build:function(){var a=this;this.options.compact||(this.header=this.label=this.theme.getFormInputLabel(this.getTitle())),this.schema.description&&(this.description=this.theme.getFormInputDescription(this.schema.description));var b=this.formname.replace(/\W/g,"");if("function"==typeof SignaturePad){var c="json-editor-style-signature";document.getElementById(c);this.input=this.theme.getFormInputField("hidden"),this.container.appendChild(this.input);var d=document.createElement("div");d.classList.add("signature-container");var e=document.createElement("canvas");e.setAttribute("name",b),e.classList.add("signature"),d.appendChild(e),a.signaturePad=new window.SignaturePad(e,{onEnd:function(){a.signaturePad.isEmpty()?a.input.value="":a.input.value=a.signaturePad.toDataURL(),a.is_dirty=!0,a.refreshValue(),a.watch_listener(),a.jsoneditor.notifyWatchers(a.path),a.parent?a.parent.onChildEditorChange(a):a.jsoneditor.onChange()}});var g=document.createElement("div"),h=document.createElement("button");h.classList.add("tiny","button"),h.innerHTML="Clear signature",g.appendChild(h),d.appendChild(g),this.options.compact&&this.container.setAttribute("class",this.container.getAttribute("class")+" compact"),(this.schema.readOnly||this.schema.readonly)&&(this.always_disabled=!0,f(this.inputs,function(a,b){e.setAttribute("readOnly","readOnly"),b.disabled=!0})),h.addEventListener("click",function(b){b.preventDefault(),b.stopPropagation(),a.signaturePad.clear(),a.signaturePad.strokeEnd()}),this.control=this.theme.getFormControl(this.label,d,this.description),this.container.appendChild(this.control),this.refreshValue(),e.width=d.offsetWidth,a.options&&a.options.canvas_height?e.height=a.options.canvas_height:e.height="300"}else{var i=document.createElement("p");i.innerHTML="Signature pad is not available, please include SignaturePad from https://github.com/szimek/signature_pad",this.container.appendChild(i)}},setValue:function(a){var b=this;if("function"==typeof SignaturePad){var c=(this.formname.replace(/\W/g,""),this.sanitize(a));if(this.value===c)return;return b.value=c,b.input.value=b.value,b.signaturePad.clear(),a&&""!=a&&b.signaturePad.fromDataURL(a),b.watch_listener(),b.jsoneditor.notifyWatchers(b.path),!1}},destroy:function(){var a=this;this.formname.replace(/\W/g,"");a.signaturePad.off(),delete a.signaturePad}});var i=function(){var a=document.documentElement;return a.matches?"matches":a.webkitMatchesSelector?"webkitMatchesSelector":a.mozMatchesSelector?"mozMatchesSelector":a.msMatchesSelector?"msMatchesSelector":a.oMatchesSelector?"oMatchesSelector":void 0}();return h.AbstractTheme=c.extend({getContainer:function(){return document.createElement("div")},getFloatRightLinkHolder:function(){var a=document.createElement("div");return a.style=a.style||{},a.style.cssFloat="right",a.style.marginLeft="10px",a},getModal:function(){var a=document.createElement("div");return a.style.backgroundColor="white",a.style.border="1px solid black",a.style.boxShadow="3px 3px black",a.style.position="absolute",a.style.zIndex="10",a.style.display="none",a},getGridContainer:function(){var a=document.createElement("div");return a},getGridRow:function(){var a=document.createElement("div");return a.classList.add("row"),a},getGridColumn:function(){var a=document.createElement("div");return a},setGridColumnSize:function(a,b){},getLink:function(a){var b=document.createElement("a");return b.setAttribute("href","#"),b.appendChild(document.createTextNode(a)),b},disableHeader:function(a){a.style.color="#ccc"},disableLabel:function(a){a.style.color="#ccc"},enableHeader:function(a){a.style.color=""},enableLabel:function(a){a.style.color=""},getInfoButton:function(a){var b=document.createElement("span");b.innerText="ⓘ",b.style.fontSize="16px",b.style.fontWeight="bold",b.style.padding=".25rem",b.style.position="relative",b.style.display="inline-block";var c=document.createElement("span");return c.style.fontSize="12px",b.style.fontWeight="normal",c.style["font-family"]="sans-serif",c.style.visibility="hidden",c.style["background-color"]="rgba(50, 50, 50, .75)",c.style.margin="0 .25rem",c.style.color="#FAFAFA",c.style.padding=".5rem 1rem",c.style["border-radius"]=".25rem",c.style.width="20rem",c.style.position="absolute",c.innerText=a,b.onmouseover=function(){c.style.visibility="visible"},b.onmouseleave=function(){c.style.visibility="hidden"},b.appendChild(c),b},getFormInputLabel:function(a){var b=document.createElement("label");return b.appendChild(document.createTextNode(a)),b},getCheckboxLabel:function(a){var b=this.getFormInputLabel(a);return b.style.fontWeight="normal",b},getHeader:function(a){var b=document.createElement("h3");return"string"==typeof a?b.textContent=a:b.appendChild(a),b},getCheckbox:function(){var a=this.getFormInputField("checkbox");return a.style.display="inline-block",a.style.width="auto",a},getMultiCheckboxHolder:function(a,b,c){var d=document.createElement("div");b&&(b.style.display="block",d.appendChild(b));for(var e in a)a.hasOwnProperty(e)&&(a[e].style.display="inline-block",a[e].style.marginRight="20px",d.appendChild(a[e]));return c&&d.appendChild(c),d},getSelectInput:function(a){var b=document.createElement("select");return a&&this.setSelectOptions(b,a),b},getSwitcher:function(a){var b=this.getSelectInput(a);return b.style.backgroundColor="transparent",b.style.display="inline-block",b.style.fontStyle="italic",b.style.fontWeight="normal",b.style.height="auto",b.style.marginBottom=0,b.style.marginLeft="5px",b.style.padding="0 0 0 3px",b.style.width="auto",b},getSwitcherOptions:function(a){return a.getElementsByTagName("option")},setSwitcherOptions:function(a,b,c){this.setSelectOptions(a,b,c)},setSelectOptions:function(a,b,c){c=c||[],a.innerHTML="";for(var d=0;d
    ",c},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.innerHTML="
    ",c},applyStyles:function(a,b){for(var c in b)b.hasOwnProperty(c)&&(a.style[c]=b[c])},closest:function(a,b){for(;a&&a!==document;){if(!a[i])return!1;if(a[i](b))return a;a=a.parentNode}return!1},insertBasicTopTab:function(a,b){b.firstChild.insertBefore(a,b.firstChild.firstChild)},getTab:function(a,b){var c=document.createElement("div");return c.appendChild(a),c.id=b,c.style=c.style||{},this.applyStyles(c,{border:"1px solid #ccc",borderWidth:"1px 0 1px 1px",textAlign:"center",lineHeight:"30px",borderRadius:"5px",borderBottomRightRadius:0,borderTopRightRadius:0,fontWeight:"bold",cursor:"pointer"}),c},getTopTab:function(a,b){var c=document.createElement("div");return c.id=b,c.appendChild(a),c.style=c.style||{},this.applyStyles(c,{"float":"left",border:"1px solid #ccc",borderWidth:"1px 1px 0px 1px",textAlign:"center",lineHeight:"30px",borderRadius:"5px",paddingLeft:"5px",paddingRight:"5px",borderBottomRightRadius:0,borderBottomLeftRadius:0,fontWeight:"bold",cursor:"pointer"}),c},getTabContentHolder:function(a){return a.children[1]},getTopTabContentHolder:function(a){return a.children[1]},getTabContent:function(){return this.getIndentedPanel()},getTopTabContent:function(){return this.getTopIndentedPanel()},markTabActive:function(a){this.applyStyles(a.tab,{opacity:1,background:"white"}),"undefined"!=typeof a.rowPane?a.rowPane.style.display="":a.container.style.display=""},markTabInactive:function(a){this.applyStyles(a.tab,{opacity:.5,background:""}),"undefined"!=typeof a.rowPane?a.rowPane.style.display="none":a.container.style.display="none"},addTab:function(a,b){a.children[0].appendChild(b)},addTopTab:function(a,b){a.children[0].appendChild(b)},getBlockLink:function(){var a=document.createElement("a");return a.style.display="block",a},getBlockLinkHolder:function(){var a=document.createElement("div");return a},getLinksHolder:function(){var a=document.createElement("div");return a},createMediaLink:function(a,b,c){a.appendChild(b),c.style.width="100%",a.appendChild(c)},createImageLink:function(a,b,c){a.appendChild(b),b.appendChild(c)},getFirstTab:function(a){return a.firstChild.firstChild},getInputGroup:function(a,c){return b}}),h.defaults.themes.bootstrap2=h.AbstractTheme.extend({getRangeInput:function(a,b,c){return this._super(a,b,c)},getGridContainer:function(){var a=document.createElement("div");return a.classList.add("container-fluid"),a},getGridRow:function(){var a=document.createElement("div");return a.classList.add("row-fluid"),a},getFormInputLabel:function(a){var b=this._super(a);return b.style.display="inline-block",b.style.fontWeight="bold",b},setGridColumnSize:function(a,b){a.classList.add("span"+b)},getSelectInput:function(a){var b=this._super(a);return b.style.width="auto",b.style.maxWidth="98%",b},getFormInputField:function(a){var b=this._super(a);return b.style.width="98%",b},afterInputReady:function(a){if(!a.controlgroup&&(a.controlgroup=this.closest(a,".control-group"),a.controls=this.closest(a,".controls"),this.closest(a,".compact")&&(a.controlgroup.className=a.controlgroup.className.replace(/control-group/g,"").replace(/[ ]{2,}/g," "),a.controls.className=a.controlgroup.className.replace(/controls/g,"").replace(/[ ]{2,}/g," "),a.style.marginBottom=0),this.queuedInputErrorText)){var b=this.queuedInputErrorText;delete this.queuedInputErrorText,this.addInputError(a,b)}},getIndentedPanel:function(){var a=document.createElement("div");return a.classList.add("well","well-small"),a.style.paddingBottom=0,a},getInfoButton:function(a){var b=document.createElement("span");b.classList.add("icon-info-sign","pull-right"),b.style.padding=".25rem",b.style.position="relative",b.style.display="inline-block";var c=document.createElement("span");return c.style["font-family"]="sans-serif",c.style.visibility="hidden",c.style["background-color"]="rgba(50, 50, 50, .75)",c.style.margin="0 .25rem",c.style.color="#FAFAFA",c.style.padding=".5rem 1rem",c.style["border-radius"]=".25rem",c.style.width="25rem",c.style.transform="translateX(-27rem) translateY(-.5rem)",c.style.position="absolute",c.innerText=a,b.onmouseover=function(){c.style.visibility="visible"},b.onmouseleave=function(){c.style.visibility="hidden"},b.appendChild(c),b},getFormInputDescription:function(a){var b=document.createElement("p");return b.classList.add("help-inline"),b.textContent=a,b},getFormControl:function(a,b,c,d){var e=document.createElement("div");e.classList.add("control-group");var f=document.createElement("div");return f.classList.add("controls"),a&&"checkbox"===b.getAttribute("type")?(e.appendChild(f),a.classList.add("checkbox"),a.appendChild(b),f.appendChild(a),d&&f.appendChild(d),f.style.height="30px"):(a&&(a.classList.add("control-label"),e.appendChild(a)),d&&f.appendChild(d),f.appendChild(b),e.appendChild(f)),c&&f.appendChild(c),e},getHeaderButtonHolder:function(){var a=this.getButtonHolder();return a.style.marginLeft="10px",a},getButtonHolder:function(){var a=document.createElement("div");return a.classList.add("btn-group"),a},getButton:function(a,b,c){var d=this._super(a,b,c);return d.classList.add("btn","btn-default"),d},getTable:function(){var a=document.createElement("table");return a.classList.add("table","table-bordered"),a.style.width="auto",a.style.maxWidth="none",a},addInputError:function(a,b){return a.controlgroup?void(a.controlgroup&&a.controls&&(a.controlgroup.classList.add("error"),a.errmsg?a.errmsg.style.display="":(a.errmsg=document.createElement("p"),a.errmsg.classList.add("help-block","errormsg"),a.controls.appendChild(a.errmsg)),a.errmsg.textContent=b)):void(this.queuedInputErrorText=b)},removeInputError:function(a){a.controlgroup||delete this.queuedInputErrorText,a.errmsg&&(a.errmsg.style.display="none",a.controlgroup.classList.remove("error"))},getTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.classList.add("tabbable","tabs-left"),c.innerHTML="
    ",c},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.classList.add("tabbable","tabs-over"),c.innerHTML="
    ",c},getTab:function(a,b){var c=document.createElement("li");c.classList.add("nav-item");var d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTopTab:function(a,b){var c=document.createElement("li");c.classList.add("nav-item");var d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTabContentHolder:function(a){return a.children[1]},getTopTabContentHolder:function(a){return a.children[1]},getTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-pane"),a},getTopTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-pane"),a},markTabActive:function(a){a.tab.classList.add("active"),"undefined"!=typeof a.rowPane?a.rowPane.classList.add("active"):a.container.classList.add("active")},markTabInactive:function(a){a.tab.classList.remove("active"),"undefined"!=typeof a.rowPane?a.rowPane.classList.remove("active"):a.container.classList.remove("active")},addTab:function(a,b){a.children[0].appendChild(b)},addTopTab:function(a,b){a.children[0].appendChild(b)},getProgressBar:function(){var a=document.createElement("div");a.classList.add("progress");var b=document.createElement("div");return b.classList.add("bar"),b.style.width="0%",a.appendChild(b),a},updateProgressBar:function(a,b){a&&(a.firstChild.style.width=b+"%")},updateProgressBarUnknown:function(a){a&&(a.classList.add("progress","progress-striped","active"),a.firstChild.style.width="100%")},getInputGroup:function(a,b){if(a){var c=document.createElement("div");c.classList.add("input-append"),c.appendChild(a);for(var d=0;d
    ",c},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.innerHTML="
    ",c},getTab:function(a,b){var c=document.createElement("li");c.setAttribute("role","presentation");var d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),d.setAttribute("aria-controls",b),d.setAttribute("role","tab"),d.setAttribute("data-toggle","tab"),c.appendChild(d),c},getTopTab:function(a,b){var c=document.createElement("li");c.setAttribute("role","presentation");var d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),d.setAttribute("aria-controls",b),d.setAttribute("role","tab"),d.setAttribute("data-toggle","tab"),c.appendChild(d),c},getTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-pane"),a.setAttribute("role","tabpanel"),a},getTopTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-pane"),a.setAttribute("role","tabpanel"),a},markTabActive:function(a){a.tab.classList.add("active"),"undefined"!=typeof a.rowPane?a.rowPane.classList.add("active"):a.container.classList.add("active")},markTabInactive:function(a){a.tab.classList.remove("active"),"undefined"!=typeof a.rowPane?a.rowPane.classList.remove("active"):a.container.classList.remove("active")},getProgressBar:function(){var a=0,b=100,c=0,d=document.createElement("div");d.classList.add("progress");var e=document.createElement("div");return e.classList.add("progress-bar"),e.setAttribute("role","progressbar"),e.setAttribute("aria-valuenow",c), -e.setAttribute("aria-valuemin",a),e.setAttribute("aria-valuenax",b),e.innerHTML=c+"%",d.appendChild(e),d},updateProgressBar:function(a,b){if(a){var c=a.firstChild,d=b+"%";c.setAttribute("aria-valuenow",b),c.style.width=d,c.innerHTML=d}},updateProgressBarUnknown:function(a){if(a){var b=a.firstChild;a.classList.add("progress","progress-striped","active"),b.removeAttribute("aria-valuenow"),b.style.width="100%",b.innerHTML=""}},getInputGroup:function(a,b){if(a){var c=document.createElement("div");c.classList.add("input-group"),c.appendChild(a);var d=document.createElement("div");d.classList.add("input-group-btn"),c.appendChild(d);for(var e=0;e
    ",b.classList.add("row"),b},addTab:function(a,b){a.children[0].children[0].appendChild(b)},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.innerHTML="
    ",c},getTab:function(a,b){var c=document.createElement("li");c.classList.add("nav-item");var d=document.createElement("a");return d.classList.add("nav-link"),d.setAttribute("style","padding:10px;"),d.setAttribute("href","#"+b),d.setAttribute("data-toggle","tab"),d.appendChild(a),c.appendChild(d),c},getTopTab:function(a,b){var c=document.createElement("li");c.classList.add("nav-item");var d=document.createElement("a");return d.classList.add("nav-link"),d.setAttribute("href","#"+b),d.setAttribute("data-toggle","tab"),d.appendChild(a),c.appendChild(d),c},getTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-pane"),a.setAttribute("role","tabpanel"),a},getTopTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-pane"),a.setAttribute("role","tabpanel"),a},markTabActive:function(a){a.tab.firstChild.classList.add("active"),"undefined"!=typeof a.rowPane?a.rowPane.classList.add("active"):a.container.classList.add("active")},markTabInactive:function(a){a.tab.firstChild.classList.remove("active"),"undefined"!=typeof a.rowPane?a.rowPane.classList.remove("active"):a.container.classList.remove("active")},getProgressBar:function(){var a=0,b=100,c=0,d=document.createElement("div");d.classList.add("progress");var e=document.createElement("div");return e.classList.add("progress-bar"),e.setAttribute("role","progressbar"),e.setAttribute("aria-valuenow",c),e.setAttribute("aria-valuemin",a),e.setAttribute("aria-valuenax",b),e.innerHTML=c+"%",d.appendChild(e),d},updateProgressBar:function(a,b){if(a){var c=a.firstChild,d=b+"%";c.setAttribute("aria-valuenow",b),c.style.width=d,c.innerHTML=d}},updateProgressBarUnknown:function(a){if(a){var b=a.firstChild;a.classList.add("progress","progress-striped","active"),b.removeAttribute("aria-valuenow"),b.style.width="100%",b.innerHTML=""}},getInputGroup:function(a,b){if(a){var c=document.createElement("div");c.classList.add("input-group"),c.appendChild(a);var d=document.createElement("div");d.classList.add("input-group-prepend"),c.appendChild(d);for(var e=0;e'),a.errmsg=a.parentNode.getElementsByClassName("error")[0]),void(a.errmsg.textContent=b)):void(this.queuedInputErrorText=b)},removeInputError:function(a){a.group||delete this.queuedInputErrorText,a.errmsg&&(a.group.classList.remove("error"),a.errmsg.style.display="none")},getProgressBar:function(){var a=document.createElement("div");a.classList.add("progress");var b=document.createElement("span");return b.classList.add("meter"),b.style.width="0%",a.appendChild(b),a},updateProgressBar:function(a,b){a&&(a.firstChild.style.width=b+"%")},updateProgressBarUnknown:function(a){a&&(a.firstChild.style.width="100%")},getInputGroup:function(a,c){if(!a)return b;var d=document.createElement("div");d.classList.add("input-group"),a.classList.add("input-group-field"),d.appendChild(a);for(var e=0;e
    ',c},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.classList.add("row"),c.innerHTML='
    ',c},setGridColumnSize:function(a,b){var c=["zero","one","two","three","four","five","six","seven","eight","nine","ten","eleven","twelve"];a.classList.add("columns",c[b])},getTab:function(a,b){var c=document.createElement("dd"),d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTopTab:function(a,b){var c=document.createElement("dd"),d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTabContentHolder:function(a){return a.children[1]},getTopTabContentHolder:function(a){return a.children[1]},getTabContent:function(){var a=document.createElement("div");return a.classList.add("content","active"),a.style.paddingLeft="5px",a},getTopTabContent:function(){var a=document.createElement("div");return a.classList.add("content","active"),a.style.paddingLeft="5px",a},markTabActive:function(a){a.tab.classList.add("active"),"undefined"!=typeof a.rowPane?a.rowPane.style.display="":a.container.style.display=""},markTabInactive:function(a){a.tab.classList.remove("active"),"undefined"!=typeof a.rowPane?a.rowPane.style.display="none":a.container.style.display="none"},addTab:function(a,b){a.children[0].appendChild(b)},addTopTab:function(a,b){a.children[0].appendChild(b)}}),h.defaults.themes.foundation4=h.defaults.themes.foundation.extend({getHeaderButtonHolder:function(){var a=this._super();return a.style.fontSize=".6em",a},setGridColumnSize:function(a,b){a.classList.add("columns","large-"+b)},getFormInputDescription:function(a){var b=this._super(a);return b.style.fontSize=".8rem",b},getFormInputLabel:function(a){var b=this._super(a);return b.style.fontWeight="bold",b}}),h.defaults.themes.foundation5=h.defaults.themes.foundation.extend({getFormInputDescription:function(a){var b=this._super(a);return b.style.fontSize=".8rem",b},setGridColumnSize:function(a,b){a.classList.add("columns","medium-"+b)},getButton:function(a,b,c){var d=this._super(a,b,c);return d.className=d.className.replace(/\s*small/g,"")+" tiny",d},getTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.innerHTML='
    ',c},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.classList.add("row"),c.innerHTML='
    ',c},getTab:function(a,b){var c=document.createElement("dd"),d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTopTab:function(a,b){var c=document.createElement("dd"),d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTabContentHolder:function(a){return a.children[1]},getTopTabContentHolder:function(a){return a.children[1]},getTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-content","active"),a.style.paddingLeft="5px",a},getTopTabContent:function(){var a=document.createElement("div");return a.classList.add("tab-content","active"),a.style.paddingLeft="5px",a},markTabActive:function(a){a.tab.classList.add("active"),"undefined"!=typeof a.rowPane?a.rowPane.style.display="":a.container.style.display=""},markTabInactive:function(a){a.tab.classList.remove("active"),"undefined"!=typeof a.rowPane?a.rowPane.style.display="none":a.container.style.display="none"},addTab:function(a,b){a.children[0].appendChild(b)},addTopTab:function(a,b){a.children[0].appendChild(b)}}),h.defaults.themes.foundation6=h.defaults.themes.foundation5.extend({getIndentedPanel:function(){var a=document.createElement("div");return a.classList.add("callout","secondary"),a.style="padding-left: 10px; margin-left: 10px;",a},getButtonHolder:function(){var a=document.createElement("div");return a.classList.add("button-group","tiny"),a.style.marginBottom=0,a},getFormInputLabel:function(a){var b=this._super(a);return b.style.display="block",b},getFormControl:function(a,b,c,d){var e=document.createElement("div");return e.classList.add("form-control"),a&&e.appendChild(a),"checkbox"===b.type?a.insertBefore(b,a.firstChild):a?(d&&a.appendChild(d),a.appendChild(b)):(d&&e.appendChild(d),e.appendChild(b)),c&&a.appendChild(c),e},addInputError:function(a,b){if(a.group){if(a.group.classList.add("error"),a.errmsg)a.errmsg.style.display="",a.className="";else{var c=document.createElement("span");c.classList.add("form-error","is-visible"),a.group.getElementsByTagName("label")[0].appendChild(c),a.classList.add("is-invalid-input"),a.errmsg=c}a.errmsg.textContent=b}},removeInputError:function(a){a.errmsg&&(a.classList.remove("is-invalid-input"),a.errmsg.parentNode&&a.errmsg.parentNode.removeChild(a.errmsg))},getTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.classList.add("grid-x"),c.innerHTML='
      ',c},getTopTabHolder:function(a){var b="undefined"==typeof a?"":a,c=document.createElement("div");return c.classList.add("grid-y"),c.innerHTML='
        ',c},insertBasicTopTab:function(a,b){b.firstChild.firstChild.insertBefore(a,b.firstChild.firstChild.firstChild)},getTab:function(a,b){var c=document.createElement("li");c.classList.add("tabs-title");var d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTopTab:function(a,b){var c=document.createElement("li");c.classList.add("tabs-title");var d=document.createElement("a");return d.setAttribute("href","#"+b),d.appendChild(a),c.appendChild(d),c},getTabContentHolder:function(a){return a.children[1].firstChild},getTopTabContentHolder:function(a){return a.firstChild.children[1]},getTabContent:function(){var a=document.createElement("div");return a.classList.add("tabs-panel"),a.style.paddingLeft="5px",a},getTopTabContent:function(){var a=document.createElement("div");return a.classList.add("tabs-panel"),a.style.paddingLeft="5px",a},markTabActive:function(a){a.tab.classList.add("is-active"),a.tab.firstChild.setAttribute("aria-selected","true"),"undefined"!=typeof a.rowPane?(a.rowPane.classList.add("is-active"),a.rowPane.setAttribute("aria-selected","true")):(a.container.classList.add("is-active"),a.container.setAttribute("aria-selected","true"))},markTabInactive:function(a){a.tab.classList.remove("is-active"),a.tab.firstChild.removeAttribute("aria-selected"),"undefined"!=typeof a.rowPane?(a.rowPane.classList.remove("is-active"),a.rowPane.removeAttribute("aria-selected")):(a.container.classList.remove("is-active"),a.container.removeAttribute("aria-selected"))},addTab:function(a,b){a.children[0].firstChild.appendChild(b)},addTopTab:function(a,b){a.firstChild.children[0].appendChild(b)},getFirstTab:function(a){return a.firstChild.firstChild.firstChild}}),h.defaults.themes.html=h.AbstractTheme.extend({getFormInputLabel:function(a){var b=this._super(a);return b.style.display="block",b.style.marginBottom="3px",b.style.fontWeight="bold",b},getFormInputDescription:function(a){var b=this._super(a);return b.style.fontSize=".8em",b.style.margin=0,b.style.display="inline-block",b.style.fontStyle="italic",b},getIndentedPanel:function(){var a=this._super();return a.style.border="1px solid #ddd",a.style.padding="5px",a.style.margin="10px",a.style.borderRadius="3px",a},getTopIndentedPanel:function(){return this.getIndentedPanel()},getChildEditorHolder:function(){var a=this._super();return a.style.marginBottom="8px",a},getHeaderButtonHolder:function(){var a=this.getButtonHolder();return a.style.display="inline-block",a.style.marginLeft="10px",a.style.fontSize=".8em",a.style.verticalAlign="middle",a},getTable:function(){var a=this._super();return a.style.borderBottom="1px solid #ccc",a.style.marginBottom="5px",a},addInputError:function(a,b){if(a.style.borderColor="red",a.errmsg)a.errmsg.style.display="block";else{var c=this.closest(a,".form-control");a.errmsg=document.createElement("div"),a.errmsg.setAttribute("class","errmsg"),a.errmsg.style=a.errmsg.style||{},a.errmsg.style.color="red",c.appendChild(a.errmsg)}a.errmsg.innerHTML="",a.errmsg.appendChild(document.createTextNode(b))},removeInputError:function(a){a.style.borderColor="",a.errmsg&&(a.errmsg.style.display="none")},getProgressBar:function(){var a=100,b=0,c=document.createElement("progress");return c.setAttribute("max",a),c.setAttribute("value",b),c},updateProgressBar:function(a,b){a&&a.setAttribute("value",b)},updateProgressBarUnknown:function(a){a&&a.removeAttribute("value")}}),h.defaults.themes.jqueryui=h.AbstractTheme.extend({getTable:function(){var a=this._super();return a.setAttribute("cellpadding",5),a.setAttribute("cellspacing",0),a},getTableHeaderCell:function(a){var b=this._super(a);return b.classList.add("ui-state-active"),b.style.fontWeight="bold",b},getTableCell:function(){var a=this._super();return a.classList.add("ui-widget-content"),a},getHeaderButtonHolder:function(){var a=this.getButtonHolder();return a.style.marginLeft="10px",a.style.fontSize=".6em",a.style.display="inline-block",a},getFormInputDescription:function(a){var b=this.getDescription(a);return b.style.marginLeft="10px",b.style.display="inline-block",b},getFormControl:function(a,b,c,d){var e=this._super(a,b,c,d);return"checkbox"===b.type?(e.style.lineHeight="25px",e.style.padding="3px 0"):e.style.padding="4px 0 8px 0",e},getDescription:function(a){var b=document.createElement("span");return b.style.fontSize=".8em",b.style.fontStyle="italic",b.textContent=a,b},getButtonHolder:function(){var a=document.createElement("div");return a.classList.add("ui-buttonset"),a.style.fontSize=".7em",a},getFormInputLabel:function(a){var b=document.createElement("label");return b.style.fontWeight="bold",b.style.display="block",b.textContent=a,b},getButton:function(a,b,c){var d=document.createElement("button");d.classList.add("ui-button","ui-widget","ui-state-default","ui-corner-all"),b&&!a?(d.classList.add("ui-button-icon-only"),b.classList.add("ui-button-icon-primary","ui-icon-primary"),d.appendChild(b)):b?(d.classList.add("ui-button-text-icon-primary"),b.classList.add("ui-button-icon-primary","ui-icon-primary"),d.appendChild(b)):d.classList.add("ui-button-text-only");var e=document.createElement("span");return e.classList.add("ui-button-text"),e.textContent=a||c||".",d.appendChild(e),d.setAttribute("title",c),d},setButtonText:function(a,b,c,d){a.innerHTML="",a.classList.add("ui-button","ui-widget","ui-state-default","ui-corner-all"),c&&!b?(a.classList.add("ui-button-icon-only"),c.classList.add("ui-button-icon-primary","ui-icon-primary"),a.appendChild(c)):c?(a.classList.add("ui-button-text-icon-primary"),c.classList.add("ui-button-icon-primary","ui-icon-primary"),a.appendChild(c)):a.classList.add("ui-button-text-only");var e=document.createElement("span");e.classList.add("ui-button-text"),e.textContent=b||d||".",a.appendChild(e),a.setAttribute("title",d)},getIndentedPanel:function(){var a=document.createElement("div");return a.classList.add("ui-widget-content","ui-corner-all"),a.style.padding="1em 1.4em",a.style.marginBottom="20px",a},afterInputReady:function(a){if(!a.controls&&(a.controls=this.closest(a,".form-control"),this.queuedInputErrorText)){var b=this.queuedInputErrorText;delete this.queuedInputErrorText,this.addInputError(a,b)}},addInputError:function(a,b){return a.controls?(a.errmsg?a.errmsg.style.display="":(a.errmsg=document.createElement("div"),a.errmsg.classList.add("ui-state-error"),a.controls.appendChild(a.errmsg)),void(a.errmsg.textContent=b)):void(this.queuedInputErrorText=b)},removeInputError:function(a){a.controls||delete this.queuedInputErrorText,a.errmsg&&(a.errmsg.style.display="none")},markTabActive:function(a){a.tab.classList.remove("ui-widget-header"),a.tab.classList.add("ui-state-active"),"undefined"!=typeof a.rowPane?a.rowPane.style.display="":a.container.style.display=""},markTabInactive:function(a){a.tab.classList.add("ui-widget-header"),a.tab.classList.remove("ui-state-active"),"undefined"!=typeof a.rowPane?a.rowPane.style.display="none":a.container.style.display="none"}}),h.defaults.themes.barebones=h.AbstractTheme.extend({getFormInputLabel:function(a){var b=this._super(a);return b},getFormInputDescription:function(a){var b=this._super(a);return b},getIndentedPanel:function(){var a=this._super();return a},getChildEditorHolder:function(){var a=this._super();return a},getHeaderButtonHolder:function(){var a=this.getButtonHolder();return a},getTable:function(){var a=this._super();return a},addInputError:function(a,b){if(a.errmsg)a.errmsg.style.display="block";else{var c=this.closest(a,".form-control");a.errmsg=document.createElement("div"),a.errmsg.setAttribute("class","errmsg"),c.appendChild(a.errmsg)}a.errmsg.innerHTML="",a.errmsg.appendChild(document.createTextNode(b))},removeInputError:function(a){a.style.borderColor="",a.errmsg&&(a.errmsg.style.display="none")},getProgressBar:function(){var a=100,b=0,c=document.createElement("progress");return c.setAttribute("max",a),c.setAttribute("value",b),c},updateProgressBar:function(a,b){a&&a.setAttribute("value",b)},updateProgressBarUnknown:function(a){a&&a.removeAttribute("value")}}),h.defaults.themes.materialize=h.AbstractTheme.extend({setGridColumnSize:function(a,b){a.classList.add("col"),a.classList.add("s"+b)},getHeaderButtonHolder:function(){return this.getButtonHolder()},getButtonHolder:function(){return document.createElement("span")},getButton:function(a,b,c){a&&(b.classList.add("left"),b.style.marginRight="5px");var d=this._super(a,b,c);return d.classList.add("waves-effect","waves-light","btn"),d.style.fontSize="0.75rem",d.style.height="24px",d.style.lineHeight="24px",d.style.marginLeft="5px",d.style.padding="0 0.5rem",d},getFormControl:function(a,b,c,d){var e,f=b.type;if(f&&"checkbox"===f){if(e=document.createElement("p"),a){var g=document.createElement("span");g.innerHTML=a.innerHTML,a.innerHTML="",a.setAttribute("for",b.id),e.appendChild(a),a.appendChild(b),a.appendChild(g)}else e.appendChild(b);return e}return e=this._super(a,b,c,d),f&&f.startsWith("select")||e.classList.add("input-field"),f&&"color"===f&&(b.style.height="3rem",b.style.width="100%",b.style.margin="5px 0 20px 0",b.style.padding="3px",a&&(a.style.transform="translateY(-14px) scale(0.8)",a.style["-webkit-transform"]="translateY(-14px) scale(0.8)",a.style["-webkit-transform-origin"]="0 0",a.style["transform-origin"]="0 0")),e},getDescription:function(a){var b=document.createElement("div");return b.classList.add("grey-text"),b.style.marginTop="-15px",b.innerHTML=a,b},getHeader:function(a){var b=document.createElement("h5");return"string"==typeof a?b.textContent=a:b.appendChild(a),b},getChildEditorHolder:function(){var a=document.createElement("div");return a.marginBottom="10px",a},getIndentedPanel:function(){var a=document.createElement("div");return a.classList.add("card-panel"),a},getTable:function(){var a=document.createElement("table");return a.classList.add("striped","bordered"),a.style.marginBottom="10px",a},getTableRow:function(){return document.createElement("tr")},getTableHead:function(){return document.createElement("thead")},getTableBody:function(){return document.createElement("tbody")},getTableHeaderCell:function(a){var b=document.createElement("th");return b.textContent=a,b},getTableCell:function(){var a=document.createElement("td");return a},getTabHolder:function(){var a=['
        ','
          ',"
        ","
        ",'
        ',"
        "].join("\n"),b=document.createElement("div");return b.classList.add("row","card-panel"),b.innerHTML=a,b},addTab:function(a,b){a.children[0].children[0].appendChild(b)},getTab:function(a){var b=document.createElement("li");return b.classList.add("tab"),b.style=b.style||{},this.applyStyles(b,{width:"100%",textAlign:"left",lineHeight:"24px",height:"24px",fontSize:"14px",cursor:"pointer"}),b.appendChild(a),b},markTabActive:function(a){a.style=a.style||{},this.applyStyles(a,{width:"100%",textAlign:"left",lineHeight:"24px",height:"24px",fontSize:"14px",cursor:"pointer",color:"rgba(238,110,115,1)",transition:"border-color .5s ease",borderRight:"3px solid #424242"})},markTabInactive:function(a){a.style=a.style||{},this.applyStyles(a,{width:"100%",textAlign:"left",lineHeight:"24px",height:"24px",fontSize:"14px",cursor:"pointer",color:"rgba(238,110,115,0.7)"})},getTabContentHolder:function(a){return a.children[1]},getTabContent:function(){return document.createElement("div")},addInputError:function(a,b){var c,d=a.parentNode;d&&(this.removeInputError(a),c=document.createElement("div"),c.classList.add("error-text","red-text"),c.textContent=b,d.appendChild(c))},removeInputError:function(a){var b,c=a.parentElement;if(c){b=c.getElementsByClassName("error-text");for(var d=0;d1){var g;c=function(b){for(g=b,a=0;a=0){if(a.items["enum"])return"multiselect";if(h.plugins.selectize.enable&&"string"===a.items.type)return"arraySelectize"}}),h.defaults.resolvers.unshift(function(a){if(a.oneOf||a.anyOf)return"multiple"}),h.defaults.resolvers.unshift(function(a){if(["string","integer"].indexOf(a.type)!==-1&&["date","time","datetime-local"].indexOf(a.format)!==-1)return"datetime"}),h.defaults.resolvers.unshift(function(a){if("string"===a.type&&"starrating"===a.format)return"starrating"}),function(){if(window.jQuery||window.Zepto){var a=window.jQuery||window.Zepto;a.jsoneditor=h.defaults,a.fn.jsoneditor=function(a){var b=this,c=this.data("jsoneditor");if("value"===a){if(!c)throw"Must initialize jsoneditor before getting/setting the value";if(!(arguments.length>1))return c.getValue();c.setValue(arguments[1])}else{if("validate"===a){if(!c)throw"Must initialize jsoneditor before validating";return arguments.length>1?c.validate(arguments[1]):c.validate()}"destroy"===a?c&&(c.destroy(),this.data("jsoneditor",null)):(c&&c.destroy(),c=new h(this.get(0),a),this.data("jsoneditor",c),c.on("change",function(){b.trigger("change")}),c.on("ready",function(){b.trigger("ready")}))}return this}}}(),h}); -//# sourceMappingURL=jsoneditor.min.js.map \ No newline at end of file diff --git a/web/docroot/js/sensesp.js b/web/docroot/js/sensesp.js deleted file mode 100644 index 9b7bba9e3..000000000 --- a/web/docroot/js/sensesp.js +++ /dev/null @@ -1,365 +0,0 @@ - -var activeEditors = []; -var deviceInfo = null; -var currentPage = "info"; -var pagesLoaded = false; -var targets = {}; - -function ajax(method, url, data, contentType) { - return new Promise(function (resolve, reject) { - var request = new XMLHttpRequest(); - - request.open(method, url, true); - - request.onload = function () { - if (request.status === 200) { - resolve(request.response); - } else { - reject(Error(request.statusText)); - } - }; - - request.onerror = function () { - reject(Error("Network Error")); - }; - - if (contentType) { - request.setRequestHeader("Content-Type", contentType); - } - - request.send(data); - }); -} - -class NavTarget { - constructor(key, invokeFunction, link) { - this.Key = key; - this.TargetFunction = invokeFunction; - this.Link = link; - } -} - -function getEmptyContentDiv() { - var main = document.getElementById("content"); - main.empty(); - globalEditor = null; - return main; -} - -function getSingleJsonEditor(element, config, schema) { - const editor = new JSONEditor(element, - { - 'schema': schema, - 'startval': config, - 'no_additional_properties': true, - 'disable_collapse': true, - 'disable_properties': true, - 'disable_edit_json': true, - 'show_opt_in': true, - 'theme': 'bootstrap4' - }); - - return editor; -} - -function createEmptyConfigEditorDiv(index) { - const content = ` -
        -
        -
        Configuration
        -
        -
        -
        - -
        -
        -
        - `; - return content; -} - -async function loadConfig(configPath) { - let response = await ajax('GET', '/config' + configPath); - let json = JSON.parse(response); - let config = json.config; - let schema = json.schema; - let description = json.description; - - return { - 'config': config, - 'schema': schema, - 'description': description - }; -} - -function loadAllConfigs(configPaths) { - let configDataPromises = configPaths.map(configPath => { - return loadConfig(configPath); - }); - - return configDataPromises; -} - -function insertLoaderSpinner(elementId) { - var element = document.getElementById(elementId); - element.innerHTML = ` -
        -
        - Loading... -
        - Loading... -
        `; -} - -function clearLoaderSpinner(element) { - element.innerHTML = ""; -} - -async function showSingleConfigEditor(configPath, configDataPromise, index) { - let configData = await configDataPromise; - let schema = configData.schema; - if (!schema.title) { - schema.title = " "; - } - let element = document.getElementById(`editor_holder_${ index }`); - - clearLoaderSpinner(element); - - let editor = getSingleJsonEditor(element, configData.config, schema); - - const heading = configPath.substring(1); - const headingElement = document.getElementById(`card_title_${ index }`); - headingElement.textContent = heading; - - const descriptionElement = document.getElementById(`card_description_${ index }`); - descriptionElement.innerHTML = configData.description; - - const buttonElement = document.getElementById(`submit_${ index }`); - buttonElement.addEventListener('click', function () { - saveConfig(deviceInfo.Config[index], editor.getValue()); - }); - - return editor; -} - -function saveConfig(config_path, values) { - ajax('PUT', '/config' + config_path, JSON.stringify(values), 'application/json') - .then(response => { - alert(`Saved configuration for ${ config_path } successfully.`); - }) - .catch(err => { - alert(`Error saving configuration ${ config_path }: ${ err.message }`); - }); -} - -function showConfig() { - let main = getEmptyContentDiv(); - - // Get the number of config paths - const numConfigs = deviceInfo.Config.length; - - // load all configs - let configDataPromises = loadAllConfigs(deviceInfo.Config); - - // create a new card div for each config path - - const cardsHTML = Array.from(Array(numConfigs), (x, i) => { - return createEmptyConfigEditorDiv(i); - }).join("\n"); - - // insert the card divs into the main div - main.innerHTML = cardsHTML; - - // insert spinners into each card div - - for (let i = 0; i < numConfigs; i++) { - insertLoaderSpinner(`editor_holder_${ i }`); - } - - // Create JSON editors for each config path - for (let i = 0; i < numConfigs; i++) { - showSingleConfigEditor(deviceInfo.Config[i], configDataPromises[i], i) - .then(editor => { - activeEditors.push(editor); - }); - } -} - -Element.prototype.empty = function () { - var child = this.lastElementChild; - while (child) { - this.removeChild(child); - child = this.lastElementChild; - } -} - -function showLoader(show, status) { - var loader = document.getElementById("loader"); - if (show) { - if (status == null || status == undefined) { - status = "Loading..."; - } - - loadertext.innerHTML = status; - loader.classList.remove("visually-hidden"); - } - else { - loader.classList.add("visually-hidden"); - } -} - -function executeCommand(name, shouldConfirm) { - if (shouldConfirm == true && !confirm("Execute " + name + "?")) { - return; - } - - showLoader(true, "Executing " + name + "..."); - - ajax("GET", "/command?id=" + name) - .then((r) => { - showLoader(false); - alert(r); - }) - .catch(err => { - showLoader(false); - alert(err); - }); -} - -function runDeviceCommand(confirmText, command) { - if (confirm(confirmText)) { - ajax("GET", "/device/" + command) - .then(r => { - alert(r); - }) - .catch(err => { - alert(err); - }); - } -} - -function showControl() { - var div = getEmptyContentDiv(); - - var commands = deviceInfo.Commands; - var appCommands = ""; - if (commands.length > 0) { - appCommands = `
        Application commands
        -
        `; - for (var i = 0; i < commands.length; i++) { - var command = commands[i]; - appCommands += `<§ class="btn btn-primary" onclick="executeCommand('${ command.Name }',${ command.Confirm })" href="#">${ command.Title }`; - } - appCommands += "
        "; - } - - var content = ` -
        -
        -
        Device commands
        - Restart - Reset to defaults -
        -
        `; - - var commands = deviceInfo.Commands; - - if (commands.length > 0) { - content += - "
        " + - "
        " + - "
        Custom commands
        "; - - for (var i = 0; i < commands.length; i++) { - var command = commands[i]; - content += `${ command.Title }`; - } - - content += "
        "; - - } - - div.innerHTML = content; -} - -function showCustom(target) { - showLoader(true); - ajax("GET", target.Link) - .then(v => { - showLoader(false); - var div = getEmptyContentDiv(); - - div.innerHTML = "

        " + target.Key + "

        " + v; - }) - .catch(err => { - showLoader(false); - alert(err); - }); -} - -function loadInfo() { - ajax("GET", "/info") - .then(response => { - deviceInfo = JSON.parse(response); - var content = getEmptyContentDiv(); - var groups = {}; - - for (const property in deviceInfo.Properties) { - var propertyObj = deviceInfo.Properties[property]; - propertyObj.Name = property; - var group = null; - if (groups[propertyObj.Group] == undefined) { - group = groups[propertyObj.Group] = - { - "Name": propertyObj.Group, - "Properties": [] - }; - } - else { - group = groups[propertyObj.Group]; - } - - group.Properties.push(propertyObj); - - if (property === "Hostname") { - document.getElementById("devicename").innerHTML = propertyObj.Value; - document.title = propertyObj.Value + " - WebUI"; - } - } - - for (const key in groups) { - var group = groups[key]; - group.Properties.sort((a, b) => a.Order - b.Order); - - content.innerHTML += `

        ${ group.Name }

        `; - - for (i = 0; i < group.Properties.length; i++) { - content.innerHTML += `
        `; - } - - content.innerHTML += "
        "; - } - - }) - .catch(err => { - alert('Device info load failed: ' + err.statusText); - }); -} - -function initialize() { - loadInfo(); - targets["status"] = new NavTarget("status", loadInfo); - targets["configuration"] = new NavTarget("configuration", showConfig); - targets["control"] = new NavTarget("control", showControl); - - - var mainMenu = document.getElementById("mainmenu"); - - mainMenu.addEventListener("click", (e) => { - var targetKey = e.target.dataset["target"]; - var target = targets[targetKey]; - if (target != undefined) { - target.TargetFunction(target); - } - }); -} diff --git a/web/docroot/js/sensesp.min.js b/web/docroot/js/sensesp.min.js deleted file mode 100644 index 1fceb350f..000000000 --- a/web/docroot/js/sensesp.min.js +++ /dev/null @@ -1 +0,0 @@ -var activeEditors=[],deviceInfo=null,currentPage="info",pagesLoaded=!1,targets={};function ajax(method,url,data,contentType){return new Promise((function(resolve,reject){var request=new XMLHttpRequest;request.open(method,url,!0),request.onload=function(){200===request.status?resolve(request.response):reject(Error(request.statusText))},request.onerror=function(){reject(Error("Network Error"))},contentType&&request.setRequestHeader("Content-Type",contentType),request.send(data)}))}class NavTarget{constructor(key,invokeFunction,link){this.Key=key,this.TargetFunction=invokeFunction,this.Link=link}}function getEmptyContentDiv(){var main=document.getElementById("content");return main.empty(),globalEditor=null,main}function getSingleJsonEditor(element,config,schema){return new JSONEditor(element,{schema:schema,startval:config,no_additional_properties:!0,disable_collapse:!0,disable_properties:!0,disable_edit_json:!0,show_opt_in:!0,theme:"bootstrap4"})}function createEmptyConfigEditorDiv(index){return`\n
        \n
        \n
        Configuration
        \n
        \n
        \n
        \n \n
        \n
        \n
        \n `}async function loadConfig(configPath){let response=await ajax("GET","/config"+configPath),json=JSON.parse(response);return{config:json.config,schema:json.schema,description:json.description}}function loadAllConfigs(configPaths){return configPaths.map((configPath=>loadConfig(configPath)))}function insertLoaderSpinner(elementId){document.getElementById(elementId).innerHTML='\n
        \n
        \n Loading...\n
        \n Loading...\n
        '}function clearLoaderSpinner(element){element.innerHTML=""}async function showSingleConfigEditor(configPath,configDataPromise,index){let configData=await configDataPromise,schema=configData.schema;schema.title||(schema.title=" ");let element=document.getElementById(`editor_holder_${index}`);clearLoaderSpinner(element);let editor=getSingleJsonEditor(element,configData.config,schema);const heading=configPath.substring(1);document.getElementById(`card_title_${index}`).textContent=heading;document.getElementById(`card_description_${index}`).innerHTML=configData.description;return document.getElementById(`submit_${index}`).addEventListener("click",(function(){saveConfig(deviceInfo.Config[index],editor.getValue())})),editor}function saveConfig(config_path,values){ajax("PUT","/config"+config_path,JSON.stringify(values),"application/json").then((response=>{alert(`Saved configuration for ${config_path} successfully.`)})).catch((err=>{alert(`Error saving configuration ${config_path}: ${err.message}`)}))}function showConfig(){let main=getEmptyContentDiv();const numConfigs=deviceInfo.Config.length;let configDataPromises=loadAllConfigs(deviceInfo.Config);const cardsHTML=Array.from(Array(numConfigs),((x,i)=>createEmptyConfigEditorDiv(i))).join("\n");main.innerHTML=cardsHTML;for(let i=0;i{activeEditors.push(editor)}))}function executeCommand(name,shouldConfirm){(1!=shouldConfirm||confirm("Execute "+name+"?"))&&(showLoader(!0,"Executing "+name+"..."),ajax("GET","/command?id="+name).then((r=>{showLoader(!1),alert(r)})).catch((err=>{showLoader(!1),alert(err)})))}function runDeviceCommand(confirmText,command){confirm(confirmText)&&ajax("GET","/device/"+command).then((r=>{alert(r)})).catch((err=>{alert(err)}))}function showControl(){var div=getEmptyContentDiv();if((commands=deviceInfo.Commands).length>0){'
        Application commands
        \n
        ';for(var i=0;i${command.Title}`}"
        "}var commands,content='\n
        \n
        \n
        Device commands
        \n Restart\n Reset to defaults\n
        \n
        ';if((commands=deviceInfo.Commands).length>0){content+="
        Custom commands
        ";for(i=0;i${command.Title}`}content+="
        "}div.innerHTML=content}function showCustom(target){showLoader(!0),ajax("GET",target.Link).then((v=>{showLoader(!1),getEmptyContentDiv().innerHTML="

        "+target.Key+"

        "+v})).catch((err=>{showLoader(!1),alert(err)}))}function loadInfo(){ajax("GET","/info").then((response=>{deviceInfo=JSON.parse(response);var content=getEmptyContentDiv(),groups={};for(const property in deviceInfo.Properties){var propertyObj=deviceInfo.Properties[property];propertyObj.Name=property;var group=null;(group=null==groups[propertyObj.Group]?groups[propertyObj.Group]={Name:propertyObj.Group,Properties:[]}:groups[propertyObj.Group]).Properties.push(propertyObj),"Hostname"===property&&(document.getElementById("devicename").innerHTML=propertyObj.Value,document.title=propertyObj.Value+" - WebUI")}for(const key in groups){for((group=groups[key]).Properties.sort(((a,b)=>a.Order-b.Order)),content.innerHTML+=`

        ${group.Name}

        `,i=0;i
        `;content.innerHTML+="
        "}})).catch((err=>{alert("Device info load failed: "+err.statusText)}))}function initialize(){loadInfo(),targets.status=new NavTarget("status",loadInfo),targets.configuration=new NavTarget("configuration",showConfig),targets.control=new NavTarget("control",showControl),document.getElementById("mainmenu").addEventListener("click",(e=>{var targetKey=e.target.dataset.target,target=targets[targetKey];null!=target&&target.TargetFunction(target)}))}Element.prototype.empty=function(){for(var child=this.lastElementChild;child;)this.removeChild(child),child=this.lastElementChild}; \ No newline at end of file diff --git a/web/docroot/setup/index.html b/web/docroot/setup/index.html deleted file mode 100644 index d7e49dcb0..000000000 --- a/web/docroot/setup/index.html +++ /dev/null @@ -1,15 +0,0 @@ - - - Configure SensESP Device - - - - - - - -

        SensESP Device

        -
        -
        - - diff --git a/web/docroot/test b/web/docroot/test deleted file mode 100644 index ada0ec138..000000000 --- a/web/docroot/test +++ /dev/null @@ -1,19 +0,0 @@ -
        -
        - -
        - mA - -
        - -
        - mA - -
        -
        -
        - -
        -
        - -

        This page will generated in C++ code on device.

        \ No newline at end of file diff --git a/web/index.html b/web/index.html new file mode 100644 index 000000000..1511a19fb --- /dev/null +++ b/web/index.html @@ -0,0 +1,14 @@ + + + + + + + + SensESP Device Setup + + +
        + + + diff --git a/web/mock/api-config.mock.ts b/web/mock/api-config.mock.ts new file mode 100644 index 000000000..698644afc --- /dev/null +++ b/web/mock/api-config.mock.ts @@ -0,0 +1,162 @@ +import { JsonObject } from 'common/jsonTypes'; +import { defineMock } from 'vite-plugin-mock-dev-server' + +let hostname = "localhost"; +let authenticationSettings: JsonObject = { + "authEnabled": false, + "username": "", + "password": "" +}; + +export default defineMock( + [ + { + url: '/api/config', + method: 'GET', + body: { + keys: [ + "/System/WiFi Settings", + "/System/Signal K Settings", + "/Transforms/Linear" + ] + }, + delay: 800, + }, + { + url: '/api/config/System/Signal K Settings', + method: 'GET', + body: { + "config": { + "sk_address": "oppi4.local", + "sk_port": 3000, + "token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJkZXZpY2UiOiI0NTMxODliOC04NzNkLTkxMzUtNDFjYy1jYzFjMzg4ZWU1YzUiLCJpYXQiOjE2NTA4OTg3MjB9.5ENWogKknEbHf9Ppc-xl5zgJvBrzy0WcIH0tyymcfVg", + "client_id": "453189b8-873d-9135-41cc-cc1c388ee5c5", + "polling_href": "" + }, + "description": "" + }, + delay: 600, + }, + { + url: '/api/config/system/hostname', + response(req, resp) { + if (req.method === 'GET') { + const doc = { + "config": { + "value": hostname + }, + "schema": {}, + "description": "The hostname of the device." + }; + resp.end(JSON.stringify(doc)); + } else if (req.method === 'POST') { + const doc = req.body; + console.log(doc); + hostname = doc.value; + resp.end(); + } + } + }, + { + url: '/api/config/system/httpserver', + response(req, resp) { + if (req.method === 'GET') { + const doc = { + "config": authenticationSettings, + "schema": {}, + "description": "Auth." + }; + resp.end(JSON.stringify(doc)); + } else if (req.method === 'POST') { + const doc = req.body; + console.log(doc); + authenticationSettings = doc; + resp.end(); + } + } + }, + { + url: '/api/config/System/WiFi Settings', + method: 'GET', + body: { + "config": { + "apSettings": { + "enabled": false, + "name": "My New Network", + "password": "mypassword", + "channel": "Auto", + "hidden": false + }, + "clientSettings": { + "enabled": true, + "settings": [ + { + name: "Hat Labs Sensors", + password: "mypassword", + useDHCP: true, + ipAddress: "", + netmask: "", + gateway: "", + dnsServer: "", + }, + { + name: "Network 11", + password: "mypassword2", + useDHCP: false, + ipAddress: "10.34.21.2", + netmask: "255.255.255.0", + gateway: "10.34.21.1", + dnsServer: "10.34.21.1", + }, + { + name: "My Phone Hotspot", + password: "mypassword3", + useDHCP: true, + ipAddress: "", + netmask: "", + gateway: "", + dnsServer: "", + }, + ] + } + + }, + "description": "" + }, + delay: 1200, + }, + { + url: '/api/config/Transforms/Linear', + method: 'GET', + body: { + "config": { + "offset": 0, + "multiplier": 1, + "value": 80.20713806 + }, + "schema": { + "type": "object", + "properties": { + "multiplier": { + "title": "Multiplier", + "type": "number", + "readOnly": false + }, + "offset": { + "title": "Constant offset", + "type": "number", + "readOnly": false + }, + "value": { + "title": "Last value", + "type": "number", + "readOnly": true + } + } + }, + "description": "Linear transform custom description" + }, + delay: 400, + }, + ] +) diff --git a/web/mock/api-info.mock.ts b/web/mock/api-info.mock.ts new file mode 100644 index 000000000..84dd8919d --- /dev/null +++ b/web/mock/api-info.mock.ts @@ -0,0 +1,80 @@ +import { defineMock } from 'vite-plugin-mock-dev-server' + +export default defineMock( + [ + { + url: '/api/info', + delay: 800, + body: () => { + + const data = [ + { + "name": "Build date", + "value": "Apr 29 2022 12:34:26", + "group": "Software", + "order": 2000 + }, + { + "name": "Hostname", + "value": "asyncnew", + "group": "Network", + "order": 500 + }, + { + "name": "MAC Address", + "value": "94:3C:C6:9A:xx:xx", + "group": "Network", + "order": 1100 + }, + { + "name": "SK connection status", + "value": "Connected", + "group": "Signal K", + "order": 1600 + }, + { + "name": "SSID", + "value": "Sensors", + "group": "Network", + "order": 1200 + }, + { + "name": "SenseESP version", + "value": "2.4.2-alpha", + "group": "Software", + "order": 1900 + }, + { + "name": "Signal K server address", + "value": "", + "group": "Signal K", + "order": 1400 + }, + { + "name": "Signal K server port", + "value": 0, + "group": "Signal K", + "order": 1500 + }, + { + "name": "WiFi signal strength", + "value": -45, + "group": "Network", + "order": 1300 + } + ]; + + // get a random integer between 0 and 100 + const randomInteger = Math.floor(Math.random() * 100); + + data.push({ + "name": "Battery level", + "value": randomInteger, + "group": "Power", + "order": 100 + }) + return data; + } + } + ] +); diff --git a/web/mock/api-routes.mock.ts b/web/mock/api-routes.mock.ts new file mode 100644 index 000000000..f3bf9d3f6 --- /dev/null +++ b/web/mock/api-routes.mock.ts @@ -0,0 +1,61 @@ +import { defineMock } from 'vite-plugin-mock-dev-server' +import { readFile } from 'fs/promises' + +export default defineMock( + [ + { + url: '/api/routes', + method: 'GET', + body: [ + { name: "Status", path: "/status", componentName: "StatusPage" }, + { name: "System", path: "/system", componentName: "SystemPage" }, + { name: "WiFi", path: "/wifi", componentName: "WiFiConfigPage" }, + { name: "Signal K", path: "/signalk", componentName: "SignalKPage" }, + { name: "Configuration", path: "/configuration", componentName: "ConfigurationPage" }, + { name: "SensESP Plugin", path: "/sensesp-plugin/sensesp-plugin", componentName: "SensESPPluginPage", loadPath: "/api/plugins/sensesp-plugin/sensesp-plugin.js" }, + ] + , + delay: 100, + }, + { + url: '/api/plugins/sensesp-plugin/sensesp-plugin.js', + method: 'GET', + headers: { + 'Content-Type': 'application/javascript' + }, + body: await readFile('../webui-plugins/sample-plugin-js/dist/assets/sensesp-plugin.js', 'utf-8'), + }, + { + url: '/api/plugins/sensesp-plugin/__federation_fn_import.js', + method: 'GET', + headers: { + 'Content-Type': 'application/javascript' + }, + body: await readFile('../webui-plugins/sample-plugin-js/dist/assets/__federation_fn_import.js', 'utf-8'), + }, + { + url: '/api/plugins/sensesp-plugin/__federation_shared_preact-8_xvI4no.js', + method: 'GET', + headers: { + 'Content-Type': 'application/javascript' + }, + body: await readFile('../webui-plugins/sample-plugin-js/dist/assets/__federation_shared_preact-8_xvI4no.js', 'utf-8'), + }, + { + url: '/api/plugins/sensesp-plugin/preload-helper-xR9xMGMN.js', + method: 'GET', + headers: { + 'Content-Type': 'application/javascript' + }, + body: await readFile('../webui-plugins/sample-plugin-js/dist/assets/preload-helper-xR9xMGMN.js', 'utf-8'), + }, + { + url: '/api/plugins/sensesp-plugin/__federation_expose_SensESPPlugin-jc4KNWOO.js', + method: 'GET', + headers: { + 'Content-Type': 'application/javascript' + }, + body: await readFile('../webui-plugins/sample-plugin-js/dist/assets/__federation_expose_SensESPPlugin-jc4KNWOO.js', 'utf-8'), + } + ] +) diff --git a/web/mock/api-signalk.mock.ts b/web/mock/api-signalk.mock.ts new file mode 100644 index 000000000..8db1c1b9f --- /dev/null +++ b/web/mock/api-signalk.mock.ts @@ -0,0 +1,35 @@ +import { defineMock } from 'vite-plugin-mock-dev-server' + +export default defineMock( + [ + { + url: '/api/signalk/status', + delay: 800, + method: 'GET', + body: () => { + const statusChoices = [ + "connected", + "disconnected", + "connecting", + "unknown", + "unauthorized", + "error", + "authenticating", + ]; + const randomStatus = statusChoices[ + Math.floor(Math.random() * statusChoices.length) + ]; + // create rx and tx deltas with random values between 0 and 100000 + const randomRxDeltas = Math.floor(Math.random() * 100000); + const randomTxDeltas = Math.floor(Math.random() * 100000); + const data = { + connectionStatus: randomStatus, + numRxDeltas: randomRxDeltas, + numTxDeltas: randomTxDeltas, + }; + return data; + } + + }, + ] +); diff --git a/web/mock/api-wifi.mock.ts b/web/mock/api-wifi.mock.ts new file mode 100644 index 000000000..d449617ce --- /dev/null +++ b/web/mock/api-wifi.mock.ts @@ -0,0 +1,80 @@ +import { defineMock } from 'vite-plugin-mock-dev-server' + +const network_data = { + "networks": [ + { + "ssid": "Boat Network", "rssi": -45, "encryption": 3, "channel": 1, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Home Network", "rssi": -45, "encryption": 3, "channel": 1, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Other Network", "rssi": -45, "encryption": 3, "channel": 1, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Boat Network", "rssi": -46, "encryption": 3, "channel": 1, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Other Network 2", "rssi": -69, "encryption": 3, "channel": 6, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Random Network", "rssi": -78, "encryption": 3, "channel": 6, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Boat Network", "rssi": -78, "encryption": 3, "channel": 6, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Home Network", "rssi": -78, "encryption": 3, "channel": 6, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Other Network", "rssi": -79, "encryption": 3, "channel": 6, "bssid": "11:22:33:44:55:66" + }, + { + "ssid": "Other Network 3", "rssi": -84, "encryption": 3, "channel": 6, "bssid": "11:22:33:44:55:66" + } + ] +}; + +let scanning = false; +let scan_start_time = 0; + +export default defineMock( + [ + { + url: '/api/wifi/scan', + response(req, resp) { + scanning = true; + scan_start_time = Date.now(); + // Return status code 202 Accepted with the body "SCAN STARTED". + resp.statusCode = 202; + resp.end("SCAN STARTED"); + } + }, + { + url: '/api/wifi/scan-results', + response(req, resp) { + if (!scanning) { + // Return 400 Bad Request with the body "SCAN FAILED". + resp.statusCode = 400; + resp.end("SCAN FAILED"); + } else { + // If scanning and less than 3 seconds have passed, return status code 202 Accepted with the body "SCAN RUNNING". + if (Date.now() - scan_start_time < 3000) { + resp.statusCode = 202; + resp.end("SCAN RUNNING"); + } else { + // If scanning and more than 4 seconds have passed, return status code 200 OK with the body of the scan results. + // Remove network_data rows with a 30% chance. + let filtered_data = { ...network_data }; + filtered_data.networks = network_data.networks.filter(() => Math.random() > 0.3); + scanning = false; + resp.statusCode = 200; + resp.setHeader('Content-Type', 'application/json'); + resp.end(JSON.stringify(filtered_data)); + } + } + } + }, + ] +); + diff --git a/web/package-lock.json b/web/package-lock.json new file mode 100644 index 000000000..c52622e56 --- /dev/null +++ b/web/package-lock.json @@ -0,0 +1,14095 @@ +{ + "name": "sensesp-webui", + "lockfileVersion": 3, + "requires": true, + "packages": { + "": { + "name": "sensesp-webui", + "dependencies": { + "bootstrap": "^5.3.2", + "immer": "^10.0.3", + "preact": "^10.13.1", + "preact-render-to-string": "^6.2.1", + "preact-router": "^4.1.2" + }, + "devDependencies": { + "@originjs/vite-plugin-federation": "^1.3.2", + "@preact/preset-vite": "^2.7.0", + "@types/bootstrap": "^5.2.7", + "@typescript-eslint/eslint-plugin": "^6.7.4", + "autoprefixer": "^10.4.14", + "eslint": "^8.51.0", + "eslint-config-preact": "^1.3.0", + "eslint-config-prettier": "^9.0.0", + "eslint-config-standard-with-typescript": "^39.1.1", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jest": "^27.4.2", + "eslint-plugin-n": "^16.1.0", + "eslint-plugin-preact": "^0.1.0", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react": "^7.33.2", + "jest": "^29.7.0", + "node-sass": "^9.0.0", + "npm-run-all": "^4.1.5", + "postcss": "^8.4.27", + "postcss-cli": "^10.1.0", + "prettier": "3.0.3", + "prettier-plugin-organize-imports": "^3.2.3", + "purgecss": "^5.0.0", + "rollup-plugin-brotli": "^3.1.0", + "sass": "^1.64.1", + "sass-loader": "^13.3.2", + "typescript": "^5.2.2", + "vite": "^5.0.0", + "vite-plugin-mock-dev-server": "^1.3.4", + "vite-tsconfig-paths": "^4.2.1" + } + }, + "node_modules/@aashutoshrathi/word-wrap": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/@aashutoshrathi/word-wrap/-/word-wrap-1.2.6.tgz", + "integrity": "sha512-1Yjs2SvM8TflER/OD3cOjhWWOZb58A2t7wpE2S9XfBYTiIl+XFhQG2bjy4Pu1I+EAlCNUzRDYDdFwFYUKvXcIA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/@adobe/css-tools": { + "version": "4.3.3", + "resolved": "https://registry.npmjs.org/@adobe/css-tools/-/css-tools-4.3.3.tgz", + "integrity": "sha512-rE0Pygv0sEZ4vBWHlAgJLGDU7Pm8xoO6p3wsEceb7GYAjScrOHpEo8KK/eVkAcnSM+slAEtXjA2JpdjLp4fJQQ==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/@ampproject/remapping": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/@ampproject/remapping/-/remapping-2.2.1.tgz", + "integrity": "sha512-lFMjJTrFL3j7L9yBxwYfCq2k6qqwHyzuUl/XBnif78PWTJYyL/dfowQHWE3sp6U6ZzqWiiIZnpTMO96zhkjwtg==", + "dev": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/code-frame": { + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.23.5.tgz", + "integrity": "sha512-CgH3s1a96LipHCmSUmYFPwY7MNx8C3avkq7i4Wl3cfa662ldtUe4VM1TPXX70pfmrlWTb6jLqTYrZyT2ZTJBgA==", + "dev": true, + "dependencies": { + "@babel/highlight": "^7.23.4", + "chalk": "^2.4.2" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/compat-data": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.22.20.tgz", + "integrity": "sha512-BQYjKbpXjoXwFW5jGqiizJQQT/aC7pFm9Ok1OWssonuguICi264lbgMzRp2ZMmRSlfkX6DsWDDcsrctK8Rwfiw==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/core": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.23.0.tgz", + "integrity": "sha512-97z/ju/Jy1rZmDxybphrBuI+jtJjFVoz7Mr9yUQVVVi+DNZE333uFQeMOqcCIy1x3WYBIbWftUSLmbNXNT7qFQ==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.22.13", + "@babel/generator": "^7.23.0", + "@babel/helper-compilation-targets": "^7.22.15", + "@babel/helper-module-transforms": "^7.23.0", + "@babel/helpers": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0", + "convert-source-map": "^2.0.0", + "debug": "^4.1.0", + "gensync": "^1.0.0-beta.2", + "json5": "^2.2.3", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/babel" + } + }, + "node_modules/@babel/eslint-parser": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/eslint-parser/-/eslint-parser-7.22.15.tgz", + "integrity": "sha512-yc8OOBIQk1EcRrpizuARSQS0TWAcOMpEJ1aafhNznaeYkeL+OhqnDObGFylB8ka8VFF/sZc+S4RzHyO+3LjQxg==", + "dev": true, + "dependencies": { + "@nicolo-ribaudo/eslint-scope-5-internals": "5.1.1-v1", + "eslint-visitor-keys": "^2.1.0", + "semver": "^6.3.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || >=14.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.11.0", + "eslint": "^7.5.0 || ^8.0.0" + } + }, + "node_modules/@babel/eslint-parser/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/@babel/generator": { + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.23.6.tgz", + "integrity": "sha512-qrSfCYxYQB5owCmGLbl8XRpX1ytXlpueOb0N0UmQwA073KZxejgQTzAmJezxvpwQD9uGtK2shHdi55QT+MbjIw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.23.6", + "@jridgewell/gen-mapping": "^0.3.2", + "@jridgewell/trace-mapping": "^0.3.17", + "jsesc": "^2.5.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-annotate-as-pure": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-compilation-targets": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.22.15.tgz", + "integrity": "sha512-y6EEzULok0Qvz8yyLkCvVX+02ic+By2UdOhylwUOvOn9dvYc9mKICJuuU1n1XBI02YWsNsnrY1kc6DVbjcXbtw==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.22.9", + "@babel/helper-validator-option": "^7.22.15", + "browserslist": "^4.21.9", + "lru-cache": "^5.1.1", + "semver": "^6.3.1" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-environment-visitor": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-function-name": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-hoist-variables": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-imports": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.22.15.tgz", + "integrity": "sha512-0pYVBnDKZO2fnSPCrgM/6WMc7eS20Fbok+0r88fp+YtWVLZrp4CkafFGIp+W0VKw4a22sgebPT99y+FDNMdP4w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-module-transforms": { + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.0.tgz", + "integrity": "sha512-WhDWw1tdrlT0gMgUJSlX0IQvoO1eN279zrAUbVB+KpV2c3Tylz8+GnKOLllCS6Z/iZQEyVYxhZVUdPTqs2YYPw==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/@babel/helper-plugin-utils": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.22.5.tgz", + "integrity": "sha512-uLls06UVKgFG9QD4OeFYLEGteMIAa5kpTPcFL28yuCIIzsf6ZyKZMllKVOCZFhiZ5ptnwX4mtKdWCBE/uT4amg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-simple-access": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-split-export-declaration": { + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", + "dev": true, + "dependencies": { + "@babel/types": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-string-parser": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.23.4.tgz", + "integrity": "sha512-803gmbQdqwdf4olxrX4AJyFBV/RTr3rSmOj0rKwesmzlfhYNDEs+/iOcznzpNWlJlIlTJC2QfPFcHB6DlzdVLQ==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-identifier": { + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helper-validator-option": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.22.15.tgz", + "integrity": "sha512-bMn7RmyFjY/mdECUbgn9eoSY4vqvacUnS9i9vGAGttgFWesO6B4CYWA7XlpbWgBt71iv/hfbPlynohStqnu5hA==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/helpers": { + "version": "7.23.1", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.23.1.tgz", + "integrity": "sha512-chNpneuK18yW5Oxsr+t553UZzzAs3aZnFm4bxhebsNTeshrC95yA7l5yl7GBAG+JG1rF0F7zzD2EixK9mWSDoA==", + "dev": true, + "dependencies": { + "@babel/template": "^7.22.15", + "@babel/traverse": "^7.23.0", + "@babel/types": "^7.23.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/highlight": { + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.23.4.tgz", + "integrity": "sha512-acGdbYSfp2WheJoJm/EBBBLh/ID8KDc64ISZ9DYtBmC8/Q204PZJLHyzeB5qMzJ5trcOkybd78M4x2KWsUq++A==", + "dev": true, + "dependencies": { + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/parser": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.23.9.tgz", + "integrity": "sha512-9tcKgqKbs3xGJ+NtKF2ndOBBLVwPjl1SHxPQkd36r3Dlirw3xWUeGaTbqr7uGZcTaxkVNwc+03SVP7aCdWrTlA==", + "dev": true, + "bin": { + "parser": "bin/babel-parser.js" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@babel/plugin-syntax-async-generators": { + "version": "7.8.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", + "integrity": "sha512-tycmZxkGfZaxhMRbXlPXuVFpdWlXpir2W4AMhSJgRKzk/eDlIXOhb2LHWoLpDF7TEHylV5zNhykX6KAgHJmTNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-bigint": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-bigint/-/plugin-syntax-bigint-7.8.3.tgz", + "integrity": "sha512-wnTnFlG+YxQm3vDxpGE57Pj0srRU4sHE/mDkt1qv2YJJSeUAec2ma4WLUnUPeKjyrfntVwe/N6dCXpU+zL3Npg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-class-properties": { + "version": "7.12.13", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-class-properties/-/plugin-syntax-class-properties-7.12.13.tgz", + "integrity": "sha512-fm4idjKla0YahUNgFNLCB0qySdsoPiZP3iQE3rky0mBUtMZ23yDJ9SJdg6dXTSDnulOVqiF3Hgr9nbXvXTQZYA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.12.13" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-decorators": { + "version": "7.22.10", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-decorators/-/plugin-syntax-decorators-7.22.10.tgz", + "integrity": "sha512-z1KTVemBjnz+kSEilAsI4lbkPOl5TvJH7YDSY1CTIzvLWJ+KHXp+mRe8VPmfnyvqOPqar1V2gid2PleKzRUstQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-meta": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-meta/-/plugin-syntax-import-meta-7.10.4.tgz", + "integrity": "sha512-Yqfm+XDx0+Prh3VSeEQCPU81yC+JWZ2pDPFSS4ZdpfZhp4MkFMaDC1UqseovEKwSUpnIL7+vK+Clp7bfh0iD7g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-json-strings": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-json-strings/-/plugin-syntax-json-strings-7.8.3.tgz", + "integrity": "sha512-lY6kdGpWHvjoe2vk4WrAapEuBR69EMxZl+RoGRhrFGNYVK8mOPAW8VfbT/ZgrFbXlDNiiaxQnAtgVCZ6jv30EA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-jsx": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.22.5.tgz", + "integrity": "sha512-gvyP4hZrgrs/wWMaocvxZ44Hw0b3W8Pe+cMxc8V1ULQ07oh8VNbIRaoD1LRZVTvD+0nieDKjfgKg89sD7rrKrg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-logical-assignment-operators": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-logical-assignment-operators/-/plugin-syntax-logical-assignment-operators-7.10.4.tgz", + "integrity": "sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-nullish-coalescing-operator": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-nullish-coalescing-operator/-/plugin-syntax-nullish-coalescing-operator-7.8.3.tgz", + "integrity": "sha512-aSff4zPII1u2QD7y+F8oDsz19ew4IGEJg9SVW+bqwpwtfFleiQDMdzA/R+UlWDzfnHFCxxleFT0PMIrR36XLNQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-numeric-separator": { + "version": "7.10.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-numeric-separator/-/plugin-syntax-numeric-separator-7.10.4.tgz", + "integrity": "sha512-9H6YdfkcK/uOnY/K7/aA2xpzaAgkQn37yzWUMRK7OaPOqOpGS1+n0H5hxT9AUw9EsSjPW8SVyMJwYRtWs3X3ug==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.10.4" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-object-rest-spread": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-object-rest-spread/-/plugin-syntax-object-rest-spread-7.8.3.tgz", + "integrity": "sha512-XoqMijGZb9y3y2XskN+P1wUGiVwWZ5JmoDRwx5+3GmEplNyVM2s2Dg8ILFQm8rWM48orGy5YpI5Bl8U1y7ydlA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-catch-binding": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-catch-binding/-/plugin-syntax-optional-catch-binding-7.8.3.tgz", + "integrity": "sha512-6VPD0Pc1lpTqw0aKoeRTMiB+kWhAoT24PA+ksWSBrFtl5SIRVpZlwN3NNPQjehA2E/91FV3RjLWoVTglWcSV3Q==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-optional-chaining": { + "version": "7.8.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-optional-chaining/-/plugin-syntax-optional-chaining-7.8.3.tgz", + "integrity": "sha512-KoK9ErH1MBlCPxV0VANkXW2/dw4vlbGDrFgz8bmUsBGYkFRcbRwMh6cIJubdPrkxRwuGdtCk0v/wPTKbQgBjkg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.8.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-top-level-await": { + "version": "7.14.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-top-level-await/-/plugin-syntax-top-level-await-7.14.5.tgz", + "integrity": "sha512-hx++upLv5U1rgYfwe1xBQUhRmU41NEvpUvrp8jkrSCdvGSnM5/qdRMtylJ6PG5OFkBaHkbTAKTnd3/YyESRHFw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-typescript": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.22.5.tgz", + "integrity": "sha512-1mS2o03i7t1c6VzH6fdQ3OA8tcEIxwG18zIPRp+UY1Ihv6W+XZzBCVxExF9upussPXJ0xE9XRHwMoNs1ep/nRQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.22.15.tgz", + "integrity": "sha512-oKckg2eZFa8771O/5vi7XeTvmM6+O9cxZu+kanTU7tD4sin5nO/G8jGJhq8Hvt2Z0kUoEDRayuZLaUlYl8QuGA==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.22.5", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-react-jsx-development": { + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/runtime": { + "version": "7.23.1", + "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.23.1.tgz", + "integrity": "sha512-hC2v6p8ZSI/W0HUzh3V8C5g+NwSKzKPtJwSpTjwl0o297GP9+ZLQSkdvHz46CM3LqyoXxq+5G9komY+eSqSO0g==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "regenerator-runtime": "^0.14.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/template": { + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.22.15.tgz", + "integrity": "sha512-QPErUVm4uyJa60rkI73qneDacvdvzxshT3kksGqlGWYdOTIUOwJ7RDUL8sGqslY1uXWSL6xMFKEXDS3ox2uF0w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.22.13", + "@babel/parser": "^7.22.15", + "@babel/types": "^7.22.15" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/traverse": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.23.9.tgz", + "integrity": "sha512-I/4UJ9vs90OkBtY6iiiTORVMyIhJ4kAVmsKo9KFc8UOxMeUfi2hvtIBsET5u9GizXE6/GFSuKCTNfgCswuEjRg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.23.5", + "@babel/generator": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.23.9", + "@babel/types": "^7.23.9", + "debug": "^4.3.1", + "globals": "^11.1.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@babel/types": { + "version": "7.23.9", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.23.9.tgz", + "integrity": "sha512-dQjSq/7HaSjRM43FFGnv5keM2HsxpmyV1PfaSVm0nzzjwwTmjOe6J4bC8e3+pTEIgHaHj+1ZlLThRJ2auc/w1Q==", + "dev": true, + "dependencies": { + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", + "to-fast-properties": "^2.0.0" + }, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/@bcoe/v8-coverage": { + "version": "0.2.3", + "resolved": "https://registry.npmjs.org/@bcoe/v8-coverage/-/v8-coverage-0.2.3.tgz", + "integrity": "sha512-0hYQ8SB4Db5zvZB4axdMHGwEaQjkZzFjQiN9LVYvIFB2nSUHW9tYpxWriPrWDASIxiaXax83REcLxuSdnGPZtw==", + "dev": true + }, + "node_modules/@esbuild/android-arm": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.19.5.tgz", + "integrity": "sha512-bhvbzWFF3CwMs5tbjf3ObfGqbl/17ict2/uwOSfr3wmxDE6VdS2GqY/FuzIPe0q0bdhj65zQsvqfArI9MY6+AA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-arm64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.19.5.tgz", + "integrity": "sha512-5d1OkoJxnYQfmC+Zd8NBFjkhyCNYwM4n9ODrycTFY6Jk1IGiZ+tjVJDDSwDt77nK+tfpGP4T50iMtVi4dEGzhQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/android-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.19.5.tgz", + "integrity": "sha512-9t+28jHGL7uBdkBjL90QFxe7DVA+KGqWlHCF8ChTKyaKO//VLuoBricQCgwhOjA1/qOczsw843Fy4cbs4H3DVA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-arm64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.19.5.tgz", + "integrity": "sha512-mvXGcKqqIqyKoxq26qEDPHJuBYUA5KizJncKOAf9eJQez+L9O+KfvNFu6nl7SCZ/gFb2QPaRqqmG0doSWlgkqw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/darwin-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.19.5.tgz", + "integrity": "sha512-Ly8cn6fGLNet19s0X4unjcniX24I0RqjPv+kurpXabZYSXGM4Pwpmf85WHJN3lAgB8GSth7s5A0r856S+4DyiA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-arm64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.19.5.tgz", + "integrity": "sha512-GGDNnPWTmWE+DMchq1W8Sd0mUkL+APvJg3b11klSGUDvRXh70JqLAO56tubmq1s2cgpVCSKYywEiKBfju8JztQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/freebsd-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.19.5.tgz", + "integrity": "sha512-1CCwDHnSSoA0HNwdfoNY0jLfJpd7ygaLAp5EHFos3VWJCRX9DMwWODf96s9TSse39Br7oOTLryRVmBoFwXbuuQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.19.5.tgz", + "integrity": "sha512-lrWXLY/vJBzCPC51QN0HM71uWgIEpGSjSZZADQhq7DKhPcI6NH1IdzjfHkDQws2oNpJKpR13kv7/pFHBbDQDwQ==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-arm64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.19.5.tgz", + "integrity": "sha512-o3vYippBmSrjjQUCEEiTZ2l+4yC0pVJD/Dl57WfPwwlvFkrxoSO7rmBZFii6kQB3Wrn/6GwJUPLU5t52eq2meA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ia32": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.19.5.tgz", + "integrity": "sha512-MkjHXS03AXAkNp1KKkhSKPOCYztRtK+KXDNkBa6P78F8Bw0ynknCSClO/ztGszILZtyO/lVKpa7MolbBZ6oJtQ==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-loong64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.19.5.tgz", + "integrity": "sha512-42GwZMm5oYOD/JHqHska3Jg0r+XFb/fdZRX+WjADm3nLWLcIsN27YKtqxzQmGNJgu0AyXg4HtcSK9HuOk3v1Dw==", + "cpu": [ + "loong64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-mips64el": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.19.5.tgz", + "integrity": "sha512-kcjndCSMitUuPJobWCnwQ9lLjiLZUR3QLQmlgaBfMX23UEa7ZOrtufnRds+6WZtIS9HdTXqND4yH8NLoVVIkcg==", + "cpu": [ + "mips64el" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-ppc64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.19.5.tgz", + "integrity": "sha512-yJAxJfHVm0ZbsiljbtFFP1BQKLc8kUF6+17tjQ78QjqjAQDnhULWiTA6u0FCDmYT1oOKS9PzZ2z0aBI+Mcyj7Q==", + "cpu": [ + "ppc64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-riscv64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.19.5.tgz", + "integrity": "sha512-5u8cIR/t3gaD6ad3wNt1MNRstAZO+aNyBxu2We8X31bA8XUNyamTVQwLDA1SLoPCUehNCymhBhK3Qim1433Zag==", + "cpu": [ + "riscv64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-s390x": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.19.5.tgz", + "integrity": "sha512-Z6JrMyEw/EmZBD/OFEFpb+gao9xJ59ATsoTNlj39jVBbXqoZm4Xntu6wVmGPB/OATi1uk/DB+yeDPv2E8PqZGw==", + "cpu": [ + "s390x" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/linux-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.19.5.tgz", + "integrity": "sha512-psagl+2RlK1z8zWZOmVdImisMtrUxvwereIdyJTmtmHahJTKb64pAcqoPlx6CewPdvGvUKe2Jw+0Z/0qhSbG1A==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/netbsd-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.19.5.tgz", + "integrity": "sha512-kL2l+xScnAy/E/3119OggX8SrWyBEcqAh8aOY1gr4gPvw76la2GlD4Ymf832UCVbmuWeTf2adkZDK+h0Z/fB4g==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/openbsd-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.19.5.tgz", + "integrity": "sha512-sPOfhtzFufQfTBgRnE1DIJjzsXukKSvZxloZbkJDG383q0awVAq600pc1nfqBcl0ice/WN9p4qLc39WhBShRTA==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/sunos-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.19.5.tgz", + "integrity": "sha512-dGZkBXaafuKLpDSjKcB0ax0FL36YXCvJNnztjKV+6CO82tTYVDSH2lifitJ29jxRMoUhgkg9a+VA/B03WK5lcg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "sunos" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-arm64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.19.5.tgz", + "integrity": "sha512-dWVjD9y03ilhdRQ6Xig1NWNgfLtf2o/STKTS+eZuF90fI2BhbwD6WlaiCGKptlqXlURVB5AUOxUj09LuwKGDTg==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-ia32": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.19.5.tgz", + "integrity": "sha512-4liggWIA4oDgUxqpZwrDhmEfAH4d0iljanDOK7AnVU89T6CzHon/ony8C5LeOdfgx60x5cnQJFZwEydVlYx4iw==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@esbuild/win32-x64": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.19.5.tgz", + "integrity": "sha512-czTrygUsB/jlM8qEW5MD8bgYU2Xg14lo6kBDXW6HdxKjh8M5PzETGiSHaz9MtbXBYDloHNUAUW2tMiKW4KM9Mw==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/@eslint-community/eslint-utils": { + "version": "4.4.0", + "resolved": "https://registry.npmjs.org/@eslint-community/eslint-utils/-/eslint-utils-4.4.0.tgz", + "integrity": "sha512-1/sA4dwrzBAyeUoQ6oxahHKmrZvsnLCg4RfxW3ZFGGmQkSNQPFNLV9CUEFQP1x9EYXHTo5p6xdhZM1Ne9p/AfA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || >=8.0.0" + } + }, + "node_modules/@eslint-community/regexpp": { + "version": "4.9.0", + "resolved": "https://registry.npmjs.org/@eslint-community/regexpp/-/regexpp-4.9.0.tgz", + "integrity": "sha512-zJmuCWj2VLBt4c25CfBIbMZLGLyhkvs7LznyVX5HfpzeocThgIj5XQK4L+g3U36mMcx8bPMhGyPpwCATamC4jQ==", + "dev": true, + "engines": { + "node": "^12.0.0 || ^14.0.0 || >=16.0.0" + } + }, + "node_modules/@eslint/eslintrc": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@eslint/eslintrc/-/eslintrc-2.1.2.tgz", + "integrity": "sha512-+wvgpDsrB1YqAMdEUCcnTlpfVBH7Vqn6A/NT3D8WVXFIaKMlErPIZT3oCIAVCOtarRpMtelZLqJeU3t7WY6X6g==", + "dev": true, + "dependencies": { + "ajv": "^6.12.4", + "debug": "^4.3.2", + "espree": "^9.6.0", + "globals": "^13.19.0", + "ignore": "^5.2.0", + "import-fresh": "^3.2.1", + "js-yaml": "^4.1.0", + "minimatch": "^3.1.2", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/@eslint/eslintrc/node_modules/globals": { + "version": "13.22.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@eslint/js": { + "version": "8.51.0", + "resolved": "https://registry.npmjs.org/@eslint/js/-/js-8.51.0.tgz", + "integrity": "sha512-HxjQ8Qn+4SI3/AFv6sOrDB+g6PpUTDwSJiQqOrnneEk8L71161srI9gjzzZvYVbzHiVg/BvcH95+cK/zfIt4pg==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + } + }, + "node_modules/@gar/promisify": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/@gar/promisify/-/promisify-1.1.3.tgz", + "integrity": "sha512-k2Ty1JcVojjJFwrg/ThKi2ujJ7XNLYaFGNB/bWT9wGR+oSMJHMa5w+CUq6p/pVrKeNNgA7pCqEcjSnHVoqJQFw==", + "dev": true + }, + "node_modules/@humanwhocodes/config-array": { + "version": "0.11.11", + "resolved": "https://registry.npmjs.org/@humanwhocodes/config-array/-/config-array-0.11.11.tgz", + "integrity": "sha512-N2brEuAadi0CcdeMXUkhbZB84eskAc8MEX1By6qEchoVywSgXPIjou4rYsl0V3Hj0ZnuGycGCjdNgockbzeWNA==", + "dev": true, + "dependencies": { + "@humanwhocodes/object-schema": "^1.2.1", + "debug": "^4.1.1", + "minimatch": "^3.0.5" + }, + "engines": { + "node": ">=10.10.0" + } + }, + "node_modules/@humanwhocodes/module-importer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/module-importer/-/module-importer-1.0.1.tgz", + "integrity": "sha512-bxveV4V8v5Yb4ncFTT3rPSgZBOpCkjfK0y4oVVVJwIuDVBRMDXrPyXRL988i5ap9m9bnyEEjWfm5WkBmtffLfA==", + "dev": true, + "engines": { + "node": ">=12.22" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/nzakas" + } + }, + "node_modules/@humanwhocodes/object-schema": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-1.2.1.tgz", + "integrity": "sha512-ZnQMnLV4e7hDlUvw8H+U8ASL02SS2Gn6+9Ac3wGGLIe7+je2AeAOxPY+izIPJDfFDb7eDjev0Us8MO1iFRN8hA==", + "dev": true + }, + "node_modules/@istanbuljs/load-nyc-config": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", + "integrity": "sha512-VjeHSlIzpv/NyD3N0YuHfXOPDIixcA1q2ZV98wsMqcYlPmv2n3Yb2lYP9XMElnaFVXg5A7YLTeLu6V84uQDjmQ==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "find-up": "^4.1.0", + "get-package-type": "^0.1.0", + "js-yaml": "^3.13.1", + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@istanbuljs/schema": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", + "integrity": "sha512-ZXRY4jNvVgSVQ8DL3LTcakaAtXwTVUxE81hslsyD2AtoXW/wVob10HkOJ1X/pAlcI7D+2YoZKg5do8G/w6RYgA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/console/-/console-29.7.0.tgz", + "integrity": "sha512-5Ni4CU7XHQi32IJ398EEP4RrB8eV09sXP2ROqD4bksHrnTree52PsxvX8tpL8LvTZ3pFzXyPbNQReSN41CAhOg==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/console/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/console/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/console/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/console/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/console/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/core/-/core-29.7.0.tgz", + "integrity": "sha512-n7aeXWKMnGtDA48y8TLWJPJmLmmZ642Ceo78cYWEpiD7FzDgmNDV/GCVRorPABdXLJZ/9wzzgZAlHjXjxDHGsg==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/reporters": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-changed-files": "^29.7.0", + "jest-config": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-resolve-dependencies": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "jest-watcher": "^29.7.0", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/core/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/core/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/core/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/core/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/core/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/core/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/@jest/core/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/environment": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/environment/-/environment-29.7.0.tgz", + "integrity": "sha512-aQIfHDq33ExsN4jP1NWGXhxgQ/wixs60gDiKO+XVMd8Mn0NWPWgc34ZQDTb2jKaUWQ7MuwoitXAsN2XVXNMpAw==", + "dev": true, + "dependencies": { + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-8uMeAMycttpva3P1lBHB8VciS9V0XAr3GymPpipdyQXbBcuhkLQOSe8E/p92RyAdToS6ZD1tFkX+CkhoECE0dQ==", + "dev": true, + "dependencies": { + "expect": "^29.7.0", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/expect-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/expect-utils/-/expect-utils-29.7.0.tgz", + "integrity": "sha512-GlsNBWiFQFCVi9QVSx7f5AgMeLxe9YCCs5PuP2O2LdjDAA8Jh9eX7lA1Jq/xdXw3Wb3hyvlFNfZIfcRetSzYcA==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/fake-timers": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/fake-timers/-/fake-timers-29.7.0.tgz", + "integrity": "sha512-q4DH1Ha4TTFPdxLsqDXK1d3+ioSL7yL5oCMJZgDYm6i+6CygW5E5xVr/D1HdsGxjt1ZWSfUAs9OxSB/BNelWrQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@sinonjs/fake-timers": "^10.0.2", + "@types/node": "*", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/globals": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/globals/-/globals-29.7.0.tgz", + "integrity": "sha512-mpiz3dutLbkW2MNFubUGUEVLkTGiqW6yLVTA+JbP6fI6J5iL9Y0Nlg8k95pcF8ctKwCS7WVxteBs29hhfAotzQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/types": "^29.6.3", + "jest-mock": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/reporters": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/reporters/-/reporters-29.7.0.tgz", + "integrity": "sha512-DApq0KJbJOEzAFYjHADNNxAE3KbhxQB1y5Kplb5Waqw6zVbuWatSnMjE5gs8FUgEPmNsnZA3NCWl9NG0ia04Pg==", + "dev": true, + "dependencies": { + "@bcoe/v8-coverage": "^0.2.3", + "@jest/console": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "@types/node": "*", + "chalk": "^4.0.0", + "collect-v8-coverage": "^1.0.0", + "exit": "^0.1.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "istanbul-lib-coverage": "^3.0.0", + "istanbul-lib-instrument": "^6.0.0", + "istanbul-lib-report": "^3.0.0", + "istanbul-lib-source-maps": "^4.0.0", + "istanbul-reports": "^3.1.3", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "slash": "^3.0.0", + "string-length": "^4.0.1", + "strip-ansi": "^6.0.0", + "v8-to-istanbul": "^9.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/@jest/reporters/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/reporters/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/reporters/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/reporters/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/reporters/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/schemas": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", + "dev": true, + "dependencies": { + "@sinclair/typebox": "^0.27.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/source-map": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/source-map/-/source-map-29.6.3.tgz", + "integrity": "sha512-MHjT95QuipcPrpLM+8JMSzFx6eHp5Bm+4XeFDJlwsvVBjmKNiIAvasGK2fxz2WbGRlnvqehFbh07MMa7n3YJnw==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.18", + "callsites": "^3.0.0", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-result": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-result/-/test-result-29.7.0.tgz", + "integrity": "sha512-Fdx+tv6x1zlkJPcWXmMDAG2HBnaR9XPSd5aDWQVsfrZmLVT3lU1cwyxLgRmXR9yrq4NBoEm9BMsfgFzTQAbJYA==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "collect-v8-coverage": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/test-sequencer": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/test-sequencer/-/test-sequencer-29.7.0.tgz", + "integrity": "sha512-GQwJ5WZVrKnOJuiYiAF52UNUJXgTZx1NHjFSEB0qEMmSZKAkdMoIzw/Cj6x6NF4AvV23AUqDpFzQkN/eYCYTxw==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/transform/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/@jest/types/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jridgewell/gen-mapping": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.3.tgz", + "integrity": "sha512-HLhSWOLRi875zjjMG/r+Nv0oCW8umGb0BgEhyX3dDX3egwZtB8PqLnjz3yedt8R5StBrzcg4aBpnh8UA9D1BoQ==", + "dev": true, + "dependencies": { + "@jridgewell/set-array": "^1.0.1", + "@jridgewell/sourcemap-codec": "^1.4.10", + "@jridgewell/trace-mapping": "^0.3.9" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/resolve-uri": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/@jridgewell/resolve-uri/-/resolve-uri-3.1.1.tgz", + "integrity": "sha512-dSYZh7HhCDtCKm4QakX0xFpsRDqjjtZf/kjI/v3T3Nwt5r8/qz/M19F9ySyOqU94SXBmeG9ttTul+YnR4LOxFA==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/set-array": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.2.tgz", + "integrity": "sha512-xnkseuNADM0gt2bs+BvhO0p78Mk762YnZdsuzFV018NoG1Sj1SCQvpSqa7XUaTam5vAGasABV9qXASMKnFMwMw==", + "dev": true, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/@jridgewell/source-map": { + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/source-map/-/source-map-0.3.5.tgz", + "integrity": "sha512-UTYAUj/wviwdsMfzoSJspJxbkH5o1snzwX0//0ENX1u/55kkZZkcTZP6u9bwKGkv+dkk9at4m1Cpt0uY80kcpQ==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/gen-mapping": "^0.3.0", + "@jridgewell/trace-mapping": "^0.3.9" + } + }, + "node_modules/@jridgewell/sourcemap-codec": { + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", + "dev": true + }, + "node_modules/@jridgewell/trace-mapping": { + "version": "0.3.19", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.19.tgz", + "integrity": "sha512-kf37QtfW+Hwx/buWGMPcR60iF9ziHa6r/CZJIHbmcm4+0qrXiVdxegAH0F6yddEVQ7zdkjcGCgCzUu+BcbhQxw==", + "dev": true, + "dependencies": { + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" + } + }, + "node_modules/@mdn/browser-compat-data": { + "version": "5.3.21", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-5.3.21.tgz", + "integrity": "sha512-0MTNMfRvhzksN+XOtXikglAzXIiMQW1JzOZxOz0ymL7LFxX5orVdg8zrlLkgF/3s55Zb7xRadFs15LxpgtD36g==", + "dev": true + }, + "node_modules/@nicolo-ribaudo/eslint-scope-5-internals": { + "version": "5.1.1-v1", + "resolved": "https://registry.npmjs.org/@nicolo-ribaudo/eslint-scope-5-internals/-/eslint-scope-5-internals-5.1.1-v1.tgz", + "integrity": "sha512-54/JRvkLIzzDWshCWfuhadfrfZVPiElY8Fcgmg1HroEly/EDSszzhBAsarCux+D/kOslTRquNzuyGSmUSTTHGg==", + "dev": true, + "dependencies": { + "eslint-scope": "5.1.1" + } + }, + "node_modules/@nodelib/fs.scandir": { + "version": "2.1.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", + "integrity": "sha512-vq24Bq3ym5HEQm2NKCr3yXDwjc7vTsEThRDnkp2DK9p1uqLR+DHurm/NOTo0KG7HYHU7eppKZj3MyqYuMBf62g==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "2.0.5", + "run-parallel": "^1.1.9" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.stat": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz", + "integrity": "sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@nodelib/fs.walk": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/@nodelib/fs.walk/-/fs.walk-1.2.8.tgz", + "integrity": "sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==", + "dev": true, + "dependencies": { + "@nodelib/fs.scandir": "2.1.5", + "fastq": "^1.6.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/@npmcli/fs": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-2.1.2.tgz", + "integrity": "sha512-yOJKRvohFOaLqipNtwYB9WugyZKhC/DZC4VYPmpaCzDBrA8YpK3qHZ8/HGscMnE4GqbkLNuVcCnxkeQEdGt6LQ==", + "dev": true, + "dependencies": { + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@npmcli/fs/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/fs/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@npmcli/fs/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@npmcli/move-file": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-2.0.1.tgz", + "integrity": "sha512-mJd2Z5TjYWq/ttPLLGqArdtnC74J6bOzg4rMDnN+p1xTacZ2yPRCk2y0oSWQtygLR9YVQXgOcONrwtnk3JupxQ==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@originjs/vite-plugin-federation": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@originjs/vite-plugin-federation/-/vite-plugin-federation-1.3.2.tgz", + "integrity": "sha512-9FY7QmF6IxeDO4MZ7Ltvr9SH0hb51WubNKyxQyINHizdcc1j/dO8f9QOqBov7he2j+ekD9le/ONZv8KZtKNFmw==", + "dev": true, + "dependencies": { + "estree-walker": "^3.0.2", + "magic-string": "^0.27.0" + }, + "engines": { + "node": ">=14.0.0", + "pnpm": ">=7.0.1" + } + }, + "node_modules/@originjs/vite-plugin-federation/node_modules/estree-walker": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-3.0.3.tgz", + "integrity": "sha512-7RUKfXgSMMkzt6ZuXmqapOurLGPPfgj6l9uRZ7lRGolvk0y2yocc35LdcxKC5PQZdn2DMqioAQ2NoWcrTKmm6g==", + "dev": true, + "dependencies": { + "@types/estree": "^1.0.0" + } + }, + "node_modules/@pengzhanbo/utils": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@pengzhanbo/utils/-/utils-1.0.9.tgz", + "integrity": "sha512-OTILjdqL5fjaROE/7ecYNgbrxvwjho4zoRnulSn05AyE+HrbcC+l9BdgT7WHt3pZvePdKXwNg4g7HnIRwuwgEQ==", + "dev": true, + "dependencies": { + "throttle-debounce": "^5.0.0" + } + }, + "node_modules/@popperjs/core": { + "version": "2.11.8", + "resolved": "https://registry.npmjs.org/@popperjs/core/-/core-2.11.8.tgz", + "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/popperjs" + } + }, + "node_modules/@preact/preset-vite": { + "version": "2.7.0", + "resolved": "https://registry.npmjs.org/@preact/preset-vite/-/preset-vite-2.7.0.tgz", + "integrity": "sha512-m5N0FVtxbCCDxNk55NGhsRpKJChYcupcuQHzMJc/Bll07IKZKn8amwYciyKFS9haU6AgzDAJ/ewvApr6Qg1DHw==", + "dev": true, + "dependencies": { + "@babel/plugin-transform-react-jsx": "^7.22.15", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@prefresh/vite": "^2.4.1", + "@rollup/pluginutils": "^4.1.1", + "babel-plugin-transform-hook-names": "^1.0.2", + "debug": "^4.3.4", + "kolorist": "^1.8.0", + "resolve": "^1.22.8" + }, + "peerDependencies": { + "@babel/core": "7.x", + "vite": "2.x || 3.x || 4.x || 5.x" + } + }, + "node_modules/@prefresh/babel-plugin": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/@prefresh/babel-plugin/-/babel-plugin-0.5.0.tgz", + "integrity": "sha512-joAwpkUDwo7ZqJnufXRGzUb+udk20RBgfA8oLPBh5aJH2LeStmV1luBfeJTztPdyCscC2j2SmZ/tVxFRMIxAEw==", + "dev": true + }, + "node_modules/@prefresh/core": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/@prefresh/core/-/core-1.5.1.tgz", + "integrity": "sha512-e0mB0Oxtog6ZpKPDBYbzFniFJDIktuKMzOHp7sguntU+ot0yi6dbhJRE9Css1qf0u16wdSZjpL2W2ODWuU05Cw==", + "dev": true, + "peerDependencies": { + "preact": "^10.0.0" + } + }, + "node_modules/@prefresh/utils": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@prefresh/utils/-/utils-1.2.0.tgz", + "integrity": "sha512-KtC/fZw+oqtwOLUFM9UtiitB0JsVX0zLKNyRTA332sqREqSALIIQQxdUCS1P3xR/jT1e2e8/5rwH6gdcMLEmsQ==", + "dev": true + }, + "node_modules/@prefresh/vite": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@prefresh/vite/-/vite-2.4.1.tgz", + "integrity": "sha512-vthWmEqu8TZFeyrBNc9YE5SiC3DVSzPgsOCp/WQ7FqdHpOIJi7Z8XvCK06rBPOtG4914S52MjG9Ls22eVAiuqQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.22.1", + "@prefresh/babel-plugin": "0.5.0", + "@prefresh/core": "^1.5.1", + "@prefresh/utils": "^1.2.0", + "@rollup/pluginutils": "^4.2.1" + }, + "peerDependencies": { + "preact": "^10.4.0", + "vite": ">=2.0.0" + } + }, + "node_modules/@rollup/pluginutils": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/@rollup/pluginutils/-/pluginutils-4.2.1.tgz", + "integrity": "sha512-iKnFXr7NkdZAIHiIWE+BX5ULi/ucVFYWD6TbAV+rZctiRTY2PL6tsIKhoIOaoskiWAkgu+VsbXgUVDNLHf+InQ==", + "dev": true, + "dependencies": { + "estree-walker": "^2.0.1", + "picomatch": "^2.2.2" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/@rollup/rollup-android-arm-eabi": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.5.0.tgz", + "integrity": "sha512-OINaBGY+Wc++U0rdr7BLuFClxcoWaVW3vQYqmQq6B3bqQ/2olkaoz+K8+af/Mmka/C2yN5j+L9scBkv4BtKsDA==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-android-arm64": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.5.0.tgz", + "integrity": "sha512-UdMf1pOQc4ZmUA/NTmKhgJTBimbSKnhPS2zJqucqFyBRFPnPDtwA8MzrGNTjDeQbIAWfpJVAlxejw+/lQyBK/w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ] + }, + "node_modules/@rollup/rollup-darwin-arm64": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.5.0.tgz", + "integrity": "sha512-L0/CA5p/idVKI+c9PcAPGorH6CwXn6+J0Ys7Gg1axCbTPgI8MeMlhA6fLM9fK+ssFhqogMHFC8HDvZuetOii7w==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-darwin-x64": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.5.0.tgz", + "integrity": "sha512-QZCbVqU26mNlLn8zi/XDDquNmvcr4ON5FYAHQQsyhrHx8q+sQi/6xduoznYXwk/KmKIXG5dLfR0CvY+NAWpFYQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ] + }, + "node_modules/@rollup/rollup-linux-arm-gnueabihf": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.5.0.tgz", + "integrity": "sha512-VpSQ+xm93AeV33QbYslgf44wc5eJGYfYitlQzAi3OObu9iwrGXEnmu5S3ilkqE3Pr/FkgOiJKV/2p0ewf4Hrtg==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-gnu": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.5.0.tgz", + "integrity": "sha512-OrEyIfpxSsMal44JpEVx9AEcGpdBQG1ZuWISAanaQTSMeStBW+oHWwOkoqR54bw3x8heP8gBOyoJiGg+fLY8qQ==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-arm64-musl": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.5.0.tgz", + "integrity": "sha512-1H7wBbQuE6igQdxMSTjtFfD+DGAudcYWhp106z/9zBA8OQhsJRnemO4XGavdzHpGhRtRxbgmUGdO3YQgrWf2RA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-gnu": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.5.0.tgz", + "integrity": "sha512-FVyFI13tXw5aE65sZdBpNjPVIi4Q5mARnL/39UIkxvSgRAIqCo5sCpCELk0JtXHGee2owZz5aNLbWNfBHzr71Q==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-linux-x64-musl": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.5.0.tgz", + "integrity": "sha512-eBPYl2sLpH/o8qbSz6vPwWlDyThnQjJfcDOGFbNjmjb44XKC1F5dQfakOsADRVrXCNzM6ZsSIPDG5dc6HHLNFg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ] + }, + "node_modules/@rollup/rollup-win32-arm64-msvc": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.5.0.tgz", + "integrity": "sha512-xaOHIfLOZypoQ5U2I6rEaugS4IYtTgP030xzvrBf5js7p9WI9wik07iHmsKaej8Z83ZDxN5GyypfoyKV5O5TJA==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-ia32-msvc": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.5.0.tgz", + "integrity": "sha512-Al6quztQUrHwcOoU2TuFblUQ5L+/AmPBXFR6dUvyo4nRj2yQRK0WIUaGMF/uwKulvRcXkpHe3k9A8Vf93VDktA==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@rollup/rollup-win32-x64-msvc": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.5.0.tgz", + "integrity": "sha512-8kdW+brNhI/NzJ4fxDufuJUjepzINqJKLGHuxyAtpPG9bMbn8P5mtaCcbOm0EzLJ+atg+kF9dwg8jpclkVqx5w==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ] + }, + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true + }, + "node_modules/@sinonjs/commons": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-3.0.0.tgz", + "integrity": "sha512-jXBtWAF4vmdNmZgD5FoKsVLv3rPgDnLgPbU84LIJ3otV44vJlDRokVng5v8NFJdCf/da9legHcKaRuZs4L7faA==", + "dev": true, + "dependencies": { + "type-detect": "4.0.8" + } + }, + "node_modules/@sinonjs/fake-timers": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-10.3.0.tgz", + "integrity": "sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==", + "dev": true, + "dependencies": { + "@sinonjs/commons": "^3.0.0" + } + }, + "node_modules/@tootallnate/once": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-2.0.0.tgz", + "integrity": "sha512-XCuKFP5PS55gnMVu3dty8KPatLqUoy/ZYzDzAGCQ8JNFCkLXzmI7vNHCR+XpbZaMWQK/vQubr7PkYq8g470J/A==", + "dev": true, + "engines": { + "node": ">= 10" + } + }, + "node_modules/@types/babel__core": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.2.tgz", + "integrity": "sha512-pNpr1T1xLUc2l3xJKuPtsEky3ybxN3m4fJkknfIpTCTfIZCDW57oAg+EfCgIIp2rvCe0Wn++/FfodDS4YXxBwA==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" + } + }, + "node_modules/@types/babel__generator": { + "version": "7.6.5", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.5.tgz", + "integrity": "sha512-h9yIuWbJKdOPLJTbmSpPzkF67e659PbQDba7ifWm5BJ8xTv+sDmS7rFmywkWOvXedGTivCdeGSIIX8WLcRTz8w==", + "dev": true, + "dependencies": { + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__template": { + "version": "7.4.2", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.2.tgz", + "integrity": "sha512-/AVzPICMhMOMYoSx9MoKpGDKdBRsIXMNByh1PXSZoa+v6ZoLa8xxtsT/uLQ/NJm0XVAWl/BvId4MlDeXJaeIZQ==", + "dev": true, + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" + } + }, + "node_modules/@types/babel__traverse": { + "version": "7.20.2", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.2.tgz", + "integrity": "sha512-ojlGK1Hsfce93J0+kn3H5R73elidKUaZonirN33GSmgTUMpzI/MIFfSpF3haANe3G1bEBS9/9/QEqwTzwqFsKw==", + "dev": true, + "dependencies": { + "@babel/types": "^7.20.7" + } + }, + "node_modules/@types/bootstrap": { + "version": "5.2.7", + "resolved": "https://registry.npmjs.org/@types/bootstrap/-/bootstrap-5.2.7.tgz", + "integrity": "sha512-vWs0HzobIB8Af2F0B1GXpaVLSVn1NWULDYgTIWp08Et/r2B3aAwwhFBeOs/rRFWJA38EZTXkWP3tepIjpQkpLg==", + "dev": true, + "dependencies": { + "@popperjs/core": "^2.9.2" + } + }, + "node_modules/@types/eslint": { + "version": "8.44.3", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.44.3.tgz", + "integrity": "sha512-iM/WfkwAhwmPff3wZuPLYiHX18HI24jU8k1ZSH7P8FHwxTjZ2P6CoX2wnF43oprR+YXJM6UUxATkNvyv/JHd+g==", + "dev": true, + "peer": true, + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" + } + }, + "node_modules/@types/eslint-scope": { + "version": "3.7.5", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.5.tgz", + "integrity": "sha512-JNvhIEyxVW6EoMIFIvj93ZOywYFatlpu9deeH6eSx6PE3WHYvHaQtmHmQeNw7aA81bYGBPPQqdtBm6b1SsQMmA==", + "dev": true, + "peer": true, + "dependencies": { + "@types/eslint": "*", + "@types/estree": "*" + } + }, + "node_modules/@types/estree": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-1.0.2.tgz", + "integrity": "sha512-VeiPZ9MMwXjO32/Xu7+OwflfmeoRwkE/qzndw42gGtgJwZopBnzy2gD//NN1+go1mADzkDcqf/KnFRSjTJ8xJA==", + "dev": true + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.7", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.7.tgz", + "integrity": "sha512-MhzcwU8aUygZroVwL2jeYk6JisJrPl/oov/gsgGCue9mkgl9wjGbzReYQClxiUgFDnib9FuHqTndccKeZKxTRw==", + "dev": true, + "dependencies": { + "@types/node": "*" + } + }, + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-gPQuzaPR5h/djlAv2apEG1HVOyj1IUs7GpfMZixU0/0KXT3pm64ylHuMUI1/Akh+sq/iikxg6Z2j+fcMDXaaTQ==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "*" + } + }, + "node_modules/@types/istanbul-reports": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.2.tgz", + "integrity": "sha512-kv43F9eb3Lhj+lr/Hn6OcLCs/sSM8bt+fIaP11rCYngfV6NVjzWXJ17owQtDQTL9tQ8WSLUrGsSJ6rJz0F1w1A==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-report": "*" + } + }, + "node_modules/@types/json-schema": { + "version": "7.0.13", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.13.tgz", + "integrity": "sha512-RbSSoHliUbnXj3ny0CNFOoxrIDV6SUGyStHsvDqosw6CkdPV8TtWGlfecuK4ToyMEAql6pzNxgCFKanovUzlgQ==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.3.tgz", + "integrity": "sha512-ZYFzrvyWUNhaPomn80dsMNgMeXxNWZBdkuG/hWlUvXvbdUH8ZERNBGXnU87McuGcWDsyzX2aChCv/SVN348k3A==", + "dev": true + }, + "node_modules/@types/node": { + "version": "20.7.1", + "resolved": "https://registry.npmjs.org/@types/node/-/node-20.7.1.tgz", + "integrity": "sha512-LT+OIXpp2kj4E2S/p91BMe+VgGX2+lfO+XTpfXhh+bCk2LkQtHZSub8ewFBMGP5ClysPjTDFa4sMI8Q3n4T0wg==", + "dev": true + }, + "node_modules/@types/normalize-package-data": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.2.tgz", + "integrity": "sha512-lqa4UEhhv/2sjjIQgjX8B+RBjj47eo0mzGasklVJ78UKGQY1r0VpB9XHDaZZO9qzEFDdy4MrXLuEaSmPrPSe/A==", + "dev": true + }, + "node_modules/@types/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/@types/semver": { + "version": "7.5.3", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.3.tgz", + "integrity": "sha512-OxepLK9EuNEIPxWNME+C6WwbRAOOI2o2BaQEGzz5Lu2e4Z5eDnEo+/aVEDMIXywoJitJ7xWd641wrGLZdtwRyw==", + "dev": true + }, + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true + }, + "node_modules/@types/yargs": { + "version": "17.0.25", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.25.tgz", + "integrity": "sha512-gy7iPgwnzNvxgAEi2bXOHWCVOG6f7xsprVJH4MjlAWeBmJ7vh/Y1kwMtUrs64ztf24zVIRCpr3n/z6gm9QIkgg==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/@types/yargs-parser": { + "version": "21.0.1", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.1.tgz", + "integrity": "sha512-axdPBuLuEJt0c4yI5OZssC19K2Mq1uKdrfZBzuxLvaztgqUtFYZUNw7lETExPYJR9jdEoIg4mb7RQKRQzOkeGQ==", + "dev": true + }, + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-6.7.4.tgz", + "integrity": "sha512-DAbgDXwtX+pDkAHwiGhqP3zWUGpW49B7eqmgpPtg+BKJXwdct79ut9+ifqOFPJGClGKSHXn2PTBatCnldJRUoA==", + "dev": true, + "dependencies": { + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "6.7.4", + "@typescript-eslint/type-utils": "6.7.4", + "@typescript-eslint/utils": "6.7.4", + "@typescript-eslint/visitor-keys": "6.7.4", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^6.0.0 || ^6.0.0-alpha", + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/eslint-plugin/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/experimental-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-5.62.0.tgz", + "integrity": "sha512-RTXpeB3eMkpoclG3ZHft6vG/Z30azNHuqY6wKPBHlVMZFuEvrtlEDe8gMqDb+SO+9hjC/pLekeSCryf9vMZlCw==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/experimental-utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/parser": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-6.7.4.tgz", + "integrity": "sha512-I5zVZFY+cw4IMZUeNCU7Sh2PO5O57F7Lr0uyhgCJmhN/BuTlnc55KxPonR4+EM3GBdfiCyGZye6DgMjtubQkmA==", + "dev": true, + "dependencies": { + "@typescript-eslint/scope-manager": "6.7.4", + "@typescript-eslint/types": "6.7.4", + "@typescript-eslint/typescript-estree": "6.7.4", + "@typescript-eslint/visitor-keys": "6.7.4", + "debug": "^4.3.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/scope-manager": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-6.7.4.tgz", + "integrity": "sha512-SdGqSLUPTXAXi7c3Ob7peAGVnmMoGzZ361VswK2Mqf8UOYcODiYvs8rs5ILqEdfvX1lE7wEZbLyELCW+Yrql1A==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.7.4", + "@typescript-eslint/visitor-keys": "6.7.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/type-utils": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-6.7.4.tgz", + "integrity": "sha512-n+g3zi1QzpcAdHFP9KQF+rEFxMb2KxtnJGID3teA/nxKHOVi3ylKovaqEzGBbVY2pBttU6z85gp0D00ufLzViQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "6.7.4", + "@typescript-eslint/utils": "6.7.4", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/types": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-6.7.4.tgz", + "integrity": "sha512-o9XWK2FLW6eSS/0r/tgjAGsYasLAnOWg7hvZ/dGYSSNjCh+49k5ocPN8OmG5aZcSJ8pclSOyVKP2x03Sj+RrCA==", + "dev": true, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@typescript-eslint/typescript-estree": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-6.7.4.tgz", + "integrity": "sha512-ty8b5qHKatlNYd9vmpHooQz3Vki3gG+3PchmtsA4TgrZBKWHNjWfkQid7K7xQogBqqc7/BhGazxMD5vr6Ha+iQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.7.4", + "@typescript-eslint/visitor-keys": "6.7.4", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/typescript-estree/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/utils": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-6.7.4.tgz", + "integrity": "sha512-PRQAs+HUn85Qdk+khAxsVV+oULy3VkbH3hQ8hxLRJXWBEd7iI+GbQxH5SEUSH7kbEoTp6oT1bOwyga24ELALTA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "6.7.4", + "@typescript-eslint/types": "6.7.4", + "@typescript-eslint/typescript-estree": "6.7.4", + "semver": "^7.5.4" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/@typescript-eslint/utils/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/@typescript-eslint/visitor-keys": { + "version": "6.7.4", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-6.7.4.tgz", + "integrity": "sha512-pOW37DUhlTZbvph50x5zZCkFn3xzwkGtNoJHzIM3svpiSkJzwOYr/kVBaXmf+RAQiUDs1AHEZVNPg6UJCJpwRA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "6.7.4", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^16.0.0 || >=18.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.6.tgz", + "integrity": "sha512-IN1xI7PwOvLPgjcf180gC1bqn3q/QaOCwYUahIOhbYUu8KA/3tw2RT/T0Gidi1l7Hhj5D/INhJxiICObqpMu4Q==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/helper-numbers": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6" + } + }, + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.6.tgz", + "integrity": "sha512-ejAj9hfRJ2XMsNHk/v6Fu2dGS+i4UaXBXGemOfQ/JfQ6mdQg/WXtwleQRLLS4OvfDhv8rYnVwH27YJLMyYsxhw==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.6.tgz", + "integrity": "sha512-o0YkoP4pVu4rN8aTJgAyj9hC2Sv5UlkzCHhxqWj8butaLvnpdc2jOwh4ewE6CX0txSfLn/UYaV/pheS2Txg//Q==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.6.tgz", + "integrity": "sha512-z3nFzdcp1mb8nEOFFk8DrYLpHvhKC3grJD2ardfKOzmbmJvEf/tPIqCY+sNcwZIY8ZD7IkB2l7/pqhUhqm7hLA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.6.tgz", + "integrity": "sha512-vUIhZ8LZoIWHBohiEObxVm6hwP034jwmc9kuq5GdHZH0wiLVLIPcMCdpJzG4C11cHoQ25TFIQj9kaVADVX7N3g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/floating-point-hex-parser": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.6.tgz", + "integrity": "sha512-sFFHKwcmBprO9e7Icf0+gddyWYDViL8bpPjJJl0WHxCdETktXdmtWLGVzoHbqUcY4Be1LkNfwTmXOJUFZYSJdA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.6.tgz", + "integrity": "sha512-LPpZbSOwTpEC2cgn4hTydySy1Ke+XEu+ETXuoyvuyezHO3Kjdu90KK95Sh9xTbmjrCsUwvWwCOQQNta37VrS9g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6" + } + }, + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.6.tgz", + "integrity": "sha512-LM4p2csPNvbij6U1f19v6WR56QZ8JcHg3QIJTlSwzFcmx6WSORicYj6I63f9yU1kEUtrpG+kjkiIAkevHpDXrg==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/ieee754": "^1.2.0" + } + }, + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.6.tgz", + "integrity": "sha512-m7a0FhE67DQXgouf1tbN5XQcdWoNgaAuoULHIfGFIEVKA6tu/edls6XnIlkmS6FrXAquJRPni3ZZKjw6FSPjPQ==", + "dev": true, + "peer": true, + "dependencies": { + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.6.tgz", + "integrity": "sha512-vtXf2wTQ3+up9Zsg8sa2yWiQpzSsMyXj0qViVP6xKGCUT8p8YJ6HqI7l5eCnWx1T/FYdsv07HQs2wTFbbof/RA==", + "dev": true, + "peer": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.6.tgz", + "integrity": "sha512-Ybn2I6fnfIGuCR+Faaz7YcvtBKxvoLV3Lebn1tM4o/IAJzmi9AWYIPWpyBfU8cC+JxAO57bk4+zdsTjJR+VTOw==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/helper-wasm-section": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-opt": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6", + "@webassemblyjs/wast-printer": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.6.tgz", + "integrity": "sha512-3XOqkZP/y6B4F0PBAXvI1/bky7GryoogUtfwExeP/v7Nzwo1QLcq5oQmpKlftZLbT+ERUOAZVQjuNVak6UXjPA==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.6.tgz", + "integrity": "sha512-cOrKuLRE7PCe6AsOVl7WasYf3wbSo4CeOk6PkrjS7g57MFfVUF9u6ysQBBODX0LdgSvQqRiGz3CXvIDKcPNy4g==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-buffer": "1.11.6", + "@webassemblyjs/wasm-gen": "1.11.6", + "@webassemblyjs/wasm-parser": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.6.tgz", + "integrity": "sha512-6ZwPeGzMJM3Dqp3hCsLgESxBGtT/OeCvCZ4TA1JUPYgmhAx38tTPR9JaKy0S5H3evQpO/h2uWs2j6Yc/fjkpTQ==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@webassemblyjs/helper-api-error": "1.11.6", + "@webassemblyjs/helper-wasm-bytecode": "1.11.6", + "@webassemblyjs/ieee754": "1.11.6", + "@webassemblyjs/leb128": "1.11.6", + "@webassemblyjs/utf8": "1.11.6" + } + }, + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.6", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.6.tgz", + "integrity": "sha512-JM7AhRcE+yW2GWYaKeHL5vt4xqee5N2WcezptmgyhNS+ScggqcT1OtXykhAb13Sn5Yas0j2uv9tHgrjwvzAP4A==", + "dev": true, + "peer": true, + "dependencies": { + "@webassemblyjs/ast": "1.11.6", + "@xtuc/long": "4.2.2" + } + }, + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true, + "peer": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true, + "peer": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true + }, + "node_modules/acorn": { + "version": "8.10.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.10.0.tgz", + "integrity": "sha512-F0SAmZ8iUtS//m8DmCTA0jlh6TDKkHQyK6xc6V4KDTyZKA9dnvX9/3sRTVQrWm79glUAZbnmmNcdYwUIHWVybw==", + "dev": true, + "bin": { + "acorn": "bin/acorn" + }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.9.0.tgz", + "integrity": "sha512-cmMwop9x+8KFhxvKrKfPYmN6/pKTYYHBqLa0DfvVZcKMJWNyWLnaqND7dx/qn66R7ewM1UX5XMaDVP5wlVTaVA==", + "dev": true, + "peer": true, + "peerDependencies": { + "acorn": "^8" + } + }, + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "dev": true, + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "dev": true, + "dependencies": { + "debug": "4" + }, + "engines": { + "node": ">= 6.0.0" + } + }, + "node_modules/agentkeepalive": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.5.0.tgz", + "integrity": "sha512-5GG/5IbQQpC9FpkRGsSvZI5QYeSCzlJHdpBQntCsuTOxhKD8lqKhrleg2Yi7yvMIf82Ycmmqln9U8V9qwEiJew==", + "dev": true, + "dependencies": { + "humanize-ms": "^1.2.1" + }, + "engines": { + "node": ">= 8.0.0" + } + }, + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "dev": true, + "dependencies": { + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peer": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "dev": true, + "dependencies": { + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-escapes/node_modules/type-fest": { + "version": "0.21.3", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.21.3.tgz", + "integrity": "sha512-t0rzBq87m3fVcduHDUFhKmyyX+9eo6WQjZvf51Ea/M0Q7+T374Jp1aUiyUl0GKxp8M/OETVHSDvmkyPgvX+X2w==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "dev": true, + "dependencies": { + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/anymatch": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.3.tgz", + "integrity": "sha512-KMReFUr0B4t+D+OBkjR3KYqvocp2XaSzO55UcB6mgQMd3KbcE+mWTyvVV7D/zsdEbNnV6acZUutkiHQXvTr1Rw==", + "dev": true, + "dependencies": { + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "dev": true + }, + "node_modules/are-we-there-yet": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", + "dev": true, + "dependencies": { + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "node_modules/array-buffer-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.0.tgz", + "integrity": "sha512-LPuwb2P+NrQw3XhxGc36+XSvuBPopovXYTR9Ew++Du9Yb/bx5AzBfrIsBoj0EZUifjQU+sHL21sseZ3jerWO/A==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-array-buffer": "^3.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-includes": { + "version": "3.1.7", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.7.tgz", + "integrity": "sha512-dlcsNBIiWhPkHdOEEKnehA+RNUWDc4UqFtnIXU4uuYDPtA4LDkr7qip2p0VvFAEXNDr0yWZ9PJyIRiGjRLQzwQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/array.prototype.findlastindex": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/array.prototype.findlastindex/-/array.prototype.findlastindex-1.2.3.tgz", + "integrity": "sha512-LzLoiOMAxvy+Gd3BAq3B7VeIgPdo+Q8hthvKtXybMvRV0jrXfJM/t8mw7nNlpEcVlVUnCnM2KSX4XU5HmpodOA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flat": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.2.tgz", + "integrity": "sha512-djYB+Zx2vLewY8RWlNCUdHjDXs2XOgm602S9E7P/UpHgfeHL00cRiIF+IN/G/aUJ7kGPb6yO/ErDI5V2s8iycA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.flatmap": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.2.tgz", + "integrity": "sha512-Ewyx0c9PmpcsByhSW4r+9zDU7sGjFc86qf/kKtuSCRdhfbk0SNLLkaT5qvcHnRGgc5NP/ly/y+qkXkqONX54CQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/array.prototype.tosorted": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.2.tgz", + "integrity": "sha512-HuQCHOlk1Weat5jzStICBCd83NxiIMwqDg/dHEsoefabn/hJRj5pVdWcPUSpRrwhwxZOsQassMpgN/xRYFBMIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.2.tgz", + "integrity": "sha512-yMBKppFur/fbHu9/6USUe03bZ4knMYiwFBcyiaXB8Go0qNehwX6inYPzK9U0NeQvGxKthcmHcaR8P5MStSRBAw==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "is-array-buffer": "^3.0.2", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/asap": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/asap/-/asap-2.0.6.tgz", + "integrity": "sha512-BSHWgDSAiKs50o2Re8ppvp3seVHXSRM44cdSsT9FfNEUUZLOGWVCsiWaRPWM1Znn+mqZ1OfVZ3z3DWEzSp7hRA==", + "dev": true + }, + "node_modules/ast-metadata-inferer": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.8.0.tgz", + "integrity": "sha512-jOMKcHht9LxYIEQu+RVd22vtgrPaVCtDRQ/16IGmurdzxvYbDd5ynxjnyrzLnieG96eTcAyaoj/wN/4/1FyyeA==", + "dev": true, + "dependencies": { + "@mdn/browser-compat-data": "^5.2.34" + } + }, + "node_modules/async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==", + "dev": true, + "engines": { + "node": "*" + } + }, + "node_modules/asynciterator.prototype": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/asynciterator.prototype/-/asynciterator.prototype-1.0.0.tgz", + "integrity": "sha512-wwHYEIS0Q80f5mosx3L/dfG5t5rjEa9Ft51GTaNt862EnpyGHpgz2RkZvLPp1oF5TnAiTohkEKVEu8pQPJI7Vg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + } + }, + "node_modules/autoprefixer": { + "version": "10.4.16", + "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-10.4.16.tgz", + "integrity": "sha512-7vd3UC6xKp0HLfua5IjZlcXvGAGy7cBAXTg2lyQ/8WpNhd6SiZ8Be+xm3FyBSYJx5GKcpRCzBh7RH4/0dnY+uQ==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/autoprefixer" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001538", + "fraction.js": "^4.3.6", + "normalize-range": "^0.1.2", + "picocolors": "^1.0.0", + "postcss-value-parser": "^4.2.0" + }, + "bin": { + "autoprefixer": "bin/autoprefixer" + }, + "engines": { + "node": "^10 || ^12 || >=14" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/available-typed-arrays": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.5.tgz", + "integrity": "sha512-DMD0KiN46eipeziST1LPP/STfDU0sufISXmjSgvVsoU2tqxctQeASejWcfNtxYKqETM1UxQ8sp2OrSBWpHY6sw==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/babel-eslint": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/babel-eslint/-/babel-eslint-10.1.0.tgz", + "integrity": "sha512-ifWaTHQ0ce+448CYop8AdrQiBsGrnC+bMgfyKFdi6EsPLTAWG+QfyDeM6OH+FmWnKvEq5NnBMLvlBUPKQZoDSg==", + "deprecated": "babel-eslint is now @babel/eslint-parser. This package will no longer receive updates.", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "@babel/parser": "^7.7.0", + "@babel/traverse": "^7.7.0", + "@babel/types": "^7.7.0", + "eslint-visitor-keys": "^1.0.0", + "resolve": "^1.12.0" + }, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "eslint": ">= 4.12.1" + } + }, + "node_modules/babel-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/babel-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-29.7.0.tgz", + "integrity": "sha512-BrvGY3xZSwEcCzKvKsCi2GgHqDqsYkOP4/by5xCgIwGXQxIEh+8ew3gmrE1y7XRR6LHZIj6yLYnUi/mm2KXKBg==", + "dev": true, + "dependencies": { + "@jest/transform": "^29.7.0", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^29.6.3", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" + } + }, + "node_modules/babel-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/babel-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/babel-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/babel-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-istanbul/node_modules/istanbul-lib-instrument": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.1.tgz", + "integrity": "sha512-pzqtp31nLv/XFOzXGuvhCb8qhjmTVo5vjVk19XE4CRlSWz0KoeJ3bw9XsA7nOp9YBf4qHjwBxkDzKcME/J29Yg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/babel-plugin-jest-hoist": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-29.6.3.tgz", + "integrity": "sha512-ESAc/RJvGTFEzRwOTT4+lNDk/GNHMkKbNzsvT0qKRfDyyYTskxB5rnU2njIDYVxXCBHHEI1c0YwHob3WaYujOg==", + "dev": true, + "dependencies": { + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.1.14", + "@types/babel__traverse": "^7.0.6" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/babel-plugin-macros": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz", + "integrity": "sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@babel/runtime": "^7.12.5", + "cosmiconfig": "^7.0.0", + "resolve": "^1.19.0" + }, + "engines": { + "node": ">=10", + "npm": ">=6" + } + }, + "node_modules/babel-plugin-transform-hook-names": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/babel-plugin-transform-hook-names/-/babel-plugin-transform-hook-names-1.0.2.tgz", + "integrity": "sha512-5gafyjyyBTTdX/tQQ0hRgu4AhNHG/hqWi0ZZmg2xvs2FgRkJXzDNKBZCyoYqgFkovfDrgM8OoKg8karoUvWeCw==", + "dev": true, + "peerDependencies": { + "@babel/core": "^7.12.10" + } + }, + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "dev": true, + "dependencies": { + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/babel-preset-jest": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-29.6.3.tgz", + "integrity": "sha512-0B3bhxR6snWXJZtR/RliHTDPRgn1sNHOR0yVtq/IiQFyuOVjFS+wuio/R4gSNkyYmKmJB4wGZv2NZanmKmTnNA==", + "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", + "dev": true + }, + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/bootstrap": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/bootstrap/-/bootstrap-5.3.2.tgz", + "integrity": "sha512-D32nmNWiQHo94BKHLmOrdjlL05q1c8oxbtBphQFb9Z5to6eGRDCm0QgeaZ4zFBHzfg2++rqa2JkqCcxDy0sH0g==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/twbs" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/bootstrap" + } + ], + "peerDependencies": { + "@popperjs/core": "^2.11.8" + } + }, + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } + }, + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "dev": true, + "dependencies": { + "fill-range": "^7.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/browserslist": { + "version": "4.22.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.22.0.tgz", + "integrity": "sha512-v+Jcv64L2LbfTC6OnRcaxtqJNJuQAVhZKSJfR/6hn7lhnChUXl4amwVviqN1k411BB+3rRoKMitELRn1CojeRA==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001539", + "electron-to-chromium": "^1.4.530", + "node-releases": "^2.0.13", + "update-browserslist-db": "^1.0.13" + }, + "bin": { + "browserslist": "cli.js" + }, + "engines": { + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + } + }, + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", + "dev": true, + "dependencies": { + "node-int64": "^0.4.0" + } + }, + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/builtins": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/builtins/-/builtins-5.0.1.tgz", + "integrity": "sha512-qwVpFEHNfhYJIzNRBvd2C1kyo6jz3ZSMPyyuR47OPdiKWlbYnZNyDWuyR175qDnAJLiCo5fBBqPb3RiXgWlkOQ==", + "dev": true, + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/builtins/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/builtins/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/builtins/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/cacache": { + "version": "16.1.3", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-16.1.3.tgz", + "integrity": "sha512-/+Emcj9DAXxX4cwlLmRI9c166RuL3w30zp4R7Joiv2cQTtTtA+jeuCAjH3ZlGnYS3tKENSrKhAzVVP9GVyzeYQ==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/cacache/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/cacache/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/cacache/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/cacache/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/call-bind": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.2.tgz", + "integrity": "sha512-7O+FbCihrB5WGbFYesctwmTKae6rOiIzmz1icreWJ+0aA7LJfuqhEso2T9ncpcFtzMQtzXf2QGGueWJGTYsqrA==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "get-intrinsic": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "dev": true, + "dependencies": { + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001541", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001541.tgz", + "integrity": "sha512-bLOsqxDgTqUBkzxbNlSBt8annkDpQB9NdzdTbO2ooJ+eC/IQcvDspDc058g84ejCelF7vHUx57KIOjEecOHXaw==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/char-regex": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chokidar": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", + "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://paulmillr.com/funding/" + } + ], + "dependencies": { + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" + } + }, + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.8.0.tgz", + "integrity": "sha512-eXTggHWSooYhq49F2opQhuHWgzucfF2YgODK4e1566GQs5BIfP30B0oenwBJHfWxAs2fyPB1s7Mg949zLf61Yw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/sibiraj-s" + } + ], + "engines": { + "node": ">=8" + } + }, + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", + "dev": true + }, + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/cliui": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-8.0.1.tgz", + "integrity": "sha512-BSeNnyus75C4//NQ9gQt1/csTXyo/8Sb+afLAkzAptFuMsod9HFokGNudZpi/oQV73hnVK+sR+5PVRMd+Dr7YQ==", + "dev": true, + "dependencies": { + "string-width": "^4.2.0", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "dev": true, + "engines": { + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" + } + }, + "node_modules/co-body": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/co-body/-/co-body-6.1.0.tgz", + "integrity": "sha512-m7pOT6CdLN7FuXUcpuz/8lfQ/L77x8SchHCF4G0RBTJO20Wzmhn5Sp4/5WsKy8OSpifBSUrmg83qEqaDHdyFuQ==", + "dev": true, + "dependencies": { + "inflation": "^2.0.0", + "qs": "^6.5.2", + "raw-body": "^2.3.3", + "type-is": "^1.6.16" + } + }, + "node_modules/collect-v8-coverage": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.2.tgz", + "integrity": "sha512-lHl4d5/ONEbLlJvaJNtsF/Lz+WvB07u2ycqTYbdrq7UypDXailES4valYb2eWiJFxZlVmpGekfqoxQhzyFdT4Q==", + "dev": true + }, + "node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, + "dependencies": { + "color-name": "1.1.3" + } + }, + "node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/color-support": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "dev": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/commander": { + "version": "2.20.3", + "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", + "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "dev": true, + "peer": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true + }, + "node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/cookies": { + "version": "0.8.0", + "resolved": "https://registry.npmjs.org/cookies/-/cookies-0.8.0.tgz", + "integrity": "sha512-8aPsApQfebXnuI+537McwYsDtjVxGm8gTIzQI3FDW6t5t/DAhERxtnbEPN/8RX+uZthoz4eCOgloXaE5cYyNow==", + "dev": true, + "dependencies": { + "depd": "~2.0.0", + "keygrip": "~1.1.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/copy-anything": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/copy-anything/-/copy-anything-2.0.6.tgz", + "integrity": "sha512-1j20GZTsvKNkc4BY3NpMOM8tt///wY3FpIzozTOFO2ffuZcV61nojHXVKIy3WM+7ADCy5FVhdZYHYDdgTU0yJw==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "is-what": "^3.14.1" + }, + "funding": { + "url": "https://github.com/sponsors/mesqueeb" + } + }, + "node_modules/core-js": { + "version": "3.33.0", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-3.33.0.tgz", + "integrity": "sha512-HoZr92+ZjFEKar5HS6MC776gYslNOKHt75mEBKWKnPeFDpZ6nH5OeF3S6HFT1mUAUZKrzkez05VboaX8myjSuw==", + "dev": true, + "hasInstallScript": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/core-js" + } + }, + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==", + "dev": true + }, + "node_modules/cors": { + "version": "2.8.5", + "resolved": "https://registry.npmjs.org/cors/-/cors-2.8.5.tgz", + "integrity": "sha512-KIHbLJqu73RGr/hnbrO9uBeixNGuvSQjul/jdFvS/KFSIH1hWVd1ng7zOHx+YrEfInLG7q4n6GHQ9cDtxv/P6g==", + "dev": true, + "dependencies": { + "object-assign": "^4", + "vary": "^1" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/create-jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/create-jest/-/create-jest-29.7.0.tgz", + "integrity": "sha512-Adz2bdH0Vq3F53KEMJOoftQFutWCukm6J24wbPWRO4k1kMY7gS7ds/uoJkNuV8wDCtWWnuwGcJwpWcih+zEW1Q==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "prompts": "^2.0.1" + }, + "bin": { + "create-jest": "bin/create-jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/create-jest/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/create-jest/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/create-jest/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/create-jest/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/create-jest/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "dev": true, + "bin": { + "cssesc": "bin/cssesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "dev": true, + "dependencies": { + "ms": "2.1.2" + }, + "engines": { + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } + } + }, + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/decamelize-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.1.tgz", + "integrity": "sha512-WiPxgEirIV0/eIOMcnFBA3/IJZAZqKnwAwWyvvdi4lsr1WCN22nhdf/3db3DoZcUjTV2SqfzIwNyp6y2xs3nmg==", + "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/dedent": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-1.5.1.tgz", + "integrity": "sha512-+LxW+KLWxu3HW3M2w2ympwtqPrqYRzU8fqi6Fhd18fBALe15blJPI/I4+UHveMVG6lJqB4JNd4UG0S5cnVHwIg==", + "dev": true, + "peerDependencies": { + "babel-plugin-macros": "^3.1.0" + }, + "peerDependenciesMeta": { + "babel-plugin-macros": { + "optional": true + } + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.3.1.tgz", + "integrity": "sha512-3sUqbMEc77XqpdNO7FRyRog+eW3ph+GYCbj+rK+uYyRMuwsVy0rMiVtPn+QJlKFvWP/1PYpapqYn0Me2knFn+A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/define-data-property": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.0.tgz", + "integrity": "sha512-UzGwzcjyv3OtAvolTj1GoyNYzfFR+iqbGjcnBEENZVCpM4/Ng1yhGNvS3lR/xDS74Tb2wGG9WzNSNIOS9UVb2g==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.1", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true + }, + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/dependency-graph": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/dependency-graph/-/dependency-graph-0.11.0.tgz", + "integrity": "sha512-JeMq7fEshyepOWDfcfHK06N3MhyPhz++vtqWhMT5O9A3K42rdsEDpfdVqjaqaAhsw6a+ZqeDvQVtD0hFHQWrzg==", + "dev": true, + "engines": { + "node": ">= 0.6.0" + } + }, + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/dezalgo": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/dezalgo/-/dezalgo-1.0.4.tgz", + "integrity": "sha512-rXSP0bf+5n0Qonsb+SVVfNfIsimO4HEtmnIpPHY8Q1UCzKlQrDMfdobr8nJOOsRgWCyMRqeSBQzmWUMq7zvVig==", + "dev": true, + "dependencies": { + "asap": "^2.0.0", + "wrappy": "1" + } + }, + "node_modules/diff-sequences": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-29.6.3.tgz", + "integrity": "sha512-EjePK1srD3P08o2j4f0ExnylqRs5B9tJjcp9t1krH2qRi8CCdsYfwe9JgSLurFBWwq4uOlipzfk5fHNvwFKr8Q==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=6.0.0" + } + }, + "node_modules/electron-to-chromium": { + "version": "1.4.532", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.532.tgz", + "integrity": "sha512-piIR0QFdIGKmOJTSNg5AwxZRNWQSXlRYycqDB9Srstx4lip8KpcmRxVP6zuFWExWziHYZpJ0acX7TxqX95KBpg==", + "dev": true + }, + "node_modules/emittery": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.13.1.tgz", + "integrity": "sha512-DeWwawk6r5yR9jFgnDKYt4sLS0LmHJJi3ZOnb5/JdbYwj3nW+FxQnHIjhBKz8YLC7oRNPVM9NQ47I3CVx34eqQ==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" + } + }, + "node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "dependencies": { + "iconv-lite": "^0.6.2" + } + }, + "node_modules/enhanced-resolve": { + "version": "5.15.0", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.15.0.tgz", + "integrity": "sha512-LXYT42KJ7lpIKECr2mAXIaMldcNCh/7E0KBKOu4KSfkHmP+mZmSs+8V5gBAqisWBy0OO4W5Oyys0GO1Y8KtdKg==", + "dev": true, + "peer": true, + "dependencies": { + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true + }, + "node_modules/errno": { + "version": "0.1.8", + "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.8.tgz", + "integrity": "sha512-dJ6oBr5SQ1VSd9qkk7ByRgb/1SH4JZjCHSW/mr63/QcXO9zLVxvJ6Oy13nio03rxpSnVDDjFor75SjVeZWPW/A==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "prr": "~1.0.1" + }, + "bin": { + "errno": "cli.js" + } + }, + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "dev": true, + "dependencies": { + "is-arrayish": "^0.2.1" + } + }, + "node_modules/es-abstract": { + "version": "1.22.2", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.22.2.tgz", + "integrity": "sha512-YoxfFcDmhjOgWPWsV13+2RNjq1F6UQnfs+8TftwNqtzlmFzEXvlUwdrNrYeaizfjQzRMxkZ6ElWMOJIFKdVqwA==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.0", + "arraybuffer.prototype.slice": "^1.0.2", + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "es-set-tostringtag": "^2.0.1", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.1", + "get-symbol-description": "^1.0.0", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "is-array-buffer": "^3.0.2", + "is-callable": "^1.2.7", + "is-negative-zero": "^2.0.2", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.12", + "is-weakref": "^1.0.2", + "object-inspect": "^1.12.3", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.5.1", + "safe-array-concat": "^1.0.1", + "safe-regex-test": "^1.0.0", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.0", + "typed-array-byte-length": "^1.0.0", + "typed-array-byte-offset": "^1.0.0", + "typed-array-length": "^1.0.4", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/es-iterator-helpers": { + "version": "1.0.15", + "resolved": "https://registry.npmjs.org/es-iterator-helpers/-/es-iterator-helpers-1.0.15.tgz", + "integrity": "sha512-GhoY8uYqd6iwUl2kgjTm4CZAf6oo5mHK7BPqx3rKgx893YSsy0LGHV6gfqqQvZt/8xM8xeOnfXBCfqclMKkJ5g==", + "dev": true, + "dependencies": { + "asynciterator.prototype": "^1.0.0", + "call-bind": "^1.0.2", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.1", + "es-set-tostringtag": "^2.0.1", + "function-bind": "^1.1.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "has-property-descriptors": "^1.0.0", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "iterator.prototype": "^1.1.2", + "safe-array-concat": "^1.0.1" + } + }, + "node_modules/es-module-lexer": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.3.1.tgz", + "integrity": "sha512-JUFAyicQV9mXc3YRxPnDlrfBKpqt6hUYzz9/boprUJHs4e4KVr3XwOF70doO6gwXUor6EWZJAyWAfKki84t20Q==", + "dev": true, + "peer": true + }, + "node_modules/es-set-tostringtag": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.1.tgz", + "integrity": "sha512-g3OMbtlwY3QewlqAiMLI47KywjWZoEytKr8pf6iTC8uJq5bIAH52Z9pnQ8pVL6whrCto53JZDuUIsifGeLorTg==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3", + "has": "^1.0.3", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + } + }, + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/esbuild": { + "version": "0.19.5", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.19.5.tgz", + "integrity": "sha512-bUxalY7b1g8vNhQKdB24QDmHeY4V4tw/s6Ak5z+jJX9laP5MoQseTOMemAr0gxssjNcH0MCViG8ONI2kksvfFQ==", + "dev": true, + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" + }, + "engines": { + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.19.5", + "@esbuild/android-arm64": "0.19.5", + "@esbuild/android-x64": "0.19.5", + "@esbuild/darwin-arm64": "0.19.5", + "@esbuild/darwin-x64": "0.19.5", + "@esbuild/freebsd-arm64": "0.19.5", + "@esbuild/freebsd-x64": "0.19.5", + "@esbuild/linux-arm": "0.19.5", + "@esbuild/linux-arm64": "0.19.5", + "@esbuild/linux-ia32": "0.19.5", + "@esbuild/linux-loong64": "0.19.5", + "@esbuild/linux-mips64el": "0.19.5", + "@esbuild/linux-ppc64": "0.19.5", + "@esbuild/linux-riscv64": "0.19.5", + "@esbuild/linux-s390x": "0.19.5", + "@esbuild/linux-x64": "0.19.5", + "@esbuild/netbsd-x64": "0.19.5", + "@esbuild/openbsd-x64": "0.19.5", + "@esbuild/sunos-x64": "0.19.5", + "@esbuild/win32-arm64": "0.19.5", + "@esbuild/win32-ia32": "0.19.5", + "@esbuild/win32-x64": "0.19.5" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "dev": true, + "engines": { + "node": ">=0.8.0" + } + }, + "node_modules/eslint": { + "version": "8.51.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.51.0.tgz", + "integrity": "sha512-2WuxRZBrlwnXi+/vFSJyjMqrNjtJqiasMzehF0shoLaW7DzS3/9Yvrmq5JiT66+pNjiX4UBnLDiKHcWAr/OInA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.2", + "@eslint/js": "8.51.0", + "@humanwhocodes/config-array": "^0.11.11", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint-config-developit": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/eslint-config-developit/-/eslint-config-developit-1.2.0.tgz", + "integrity": "sha512-uUXirRR5R06sqsPgOk8XlA65HRxXNSlg5vPmyLvFwksCibZZLI/RxszuAn6R2EZ6tJUIJupLrVw8fkDYX3TVsQ==", + "dev": true, + "dependencies": { + "babel-eslint": "^10.1.0", + "eslint-plugin-compat": "^3.5.1", + "eslint-plugin-jest": "^23.8.2", + "eslint-plugin-mocha": "^6.3.0", + "eslint-plugin-react": "^7.0.0" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-config-developit/node_modules/@mdn/browser-compat-data": { + "version": "3.3.14", + "resolved": "https://registry.npmjs.org/@mdn/browser-compat-data/-/browser-compat-data-3.3.14.tgz", + "integrity": "sha512-n2RC9d6XatVbWFdHLimzzUJxJ1KY8LdjqrW6YvGPiRmsHkhOUx74/Ct10x5Yo7bC/Jvqx7cDEW8IMPv/+vwEzA==", + "dev": true + }, + "node_modules/eslint-config-developit/node_modules/@typescript-eslint/experimental-utils": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/experimental-utils/-/experimental-utils-2.34.0.tgz", + "integrity": "sha512-eS6FTkq+wuMJ+sgtuNTtcqavWXqsflWcfBnlYhg/nS4aZ1leewkXGbvBhaapn1q6qf4M71bsR1tez5JTRMuqwA==", + "dev": true, + "dependencies": { + "@types/json-schema": "^7.0.3", + "@typescript-eslint/typescript-estree": "2.34.0", + "eslint-scope": "^5.0.0", + "eslint-utils": "^2.0.0" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + } + }, + "node_modules/eslint-config-developit/node_modules/@typescript-eslint/typescript-estree": { + "version": "2.34.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-2.34.0.tgz", + "integrity": "sha512-OMAr+nJWKdlVM9LOqCqh3pQQPwxHAN7Du8DR6dmwCrAmxtiXQnhHJ6tBNtf+cggqfo51SG/FCwnKhXCIM7hnVg==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "eslint-visitor-keys": "^1.1.0", + "glob": "^7.1.6", + "is-glob": "^4.0.1", + "lodash": "^4.17.15", + "semver": "^7.3.2", + "tsutils": "^3.17.1" + }, + "engines": { + "node": "^8.10.0 || ^10.13.0 || >=11.10.1" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-developit/node_modules/ast-metadata-inferer": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/ast-metadata-inferer/-/ast-metadata-inferer-0.7.0.tgz", + "integrity": "sha512-OkMLzd8xelb3gmnp6ToFvvsHLtS6CbagTkFQvQ+ZYFe3/AIl9iKikNR9G7pY3GfOR/2Xc222hwBjzI7HLkE76Q==", + "dev": true, + "dependencies": { + "@mdn/browser-compat-data": "^3.3.14" + } + }, + "node_modules/eslint-config-developit/node_modules/eslint-plugin-compat": { + "version": "3.13.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-3.13.0.tgz", + "integrity": "sha512-cv8IYMuTXm7PIjMVDN2y4k/KVnKZmoNGHNq27/9dLstOLydKblieIv+oe2BN2WthuXnFNhaNvv3N1Bvl4dbIGA==", + "dev": true, + "dependencies": { + "@mdn/browser-compat-data": "^3.3.14", + "ast-metadata-inferer": "^0.7.0", + "browserslist": "^4.16.8", + "caniuse-lite": "^1.0.30001251", + "core-js": "^3.16.2", + "find-up": "^5.0.0", + "lodash.memoize": "4.1.2", + "semver": "7.3.5" + }, + "engines": { + "node": ">=9.x" + }, + "peerDependencies": { + "eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0" + } + }, + "node_modules/eslint-config-developit/node_modules/eslint-plugin-jest": { + "version": "23.20.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-23.20.0.tgz", + "integrity": "sha512-+6BGQt85OREevBDWCvhqj1yYA4+BFK4XnRZSGJionuEYmcglMZYLNNBBemwzbqUAckURaHdJSBcjHPyrtypZOw==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "^2.5.0" + }, + "engines": { + "node": ">=8" + }, + "peerDependencies": { + "eslint": ">=5" + } + }, + "node_modules/eslint-config-developit/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-config-developit/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-config-developit/node_modules/semver": { + "version": "7.3.5", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.3.5.tgz", + "integrity": "sha512-PoeGJYh8HK4BTO/a9Tf6ZG3veo/A7ZVsYrSA6J8ny9nb3B1VrpkuN+z9OE5wfE5p6H4LchYZsegiQgbJD94ZFQ==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-config-developit/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-config-preact": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-config-preact/-/eslint-config-preact-1.3.0.tgz", + "integrity": "sha512-yHYXg5qNzEJd3D/30AmsIW0W8MuY858KpApXp7xxBF08IYUljSKCOqMx+dVucXHQnAm7+11wOnMkgVHIBAechw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.13.16", + "@babel/eslint-parser": "^7.13.14", + "@babel/plugin-syntax-class-properties": "^7.12.13", + "@babel/plugin-syntax-decorators": "^7.12.13", + "@babel/plugin-syntax-jsx": "^7.12.13", + "eslint-plugin-compat": "^4.0.0", + "eslint-plugin-jest": "^25.2.4", + "eslint-plugin-react": "^7.27.0", + "eslint-plugin-react-hooks": "^4.3.0" + }, + "peerDependencies": { + "eslint": "6.x || 7.x || 8.x" + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/eslint-plugin": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-5.62.0.tgz", + "integrity": "sha512-TiZzBSJja/LbhNPvk6yc0JrX9XqhQ0hdh6M2svYfsHGejaKFIAGd9MQ+ERIMzLGlN/kZoYIgdxFV0PuljTKXag==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@eslint-community/regexpp": "^4.4.0", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/type-utils": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "natural-compare-lite": "^1.4.0", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/parser": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-5.62.0.tgz", + "integrity": "sha512-VlJEV0fOQ7BExOsHYAGrgbEiZoi8D+Bl2+f6V2RrXerRSylnp+ZBHmPvaIa8cz0Ajx7WO7Z5RqfgYg7ED1nRhA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/type-utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-5.62.0.tgz", + "integrity": "sha512-xsSQreu+VnfbqQpW5vnCJdq1Z3Q0U31qiWmRhr98ONQmcp/yhiPJFPq8MXiJVLiksmOKSjIldZzkebzHuCGzew==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@typescript-eslint/typescript-estree": "5.62.0", + "@typescript-eslint/utils": "5.62.0", + "debug": "^4.3.4", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-config-preact/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-config-preact/node_modules/eslint-plugin-jest": { + "version": "25.7.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-25.7.0.tgz", + "integrity": "sha512-PWLUEXeeF7C9QGKqvdSbzLOiLTx+bno7/HC9eefePfEb257QFHg7ye3dh80AZVkaa/RQsBB1Q/ORQvg2X7F0NQ==", + "dev": true, + "dependencies": { + "@typescript-eslint/experimental-utils": "^5.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^4.0.0 || ^5.0.0", + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-config-preact/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-config-preact/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-config-preact/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/eslint-config-prettier": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-9.0.0.tgz", + "integrity": "sha512-IcJsTkJae2S35pRsRAwoCE+925rJJStOdkKnLVgtE+tEpqU0EVVM7OqrwxqgptKdX29NUwC82I5pXsGFIgSevw==", + "dev": true, + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-config-standard": { + "version": "17.1.0", + "resolved": "https://registry.npmjs.org/eslint-config-standard/-/eslint-config-standard-17.1.0.tgz", + "integrity": "sha512-IwHwmaBNtDK4zDHQukFDW5u/aTb8+meQWZvNFWkiGmbWjD6bqyuSSBxxXKkCftCUzc1zwCH2m/baCNDLGmuO5Q==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "engines": { + "node": ">=12.0.0" + }, + "peerDependencies": { + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", + "eslint-plugin-promise": "^6.0.0" + } + }, + "node_modules/eslint-config-standard-with-typescript": { + "version": "39.1.1", + "resolved": "https://registry.npmjs.org/eslint-config-standard-with-typescript/-/eslint-config-standard-with-typescript-39.1.1.tgz", + "integrity": "sha512-t6B5Ep8E4I18uuoYeYxINyqcXb2UbC0SOOTxRtBSt2JUs+EzeXbfe2oaiPs71AIdnoWhXDO2fYOHz8df3kV84A==", + "dev": true, + "dependencies": { + "@typescript-eslint/parser": "^6.4.0", + "eslint-config-standard": "17.1.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^6.4.0", + "eslint": "^8.0.1", + "eslint-plugin-import": "^2.25.2", + "eslint-plugin-n": "^15.0.0 || ^16.0.0 ", + "eslint-plugin-promise": "^6.0.0", + "typescript": "*" + } + }, + "node_modules/eslint-import-resolver-node": { + "version": "0.3.9", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.9.tgz", + "integrity": "sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.13.0", + "resolve": "^1.22.4" + } + }, + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-module-utils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.8.0.tgz", + "integrity": "sha512-aWajIYfsqCKRDgUfjEXNN/JlrzauMuSEy5sbd7WXbtW3EH6A6MpwEh42c7qD+MqQo9QMJ6fWLAeIJynx0g6OAw==", + "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, + "engines": { + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } + } + }, + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-compat": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-compat/-/eslint-plugin-compat-4.2.0.tgz", + "integrity": "sha512-RDKSYD0maWy5r7zb5cWQS+uSPc26mgOzdORJ8hxILmWM7S/Ncwky7BcAtXVY5iRbKjBdHsWU8Yg7hfoZjtkv7w==", + "dev": true, + "dependencies": { + "@mdn/browser-compat-data": "^5.3.13", + "ast-metadata-inferer": "^0.8.0", + "browserslist": "^4.21.10", + "caniuse-lite": "^1.0.30001524", + "find-up": "^5.0.0", + "lodash.memoize": "^4.1.2", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=14.x" + }, + "peerDependencies": { + "eslint": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-compat/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-compat/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-compat/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-plugin-es-x": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-es-x/-/eslint-plugin-es-x-7.2.0.tgz", + "integrity": "sha512-9dvv5CcvNjSJPqnS5uZkqb3xmbeqRLnvXKK7iI5+oK/yTusyc46zbBZKENGsOfojm/mKfszyZb+wNqNPAPeGXA==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.1.2", + "@eslint-community/regexpp": "^4.6.0" + }, + "engines": { + "node": "^14.18.0 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ota-meshi" + }, + "peerDependencies": { + "eslint": ">=8" + } + }, + "node_modules/eslint-plugin-import": { + "version": "2.28.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.28.1.tgz", + "integrity": "sha512-9I9hFlITvOV55alzoKBI+K9q74kv0iKMeY6av5+umsNwayt59fz692daGyjR+oStBQgx6nwR9rXldDev3Clw+A==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.findlastindex": "^1.2.2", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.8.0", + "has": "^1.0.3", + "is-core-module": "^2.13.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.fromentries": "^2.0.6", + "object.groupby": "^1.0.0", + "object.values": "^1.1.6", + "semver": "^6.3.1", + "tsconfig-paths": "^3.14.2" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + } + }, + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/eslint-plugin-import/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-jest": { + "version": "27.4.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.4.2.tgz", + "integrity": "sha512-3Nfvv3wbq2+PZlRTf2oaAWXWwbdBejFRBR2O8tAO67o+P8zno+QGbcDYaAXODlreXVg+9gvWhKKmG2rgfb8GEg==", + "dev": true, + "dependencies": { + "@typescript-eslint/utils": "^5.10.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0", + "eslint": "^7.0.0 || ^8.0.0", + "jest": "*" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + } + }, + "node_modules/eslint-plugin-jest/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jest/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-jest/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-plugin-mocha": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-mocha/-/eslint-plugin-mocha-6.3.0.tgz", + "integrity": "sha512-Cd2roo8caAyG21oKaaNTj7cqeYRWW1I2B5SfpKRp0Ip1gkfwoR1Ow0IGlPWnNjzywdF4n+kHL8/9vM6zCJUxdg==", + "dev": true, + "dependencies": { + "eslint-utils": "^2.0.0", + "ramda": "^0.27.0" + }, + "engines": { + "node": ">=8.0.0" + }, + "peerDependencies": { + "eslint": ">= 4.0.0" + } + }, + "node_modules/eslint-plugin-n": { + "version": "16.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-n/-/eslint-plugin-n-16.1.0.tgz", + "integrity": "sha512-3wv/TooBst0N4ND+pnvffHuz9gNPmk/NkLwAxOt2JykTl/hcuECe6yhTtLJcZjIxtZwN+GX92ACp/QTLpHA3Hg==", + "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.4.0", + "builtins": "^5.0.1", + "eslint-plugin-es-x": "^7.1.0", + "get-tsconfig": "^4.7.0", + "ignore": "^5.2.4", + "is-core-module": "^2.12.1", + "minimatch": "^3.1.2", + "resolve": "^1.22.2", + "semver": "^7.5.3" + }, + "engines": { + "node": ">=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=7.0.0" + } + }, + "node_modules/eslint-plugin-n/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-n/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/eslint-plugin-n/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/eslint-plugin-preact": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-preact/-/eslint-plugin-preact-0.1.0.tgz", + "integrity": "sha512-/ZNTjrTLhDOkZmW8cY6W91lfrGEhyF5i0KFRhjlvCAPcWENxeXlx1TKbKgzjyvGtei8c2WlvWCgxO5PdyXe0EA==", + "dev": true, + "dependencies": { + "eslint-config-developit": "^1.1.1" + } + }, + "node_modules/eslint-plugin-promise": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-promise/-/eslint-plugin-promise-6.1.1.tgz", + "integrity": "sha512-tjqWDwVZQo7UIPMeDReOpUgHCmCiH+ePnVT+5zVapL0uuHnegBUs2smM13CzOs2Xb5+MHMRFTs9v24yjba4Oig==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "peerDependencies": { + "eslint": "^7.0.0 || ^8.0.0" + } + }, + "node_modules/eslint-plugin-react": { + "version": "7.33.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.33.2.tgz", + "integrity": "sha512-73QQMKALArI8/7xGLNI/3LylrEYrlKZSb5C9+q3OtOewTnMQi5cT+aE9E41sLCmli3I9PGGmD1yiZydyo4FEPw==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "es-iterator-helpers": "^1.0.12", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.1", + "string.prototype.matchall": "^4.0.8" + }, + "engines": { + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "dev": true, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + } + }, + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "dev": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-2.1.0.tgz", + "integrity": "sha512-w94dQYoauyvlDc43XnGB8lU3Zt713vNChgt4EWwhXAP2XkBvndfxF0AgIqKOOasjPIPzj9JqgwkwbCYD0/V3Zg==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^1.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + } + }, + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "dev": true, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/eslint/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/eslint/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/eslint/node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.3" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/eslint/node_modules/globals": { + "version": "13.22.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.22.0.tgz", + "integrity": "sha512-H1Ddc/PbZHTDVJSnj8kWptIRSD6AM3pK+mKytuIVF4uoBV7rshFlhhvA58ceJ5wp3Er58w6zj7bykMpYXt3ETw==", + "dev": true, + "dependencies": { + "type-fest": "^0.20.2" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "dev": true, + "dependencies": { + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" + } + }, + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "dev": true, + "bin": { + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "dev": true, + "dependencies": { + "estraverse": "^5.1.0" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "dev": true, + "dependencies": { + "estraverse": "^5.2.0" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "dev": true, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/estree-walker": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/estree-walker/-/estree-walker-2.0.2.tgz", + "integrity": "sha512-Rfkk/Mp/DL7JVje3u18FxFujQlTNR2q6QfMSMB7AvCBx91NGj/ba3kCfza0f6dVDbw7YlRf/nDrn7pQrCCyQ/w==", + "dev": true + }, + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "dev": true, + "peer": true, + "engines": { + "node": ">=0.8.x" + } + }, + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" + } + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/expect": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/expect/-/expect-29.7.0.tgz", + "integrity": "sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==", + "dev": true, + "dependencies": { + "@jest/expect-utils": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.1.tgz", + "integrity": "sha512-kNFPyjhh5cKjrUltxs+wFx+ZkbRaxxmZ+X0ZU31SOsxCEtP9VPgtq2teZw1DebupL5GmDaNQ6yKMMVcM41iqDg==", + "dev": true, + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, + "engines": { + "node": ">=8.6.0" + } + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==", + "dev": true + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.15.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.15.0.tgz", + "integrity": "sha512-wBrocU2LCXXa+lWBt8RoIRD89Fi8OdABODa/kEnyeyjS5aZO5/GNvI5sEINADqP/h8M29UHTHUb53sUu5Ihqdw==", + "dev": true, + "dependencies": { + "reusify": "^1.0.4" + } + }, + "node_modules/fb-watchman": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.2.tgz", + "integrity": "sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==", + "dev": true, + "dependencies": { + "bser": "2.1.1" + } + }, + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "dev": true, + "dependencies": { + "flat-cache": "^3.0.4" + }, + "engines": { + "node": "^10.12.0 || >=12.0.0" + } + }, + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "dev": true, + "dependencies": { + "to-regex-range": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/flat-cache": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.1.0.tgz", + "integrity": "sha512-OHx4Qwrrt0E4jEIcI5/Xb+f+QmJYNj2rrK8wiIdQOIrB9WrrJL8cjZvXdXuBTkkEwEqLycb5BeZDV1o2i9bTew==", + "dev": true, + "dependencies": { + "flatted": "^3.2.7", + "keyv": "^4.5.3", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=12.0.0" + } + }, + "node_modules/flatted": { + "version": "3.2.9", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.9.tgz", + "integrity": "sha512-36yxDn5H7OFZQla0/jFJmbIKTdZAQHngCedGxiMmpNfEZM0sdEeT+WczLQrjK6D7o2aiyLYDnkw0R3JK0Qv1RQ==", + "dev": true + }, + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "dev": true, + "dependencies": { + "is-callable": "^1.1.3" + } + }, + "node_modules/formidable": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/formidable/-/formidable-2.1.1.tgz", + "integrity": "sha512-0EcS9wCFEzLvfiks7omJ+SiYJAiD+TzK4Pcw1UlUoGnhUxDcMKjt0P7x8wEb0u6OHu8Nb98WG3nxtlF5C7bvUQ==", + "dev": true, + "dependencies": { + "dezalgo": "^1.0.4", + "hexoid": "^1.0.0", + "once": "^1.4.0", + "qs": "^6.11.0" + }, + "funding": { + "url": "https://ko-fi.com/tunnckoCore/commissions" + } + }, + "node_modules/fraction.js": { + "version": "4.3.6", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.3.6.tgz", + "integrity": "sha512-n2aZ9tNfYDwaHhvFTkhFErqOMIb8uyzSQ+vGJBjZyanAKZVbGUQ1sngfk9FdkBw7G26O7AgNjLcecLffD1c7eg==", + "dev": true, + "engines": { + "node": "*" + }, + "funding": { + "type": "patreon", + "url": "https://github.com/sponsors/rawify" + } + }, + "node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz", + "integrity": "sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==", + "dev": true, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + } + }, + "node_modules/function-bind": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", + "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", + "dev": true + }, + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", + "dev": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "dev": true, + "dependencies": { + "globule": "^1.0.0" + }, + "engines": { + "node": ">= 4.0.0" + } + }, + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "dev": true, + "engines": { + "node": ">=6.9.0" + } + }, + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "dev": true, + "engines": { + "node": "6.* || 8.* || >= 10.*" + } + }, + "node_modules/get-intrinsic": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.1.tgz", + "integrity": "sha512-2DcsyfABl+gVHEfCOaTrWgyt+tb6MSEGmKq+kI5HwLbIYgjgmMcV8KQ41uaKz1xxUcn9tJtgFbQUEVcEbd0FYw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1", + "has": "^1.0.3", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "dev": true, + "engines": { + "node": ">=8.0.0" + } + }, + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/get-symbol-description": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.0.tgz", + "integrity": "sha512-2EmdH1YvIQiZpltCNgkuiUnyukzxM/R6NDJX31Ke3BG1Nq5b0S2PhX59UKi9vZpPDQVdqn+1IcaAwnzTT5vCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/get-tsconfig": { + "version": "4.7.2", + "resolved": "https://registry.npmjs.org/get-tsconfig/-/get-tsconfig-4.7.2.tgz", + "integrity": "sha512-wuMsz4leaj5hbGgg4IvDU0bqJagpftG5l5cXIAvo8uZrqn0NJqwtfupTN00VnkQJPcIRrxYrm1Ue24btpCha2A==", + "dev": true, + "dependencies": { + "resolve-pkg-maps": "^1.0.0" + }, + "funding": { + "url": "https://github.com/privatenumber/get-tsconfig?sponsor=1" + } + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "dev": true, + "dependencies": { + "is-glob": "^4.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true, + "peer": true + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "dev": true, + "dependencies": { + "define-properties": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "dev": true, + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/globrex": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/globrex/-/globrex-0.1.2.tgz", + "integrity": "sha512-uHJgbwAMwNFf5mLst7IWLNg14x1CkeqglJb/K3doi4dw6q2IvAAmM/Y81kevy83wP+Sst+nutFTYOGg3d1lsxg==", + "dev": true + }, + "node_modules/globule": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", + "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", + "dev": true, + "dependencies": { + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" + }, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/globule/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/globule/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/graceful-fs": { + "version": "4.2.11", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.11.tgz", + "integrity": "sha512-RbJ5/jmFcNNCcDV5o9eTnBLJ/HszWV0P73bc+Ff4nS/rJj+YaS6IGyiOL0VoBYX+l1Wrl3k63h/KrH+nhJ0XvQ==", + "dev": true + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "dev": true, + "dependencies": { + "function-bind": "^1.1.1" + }, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.0.tgz", + "integrity": "sha512-62DVLZGoiEBDHQyqG4w9xCuZ7eJEwNmJRWw2VY84Oedb7WFcA27fiEVe8oUQx9hAUJ4ekurquucTGwsyO1XGdQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.1.tgz", + "integrity": "sha512-7qE+iP+O+bgF9clE5+UoBFzE65mlBiVj3tKCrlNQ0Ogwm0BjpT/gK4SlLYDMybDh5I3TCTKnPPa0oMG7JDYrhg==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-tostringtag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.0.tgz", + "integrity": "sha512-kFjcSNhnlGV1kyoGk7OXKSawH5JOb/LzUc5w9B02hOTO0dfFRjbHQKvg1d6cf3HbeUmtU9VbbV3qzZ2Teh97WQ==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true + }, + "node_modules/hexoid": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/hexoid/-/hexoid-1.0.0.tgz", + "integrity": "sha512-QFLV0taWQOZtvIRIAdBChesmogZrtuXvVWsFHZTk2SU+anspqZ2vMnoLg7IE1+Uk16N19APic1BuF8bC8c2m5g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/hosted-git-info/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", + "dev": true + }, + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", + "dev": true + }, + "node_modules/http-errors": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "dev": true, + "dependencies": { + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/http-proxy-agent": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-5.0.0.tgz", + "integrity": "sha512-n2hY8YdoRE1i7r6M0w9DIw5GgZN0G25P8zLCRQ8rjXtTU3vsNFBI/vWK/UIeE6g5MUUz6avwAPXmL6Fy9D/90w==", + "dev": true, + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/http-status": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/http-status/-/http-status-1.7.0.tgz", + "integrity": "sha512-6HZ8T2ywZKtNKOrRA22x4Z+fK+UiWzimWYSTROVHrZ46RX+hKsg9wCQiodRtfNrKfsvOkwsXA6R9q+TmDY+8nQ==", + "dev": true, + "engines": { + "node": ">= 0.4.0" + } + }, + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "dev": true, + "dependencies": { + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "dev": true, + "engines": { + "node": ">=10.17.0" + } + }, + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "dev": true, + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/ignore": { + "version": "5.2.4", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.2.4.tgz", + "integrity": "sha512-MAb38BcSbH0eHNBxn7ql2NH/kX33OkB3lZ1BNdh7ENeRChHTYsTvWrMubiIAMNS2llXEEgZ1MUOBtXChP3kaFQ==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/image-size": { + "version": "0.5.5", + "resolved": "https://registry.npmjs.org/image-size/-/image-size-0.5.5.tgz", + "integrity": "sha512-6TDAlDPZxUFCv+fuOkIoXT/V/f3Qbq8e37p+YOiYrUv3v9cc3/6x78VdfPgFVaB9dZYeLUfKgHRebpkm/oP2VQ==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "image-size": "bin/image-size.js" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/immer": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/immer/-/immer-10.0.3.tgz", + "integrity": "sha512-pwupu3eWfouuaowscykeckFmVTpqbzW+rXFCX8rQLkZzM9ftBmU/++Ra+o+L27mz03zJTlyV4UUr+fdKNffo4A==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/immer" + } + }, + "node_modules/immutable": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.4.tgz", + "integrity": "sha512-fsXeu4J4i6WNWSikpI88v/PcVflZz+6kMhUfIwc5SY+poQRPnaf5V7qds6SUyUN3cVxEzuCab7QIoLOQ+DQ1wA==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "dev": true, + "dependencies": { + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "dev": true, + "dependencies": { + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "dev": true, + "engines": { + "node": ">=0.8.19" + } + }, + "node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true + }, + "node_modules/inflation": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/inflation/-/inflation-2.0.0.tgz", + "integrity": "sha512-m3xv4hJYR2oXw4o4Y5l6P5P16WYmazYof+el6Al3f+YlggGj6qT9kImBAnzDelRALnP5d3h4jGBPKzYCizjZZw==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "dev": true, + "dependencies": { + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", + "dev": true + }, + "node_modules/internal-slot": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.5.tgz", + "integrity": "sha512-Y+R5hJrzs52QCG2laLn4udYVnxsfny9CpOhNhUvk/SSSVyF6T27FzRbF0sroPidSu3X8oEAkOn2K804mjpt6UQ==", + "dev": true, + "dependencies": { + "get-intrinsic": "^1.2.0", + "has": "^1.0.3", + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/ip": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", + "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "dev": true + }, + "node_modules/is-array-buffer": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.2.tgz", + "integrity": "sha512-y+FyyR/w8vfIRq4eQcM1EYgSTnmHXPqaF+IgzgraytCFq5Xh8lllDVmAZolPJiZttZLeFSINPYMaEJ7/vWUa1w==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.0", + "is-typed-array": "^1.1.10" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", + "dev": true + }, + "node_modules/is-async-function": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-async-function/-/is-async-function-2.0.0.tgz", + "integrity": "sha512-Y1JXKrfykRJGdlDwdKlLpLyMIiWqWvuSd17TvZk68PLAOGOoF4Xyav1z0Xhoi+gCYjZVeC5SI+hYFOfvXmGRCA==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "dev": true, + "dependencies": { + "binary-extensions": "^2.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-core-module": { + "version": "2.13.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.13.0.tgz", + "integrity": "sha512-Z7dk6Qo8pOCp3l4tsX2C5ZVas4V+UxwQodwZhLopL91TX8UyyHEXafPcyoeeWuLrwzHcr3igO78wNLwHJHsMCQ==", + "dev": true, + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-finalizationregistry": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-finalizationregistry/-/is-finalizationregistry-1.0.2.tgz", + "integrity": "sha512-0by5vtUJs8iFQb5TYUHHPudOR+qXYIMKtiUzvLIZITZUjknFmziyBJuLhVRc+Ds0dREFlskDNJKYIdIzu/9pfw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "dev": true, + "dependencies": { + "is-extglob": "^2.1.1" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", + "dev": true + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-negative-zero": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.2.tgz", + "integrity": "sha512-dqJvarLawXsFbNDeJW7zAz8ItJ9cd28YufuuFzh0G8pNHjJMnY08Dv7sYX2uF5UpQOwieAeOExEYAWWfu7ZZUA==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "dev": true, + "engines": { + "node": ">=0.12.0" + } + }, + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-shared-array-buffer": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.2.tgz", + "integrity": "sha512-sqN2UDu1/0y6uvXyStCOzyhAjCSlHceFoMKJW8W9EU9cvic/QdsZ0kEU93HEy3IUEFZIiH/3w+AH/UQbPHNdhA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-typed-array": { + "version": "1.1.12", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.12.tgz", + "integrity": "sha512-Z14TF2JNG8Lss5/HMqt0//T9JeHXttXy5pH/DBU4vi98ozO2btxzq9MwYDZYnKwU8nRsz/+GVFVRDq3DkVuSPg==", + "dev": true, + "dependencies": { + "which-typed-array": "^1.1.11" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-what": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/is-what/-/is-what-3.14.1.tgz", + "integrity": "sha512-sNxgpk9793nzSs7bA6JQJGeIuRBQhAaNGG77kzYQgMkrID+lS6SlK07K5LaptscDlSaIgH+GPFzf+d75FVxozA==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-instrument": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-6.0.0.tgz", + "integrity": "sha512-x58orMzEVfzPUKqlbLd1hXCnySCxKdDKa6Rjg97CwuLLRI4g3FHTdnExu1OqffVFay6zeMW+T6/DowFLndWnIw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^7.5.4" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-instrument/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/istanbul-lib-report": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.1.tgz", + "integrity": "sha512-GCfE1mtsHGOELCU8e/Z7YWzpmybrx/+dSTfLrvY8qRmaY6zXTKWn6WQIjaAFw069icm6GVMNkgu0NzI4iPZUNw==", + "dev": true, + "dependencies": { + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^4.0.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/istanbul-reports": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.6.tgz", + "integrity": "sha512-TLgnMkKg3iTDsQ9PbPTdpfAK2DzjF9mqUG7RMgcQl8oFjad8ob4laGxv5XV5U9MAfx8D6tSJiUyuAwzLicaxlg==", + "dev": true, + "dependencies": { + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/iterator.prototype": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/iterator.prototype/-/iterator.prototype-1.1.2.tgz", + "integrity": "sha512-DR33HMMr8EzwuRL8Y9D3u2BMj8+RqSE850jfGu59kS7tbmPLzGkZmVSfyCFSDxuZiEY6Rzt3T2NA/qU+NwVj1w==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "reflect.getprototypeof": "^1.0.4", + "set-function-name": "^2.0.1" + } + }, + "node_modules/jest": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest/-/jest-29.7.0.tgz", + "integrity": "sha512-NIy3oAFp9shda19hy4HK0HRTWKtPJmGdnvywu01nOqNC2vZg+Z+fvJDxpMQA88eb2I9EcafcdjYgsDthnYTvGw==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/types": "^29.6.3", + "import-local": "^3.0.2", + "jest-cli": "^29.7.0" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-changed-files": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-29.7.0.tgz", + "integrity": "sha512-fEArFiwf1BpQ+4bXSprcDc3/x4HSzL4al2tozwVpDFpsxALjLYdyiIK4e5Vz66GQJIbXJ82+35PtysofptNX2w==", + "dev": true, + "dependencies": { + "execa": "^5.0.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-29.7.0.tgz", + "integrity": "sha512-3E1nCMgipcTkCocFwM90XXQab9bS+GMsjdpmPrlelaxwD93Ad8iVEjX/vvHPdLPnFf+L40u+5+iutRdA1N9myw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/expect": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^1.0.0", + "is-generator-fn": "^2.0.0", + "jest-each": "^29.7.0", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "p-limit": "^3.1.0", + "pretty-format": "^29.7.0", + "pure-rand": "^6.0.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-circus/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-circus/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-circus/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-circus/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-circus/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-29.7.0.tgz", + "integrity": "sha512-OVVobw2IubN/GSYsxETi+gOe7Ka59EFMR/twOU3Jb2GnKKeMGJB5SGUUrEz3SFVmJASUdZUzy83sLNNQ2gZslg==", + "dev": true, + "dependencies": { + "@jest/core": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "create-jest": "^29.7.0", + "exit": "^0.1.2", + "import-local": "^3.0.2", + "jest-config": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "yargs": "^17.3.1" + }, + "bin": { + "jest": "bin/jest.js" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } + } + }, + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-cli/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-cli/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-29.7.0.tgz", + "integrity": "sha512-uXbpfeQ7R6TZBqI3/TxCU4q4ttk3u0PJeC+E0zbfSoSjq6bJ7buBPxzQPL0ifrkY4DNu4JUdk0ImlBUYi840eQ==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/test-sequencer": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-jest": "^29.7.0", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-circus": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-runner": "^29.7.0", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@types/node": "*", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-config/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-config/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-config/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-config/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-29.7.0.tgz", + "integrity": "sha512-LMIgiIrhigmPrs03JHpxUh2yISK3vLFPkAodPeo0+BuF7wA2FoQbkEg1u8gBYBThncu7e1oEDUfIXVuTqLRUjw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^29.6.3", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-diff/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-diff/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-diff/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-docblock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-29.7.0.tgz", + "integrity": "sha512-q617Auw3A612guyaFgsbFeYpNP5t2aoUNLwBUbc/0kD1R4t9ixDbyFTHd1nok4epoVFpr7PmeWHrhvuV3XaJ4g==", + "dev": true, + "dependencies": { + "detect-newline": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-29.7.0.tgz", + "integrity": "sha512-gns+Er14+ZrEoC5fhOfYCY1LOHHr0TI+rQUHZS8Ttw2l7gl+80eHc/gFf2Ktkw0+SIACDTeWvpFcv3B04VembQ==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "jest-util": "^29.7.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-each/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-each/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-each/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-each/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-environment-node": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-29.7.0.tgz", + "integrity": "sha512-DOSwCRqXirTOyheM+4d5YZOrWcdu0LNZ87ewUoywbcb2XR4wKgqiG8vNeYwhjFMbEkfju7wx2GYH0P2gevGvFw==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-mock": "^29.7.0", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-get-type": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-29.6.3.tgz", + "integrity": "sha512-zrteXnqYxfQh7l5FHyL38jL39di8H8rHoecLH3JNxH3BwOrBsNeabdap5e0I23lD4HHI8W5VFBZqG4Eaq5LNcw==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-leak-detector": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-29.7.0.tgz", + "integrity": "sha512-kYA8IJcSYtST2BY9I+SMC32nDpBT3J2NvWJx8+JCuCdl/CR1I4EKUJROiP8XtCcxqgTTBGJNdbB1A8XRKbTetw==", + "dev": true, + "dependencies": { + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-leak-detector/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-leak-detector/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-matcher-utils": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-29.7.0.tgz", + "integrity": "sha512-sBkD+Xi9DtcChsI3L3u0+N0opgPYnCRPtGcQYrgXmR+hmt/fYfWAL0xRXYU8eWOdfuLgBe0YCW3AFtnRLagq/g==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-matcher-utils/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-matcher-utils/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-matcher-utils/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-29.7.0.tgz", + "integrity": "sha512-GBEV4GRADeP+qtB2+6u61stea8mGcOT4mCtrYISZwfu9/ISHFJ/5zOMXYbpBE9RsS5+Gb63DW4FgmnKJ79Kf6w==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.12.13", + "@jest/types": "^29.6.3", + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^29.7.0", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-message-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-message-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-message-util/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-message-util/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-message-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-mock": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-29.7.0.tgz", + "integrity": "sha512-ITOMZn+UkYS4ZFh83xYAOzWStloNzJFO2s8DWrE4lhtGD+AorgnbkiKERe4wQVBydIGPx059g6riW5Btp6Llnw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "jest-util": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-pnp-resolver": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.3.tgz", + "integrity": "sha512-+3NpwQEnRoIBtx4fyhblQDPgJI0H1IEIkX7ShLUjPGA7TtUTvI1oiKi3SR4oBR0hQhQR80l4WAe5RrXBwWMA8w==", + "dev": true, + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" + }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-29.7.0.tgz", + "integrity": "sha512-IOVhZSrg+UvVAshDSDtHyFCCBUl/Q3AAJv8iZ6ZjnZ74xzvwuzLXid9IIIPgTnY62SJjfuupMKZsZQRsCvxEgA==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-pnp-resolver": "^1.2.2", + "jest-util": "^29.7.0", + "jest-validate": "^29.7.0", + "resolve": "^1.20.0", + "resolve.exports": "^2.0.0", + "slash": "^3.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-29.7.0.tgz", + "integrity": "sha512-un0zD/6qxJ+S0et7WxeI3H5XSe9lTBBR7bOHCHXkKR6luG5mwDDlIzVQ0V5cZCuoTgEdcdwzTghYkTWfubi+nA==", + "dev": true, + "dependencies": { + "jest-regex-util": "^29.6.3", + "jest-snapshot": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-resolve/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-resolve/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-resolve/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-resolve/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-resolve/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-29.7.0.tgz", + "integrity": "sha512-fsc4N6cPCAahybGBfTRcq5wFR6fpLznMg47sY5aDpsoejOcVYFb07AHuSnR0liMcPTgBsA3ZJL6kFOjPdoNipQ==", + "dev": true, + "dependencies": { + "@jest/console": "^29.7.0", + "@jest/environment": "^29.7.0", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^29.7.0", + "jest-environment-node": "^29.7.0", + "jest-haste-map": "^29.7.0", + "jest-leak-detector": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-resolve": "^29.7.0", + "jest-runtime": "^29.7.0", + "jest-util": "^29.7.0", + "jest-watcher": "^29.7.0", + "jest-worker": "^29.7.0", + "p-limit": "^3.1.0", + "source-map-support": "0.5.13" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runner/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runner/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runner/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runner/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runner/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-29.7.0.tgz", + "integrity": "sha512-gUnLjgwdGqW7B4LvOIkbKs9WGbn+QLqRQQ9juC6HndeDiezIwhDP+mhMwHWCEcfQ5RUXa6OPnFF8BJh5xegwwQ==", + "dev": true, + "dependencies": { + "@jest/environment": "^29.7.0", + "@jest/fake-timers": "^29.7.0", + "@jest/globals": "^29.7.0", + "@jest/source-map": "^29.6.3", + "@jest/test-result": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-mock": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-resolve": "^29.7.0", + "jest-snapshot": "^29.7.0", + "jest-util": "^29.7.0", + "slash": "^3.0.0", + "strip-bom": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-runtime/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-runtime/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-runtime/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-runtime/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-runtime/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-29.7.0.tgz", + "integrity": "sha512-Rm0BMWtxBcioHr1/OX5YCP8Uov4riHvKPknOGs804Zg9JGZgmIBkbtlxJC/7Z4msKYVbIJtfU+tKb8xlYNfdkw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-jsx": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/types": "^7.3.3", + "@jest/expect-utils": "^29.7.0", + "@jest/transform": "^29.7.0", + "@jest/types": "^29.6.3", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^29.7.0", + "graceful-fs": "^4.2.9", + "jest-diff": "^29.7.0", + "jest-get-type": "^29.6.3", + "jest-matcher-utils": "^29.7.0", + "jest-message-util": "^29.7.0", + "jest-util": "^29.7.0", + "natural-compare": "^1.4.0", + "pretty-format": "^29.7.0", + "semver": "^7.5.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-snapshot/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-snapshot/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/jest-snapshot/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-snapshot/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-util/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-util/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-util/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-util/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-util/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-29.7.0.tgz", + "integrity": "sha512-ZB7wHqaRGVw/9hST/OuFUReG7M8vKeq0/J2egIGLdvjHCmYqGARhzXmtgi+gVeZ5uXFF219aOc3Ls2yLg27tkw==", + "dev": true, + "dependencies": { + "@jest/types": "^29.6.3", + "camelcase": "^6.2.0", + "chalk": "^4.0.0", + "jest-get-type": "^29.6.3", + "leven": "^3.1.0", + "pretty-format": "^29.7.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-validate/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-validate/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-validate/node_modules/pretty-format": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-29.7.0.tgz", + "integrity": "sha512-Pdlw/oPxN+aXdmM9R00JVC9WVFoCLTKJvDVLgmJ+qAffBMxsV85l/Lu7sNx4zSzPyoL2euImuEwHhOXdEgNFZQ==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "ansi-styles": "^5.0.0", + "react-is": "^18.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-validate/node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-validate/node_modules/react-is": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.2.0.tgz", + "integrity": "sha512-xWGDIW6x921xtzPkhiULtthJHoJvBbF3q26fzloPCK0hsvxtPVelvftw3zjbHWSkR2km9Z+4uxbDDK/6Zw9B8w==", + "dev": true + }, + "node_modules/jest-validate/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-29.7.0.tgz", + "integrity": "sha512-49Fg7WXkU3Vl2h6LbLtMQ/HyB6rXSIX7SqvBLQmssRBGN9I0PNvPmAmCWSOY6SOvrjhI/F7/bGAv9RtnsPA03g==", + "dev": true, + "dependencies": { + "@jest/test-result": "^29.7.0", + "@jest/types": "^29.6.3", + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "emittery": "^0.13.1", + "jest-util": "^29.7.0", + "string-length": "^4.0.1" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-watcher/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/jest-watcher/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/jest-watcher/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/jest-watcher/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", + "dev": true, + "dependencies": { + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "dev": true + }, + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==", + "dev": true + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "dev": true, + "dependencies": { + "argparse": "^2.0.1" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "dev": true, + "bin": { + "jsesc": "bin/jsesc" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-better-errors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json-parse-better-errors/-/json-parse-better-errors-1.0.2.tgz", + "integrity": "sha512-mrqyZKfX5EhL7hvqcV6WG1yYjnjeuYDzDhhcAAUrq8Po85NBQBJP+ZDUT75qZQ98IkUoBqdkExkukOU7Ts2wrw==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "dev": true, + "bin": { + "json5": "lib/cli.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "dev": true, + "dependencies": { + "universalify": "^2.0.0" + }, + "optionalDependencies": { + "graceful-fs": "^4.1.6" + } + }, + "node_modules/jsx-ast-utils": { + "version": "3.3.5", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.5.tgz", + "integrity": "sha512-ZZow9HBI5O6EPgSJLUb8n2NKgmVWTwCvHGwFuJlMjvLFqlGG6pjirPhtdsseaLZjSibD8eegzmYpUZwoIlj2cQ==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "object.assign": "^4.1.4", + "object.values": "^1.1.6" + }, + "engines": { + "node": ">=4.0" + } + }, + "node_modules/keygrip": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/keygrip/-/keygrip-1.1.0.tgz", + "integrity": "sha512-iYSchDJ+liQ8iwbSI2QqsQOvqv58eJCEanyJPJi+Khyu8smkcKSFUCbPwzFcL7YVtZ6eONjqRX/38caJ7QjRAQ==", + "dev": true, + "dependencies": { + "tsscmp": "1.0.6" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/keyv": { + "version": "4.5.3", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.3.tgz", + "integrity": "sha512-QCiSav9WaX1PgETJ+SpNnx2PRRapJ/oRSXM4VO5OGYGSjrxbKPVFVhB3l2OCbLCk329N8qyAtsJjSjvVBWzEug==", + "dev": true, + "dependencies": { + "json-buffer": "3.0.1" + } + }, + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/kolorist": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/kolorist/-/kolorist-1.8.0.tgz", + "integrity": "sha512-Y+60/zizpJ3HRH8DCss+q95yr6145JXZo46OTpFvDZWLfRCE4qChOyk1b26nMaNpfHHgxagk9dXT5OP0Tfe+dQ==", + "dev": true + }, + "node_modules/less": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/less/-/less-4.2.0.tgz", + "integrity": "sha512-P3b3HJDBtSzsXUl0im2L7gTO5Ubg8mEN6G8qoTS77iXxXX4Hvu4Qj540PZDvQ8V6DmX6iXo98k7Md0Cm1PrLaA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "copy-anything": "^2.0.1", + "parse-node-version": "^1.0.1", + "tslib": "^2.3.0" + }, + "bin": { + "lessc": "bin/lessc" + }, + "engines": { + "node": ">=6" + }, + "optionalDependencies": { + "errno": "^0.1.1", + "graceful-fs": "^4.1.2", + "image-size": "~0.5.0", + "make-dir": "^2.1.0", + "mime": "^1.4.1", + "needle": "^3.1.0", + "source-map": "~0.6.0" + } + }, + "node_modules/less/node_modules/make-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", + "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "pify": "^4.0.1", + "semver": "^5.6.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/less/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/less/node_modules/tslib": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz", + "integrity": "sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/load-json-file": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-4.0.0.tgz", + "integrity": "sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.1.2", + "parse-json": "^4.0.0", + "pify": "^3.0.0", + "strip-bom": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/parse-json": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-4.0.0.tgz", + "integrity": "sha512-aOIos8bujGN93/8Ox/jPLh7RwVnPEysynVFE+fQZyg6jKELEHwzgKdLRFHUgXJL6kylijVSBC4BvN9OmsB48Rw==", + "dev": true, + "dependencies": { + "error-ex": "^1.3.1", + "json-parse-better-errors": "^1.0.1" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/load-json-file/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6.11.5" + } + }, + "node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==", + "dev": true + }, + "node_modules/lodash.memoize": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", + "integrity": "sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "dev": true, + "dependencies": { + "js-tokens": "^3.0.0 || ^4.0.0" + }, + "bin": { + "loose-envify": "cli.js" + } + }, + "node_modules/lru-cache": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-5.1.1.tgz", + "integrity": "sha512-KpNARQA3Iwv+jTA0utUVVbrh+Jlrr1Fv0e56GGzAFOXN7dk/FviaDW8LHmK52DlcH4WP2n6gI8vN1aesBFgo9w==", + "dev": true, + "dependencies": { + "yallist": "^3.0.2" + } + }, + "node_modules/magic-string": { + "version": "0.27.0", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.27.0.tgz", + "integrity": "sha512-8UnnX2PeRAPZuN12svgR9j7M1uWMovg/CEnIwIG0LFkXSJJe4PdfUGiTGl8V9bsBHFUtfVINcSyYxd7q+kx9fA==", + "dev": true, + "dependencies": { + "@jridgewell/sourcemap-codec": "^1.4.13" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/make-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-4.0.0.tgz", + "integrity": "sha512-hXdUTZYIVOt1Ex//jAQi+wTZZpUpwBj/0QsOzqegb3rGMMeJiSEu5xLHnYfBrRV4RH2+OCSOO95Is/7x1WJ4bw==", + "dev": true, + "dependencies": { + "semver": "^7.5.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/make-dir/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/make-dir/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/make-fetch-happen": { + "version": "10.2.1", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-10.2.1.tgz", + "integrity": "sha512-NgOPbRiaQM10DYXvN3/hhGVI2M5MtITFryzBGxHM5p4wnFxsVCbxkrBrDsk+EZ5OB4jEOT7AjDxtdF+KVEFT7w==", + "dev": true, + "dependencies": { + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^7.0.0", + "ssri": "^9.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/make-fetch-happen/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "dev": true, + "dependencies": { + "tmpl": "1.0.5" + } + }, + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/memorystream": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/memorystream/-/memorystream-0.3.1.tgz", + "integrity": "sha512-S3UwM3yj5mtUSEfP41UZmt/0SCoVYUcU1rkXv+BQ5Ig8ndL4sPoJNBUJERafdPb5jjHJGuMgytgKvKIf58XNBw==", + "dev": true, + "engines": { + "node": ">= 0.10.0" + } + }, + "node_modules/meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", + "dev": true, + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/meow/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", + "dev": true, + "dependencies": { + "braces": "^3.0.2", + "picomatch": "^2.3.1" + }, + "engines": { + "node": ">=8.6" + } + }, + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "mime": "cli.js" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "dev": true, + "dependencies": { + "mime-db": "1.52.0" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", + "dev": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, + "engines": { + "node": "*" + } + }, + "node_modules/minimist": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.8.tgz", + "integrity": "sha512-2yyAR8qBkN3YuheJanUpWC5U3bb5osDywNB8RzDVlDwDHbocAJveqqj1u8+SVD7jkWT4yvsHCpWqqWqAxb0zCA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", + "dev": true, + "dependencies": { + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/minipass": { + "version": "3.3.6", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.6.tgz", + "integrity": "sha512-DxiNidxSEK+tHG6zOIklvNOwm3hvCrbUrdtzY74U6HKTJxvIDfOUL5W5P2Ghd3DTkhhKPYGqeNUIh5qcM4YBfw==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-fetch": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-2.1.2.tgz", + "integrity": "sha512-LT49Zi2/WMROHYoqGgdlQIZh8mLPZmOrN2NdJjMXxYe4nkN6FUyuPuOAOedNJDrx0IRGg9+4guZewtp8hE6TxA==", + "dev": true, + "dependencies": { + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" + } + }, + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/minipass/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", + "dev": true, + "dependencies": { + "minipass": "^3.0.0", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/minizlib/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", + "dev": true + }, + "node_modules/nan": { + "version": "2.18.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.18.0.tgz", + "integrity": "sha512-W7tfG7vMOGtD30sHoZSSc/JVYiyDPEyQVso/Zz+/uQd0B0L46gtC+pHha5FFMRpil6fm/AoEcRWyOVi4+E/f8w==", + "dev": true + }, + "node_modules/nanoid": { + "version": "3.3.7", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.7.tgz", + "integrity": "sha512-eSRppjcPIatRIMC1U6UngP8XFcz8MQWGQdt1MTBQ7NaAmvXDfvNxbvWV3x2y6CdEUciCSsDHDQZbhYaB8QEo2g==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } + }, + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", + "dev": true + }, + "node_modules/natural-compare-lite": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare-lite/-/natural-compare-lite-1.4.0.tgz", + "integrity": "sha512-Tj+HTDSJJKaZnfiuw+iaF9skdPpTo2GtEly5JHnWV/hfv2Qj/9RKsGISQtLh2ox3l5EAGw487hnBee0sIJ6v2g==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/needle": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/needle/-/needle-3.2.0.tgz", + "integrity": "sha512-oUvzXnyLiVyVGoianLijF9O/RecZUf7TkBfimjGrLM4eQhXyeJwM6GeAWccwfQ9aa4gMCZKqhAOuLaMIcQxajQ==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "debug": "^3.2.6", + "iconv-lite": "^0.6.3", + "sax": "^1.2.4" + }, + "bin": { + "needle": "bin/needle" + }, + "engines": { + "node": ">= 4.4.x" + } + }, + "node_modules/needle/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "ms": "^2.1.1" + } + }, + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", + "dev": true, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/nice-try": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/nice-try/-/nice-try-1.0.5.tgz", + "integrity": "sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==", + "dev": true + }, + "node_modules/node-gyp": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", + "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", + "dev": true, + "dependencies": { + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": ">= 10.12.0" + } + }, + "node_modules/node-gyp/node_modules/@npmcli/fs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@npmcli/fs/-/fs-1.1.1.tgz", + "integrity": "sha512-8KG5RD0GVP4ydEzRn/I4BNDuxDtqVbOdm8675T49OIG/NGhaK0pjPX7ZcDlvKYbA+ulvVK3ztfcF4uBdOxuJbQ==", + "dev": true, + "dependencies": { + "@gar/promisify": "^1.0.1", + "semver": "^7.3.5" + } + }, + "node_modules/node-gyp/node_modules/@npmcli/move-file": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@npmcli/move-file/-/move-file-1.1.2.tgz", + "integrity": "sha512-1SUf/Cg2GzGDyaf15aR9St9TWlb+XvbZXWpDx8YKs7MLzMH/BCeopv+y9vzrzgkfykCGuWOlSu3mZhj2+FQcrg==", + "deprecated": "This functionality has been moved to @npmcli/fs", + "dev": true, + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/node-gyp/node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "dev": true, + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/node-gyp/node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "dev": true, + "dependencies": { + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/node-gyp/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/node_modules/make-fetch-happen": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", + "dev": true, + "dependencies": { + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/node-gyp/node_modules/minipass-fetch": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", + "dev": true, + "dependencies": { + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" + }, + "engines": { + "node": ">=8" + }, + "optionalDependencies": { + "encoding": "^0.1.12" + } + }, + "node_modules/node-gyp/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/node-gyp/node_modules/socks-proxy-agent": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-6.2.1.tgz", + "integrity": "sha512-a6KW9G+6B3nWZ1yB8G7pJwL3ggLy1uTzKAgCb7ttblwqdz9fMGJUuTy3uFzEP48FAs9FLILlmzDlE2JJhVQaXQ==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/node-gyp/node_modules/ssri": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-8.0.1.tgz", + "integrity": "sha512-97qShzy1AiyxvPNIkLWoGua7xoQzzPjQ0HAH4B0rWKo7SZ6USuPcrUiAFrws0UH8RrbWmgq3LMTObhPIHbbBeQ==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/node-gyp/node_modules/unique-filename": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-1.1.1.tgz", + "integrity": "sha512-Vmp0jIp2ln35UTXuryvjzkjGdRyf9b2lTXuSYUiPmzRcl3FDtYqAwOnTJkAngD9SWhnoJzDbTKwaOrZ+STtxNQ==", + "dev": true, + "dependencies": { + "unique-slug": "^2.0.0" + } + }, + "node_modules/node-gyp/node_modules/unique-slug": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-2.0.2.tgz", + "integrity": "sha512-zoWr9ObaxALD3DOPfjPSqxt4fnZiWblxHIgeWqW8x7UqDzEtHEQLzji2cuJYQFCU6KmoJikOYAZlrTHHebjx2w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + } + }, + "node_modules/node-gyp/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", + "dev": true + }, + "node_modules/node-releases": { + "version": "2.0.13", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.13.tgz", + "integrity": "sha512-uYr7J37ae/ORWdZeQ1xxMJe3NtdmqMC/JZK+geofDrkLUApKRHPd18/TxtBOJ4A0/+uUIliorNrfYV6s1b02eQ==", + "dev": true + }, + "node_modules/node-sass": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-9.0.0.tgz", + "integrity": "sha512-yltEuuLrfH6M7Pq2gAj5B6Zm7m+gdZoG66wTqG6mIZV/zijq3M2OO2HswtT6oBspPyFhHDcaxWpsBm0fRNDHPg==", + "dev": true, + "hasInstallScript": true, + "dependencies": { + "async-foreach": "^0.1.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "make-fetch-happen": "^10.0.4", + "meow": "^9.0.0", + "nan": "^2.17.0", + "node-gyp": "^8.4.1", + "sass-graph": "^4.0.1", + "stdout-stream": "^1.4.0", + "true-case-path": "^2.2.1" + }, + "bin": { + "node-sass": "bin/node-sass" + }, + "engines": { + "node": ">=16" + } + }, + "node_modules/node-sass/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/node-sass/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/node-sass/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/node-sass/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/node-sass/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/node-sass/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", + "dev": true, + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", + "dev": true, + "dependencies": { + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/semver": { + "version": "7.5.4", + "resolved": "https://registry.npmjs.org/semver/-/semver-7.5.4.tgz", + "integrity": "sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA==", + "dev": true, + "dependencies": { + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/normalize-package-data/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/normalize-range": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", + "integrity": "sha512-bdok/XvKII3nUpklnV6P2hxtMNrCboOjAcyBuQnWEhO665FwrSNRxU+AqpsyvO6LgGYPspN+lu5CLtw4jPRKNA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/npm-run-all/-/npm-run-all-4.1.5.tgz", + "integrity": "sha512-Oo82gJDAVcaMdi3nuoKFavkIHBRVqQ1qvMb+9LHk/cF4P6B2m8aP04hGf7oL6wZ9BuGwX1onlLhpuoofSyoQDQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^3.2.1", + "chalk": "^2.4.1", + "cross-spawn": "^6.0.5", + "memorystream": "^0.3.1", + "minimatch": "^3.0.4", + "pidtree": "^0.3.0", + "read-pkg": "^3.0.0", + "shell-quote": "^1.6.1", + "string.prototype.padend": "^3.0.0" + }, + "bin": { + "npm-run-all": "bin/npm-run-all/index.js", + "run-p": "bin/run-p/index.js", + "run-s": "bin/run-s/index.js" + }, + "engines": { + "node": ">= 4" + } + }, + "node_modules/npm-run-all/node_modules/cross-spawn": { + "version": "6.0.5", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-6.0.5.tgz", + "integrity": "sha512-eTVLrBSt7fjbDygz805pMnstIs2VTBNkRm0qxZd+M7A5XDdxVRWO5MxGBXZhjY4cqLYLdtrGqRf8mBPmzwSpWQ==", + "dev": true, + "dependencies": { + "nice-try": "^1.0.4", + "path-key": "^2.0.1", + "semver": "^5.5.0", + "shebang-command": "^1.2.0", + "which": "^1.2.9" + }, + "engines": { + "node": ">=4.8" + } + }, + "node_modules/npm-run-all/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/npm-run-all/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/npm-run-all/node_modules/path-key": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-2.0.1.tgz", + "integrity": "sha512-fEHGKCSmUSDPv4uoj8AlD+joPlq3peND+HRYyxFz4KPw4z926S/b8rIuFs2FYJg3BwsxJf6A9/3eIdLaYC+9Dw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/path-type": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-3.0.0.tgz", + "integrity": "sha512-T2ZUsdZFHgA3u4e5PfPbjd7HDDpxPnQb5jN0SrDsjNSuVXHJqtwTnWqG0B1jZrgmJ/7lj1EmVIByWt1gxGkWvg==", + "dev": true, + "dependencies": { + "pify": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/pify": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", + "integrity": "sha512-C3FsVNH1udSEX48gGX1xfvwTWfsYWj5U+8/uK15BGzIGrKoUpghX8hWZwa/OFnakBiiVNmBvemTJR5mcy7iPcg==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/read-pkg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-3.0.0.tgz", + "integrity": "sha512-BLq/cCO9two+lBgiTYNqD6GdtK8s4NpaWrl6/rCO9w0TUS8oJl7cmToOZfRYllKTISY6nt1U7jQ53brmKqY6BA==", + "dev": true, + "dependencies": { + "load-json-file": "^4.0.0", + "normalize-package-data": "^2.3.2", + "path-type": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/npm-run-all/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/npm-run-all/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", + "dev": true, + "dependencies": { + "shebang-regex": "^1.0.0" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/npm-run-all/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" + } + }, + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", + "dev": true, + "dependencies": { + "path-key": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "dev": true, + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/object-inspect": { + "version": "1.12.3", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.12.3.tgz", + "integrity": "sha512-geUvdk7c+eizMNUDkRpW1wJwgfOiOeHbxBR/hLXK1aT6zmVSO0jsQcs7fj6MGw89jC/cjGfLcNOrtMYtGqm81g==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.assign": { + "version": "4.1.4", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.4.tgz", + "integrity": "sha512-1mxKf0e58bvyjSCtKYY4sRe9itRk3PJpquJOjeIkz885CczcI4IvJJDLPS72oowuSh+pBxUFROpX+TU++hxhZQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.entries": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.7.tgz", + "integrity": "sha512-jCBs/0plmPsOnrKAfFQXRG2NFjlhZgjjcBLSmTnEhU8U6vVTsVe8ANeQJCHTl3gSsI4J+0emOoCgoKlmQPMgmA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/object.fromentries": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.7.tgz", + "integrity": "sha512-UPbPHML6sL8PI/mOqPwsH4G6iyXcCGzLin8KvEPenOZN5lpCNBZZQ+V62vdjB1mQHrmqGQt5/OJzemUA+KJmEA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.groupby": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/object.groupby/-/object.groupby-1.0.1.tgz", + "integrity": "sha512-HqaQtqLnp/8Bn4GL16cj+CUYbnpe1bh0TtEaWvybszDG4tgxCJuRpV8VGuvNaI1fAnI4lUJzDG55MXcOH4JZcQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1" + } + }, + "node_modules/object.hasown": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.3.tgz", + "integrity": "sha512-fFI4VcYpRHvSLXxP7yiZOMAd331cPfd2p7PFDVbgUsYOfCT3tICVqXWngbjr4m49OvsBwUBQ6O2uQoJvy3RexA==", + "dev": true, + "dependencies": { + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/object.values": { + "version": "1.1.7", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.7.tgz", + "integrity": "sha512-aU6xnDFYT3x17e/f0IiiwlGPTy2jzMySGfUB4fq6z7CV8l85CWHDk5ErhyhpfDHhrOMwGFhSQkhMGHaIotA6Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dev": true, + "dependencies": { + "wrappy": "1" + } + }, + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, + "dependencies": { + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "dev": true, + "dependencies": { + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, + "dependencies": { + "aggregate-error": "^3.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, + "dependencies": { + "callsites": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/parse-node-version": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parse-node-version/-/parse-node-version-1.0.1.tgz", + "integrity": "sha512-3YHlOa/JgH6Mnpr05jP9eDG254US9ek25LyIxZlDItp2iJtwyaXQb57lBYLdT3MowkUFYEV2XXNAYIPlESvJlA==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">= 0.10" + } + }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true + }, + "node_modules/path-to-regexp": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-6.2.1.tgz", + "integrity": "sha512-JLyh7xT1kizaEvcaXOQwOc2/Yhw6KZOvPf1S8401UyLk86CU79LN3vl7ztXGm/pZ+YjoyAJ4rxmHwbkBXJX+yw==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "dev": true, + "engines": { + "node": ">=8.6" + }, + "funding": { + "url": "https://github.com/sponsors/jonschlinkert" + } + }, + "node_modules/pidtree": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.3.1.tgz", + "integrity": "sha512-qQbW94hLHEqCg7nhby4yRC7G2+jYHY4Rguc2bjw7Uug4GIJuu1tvf2uHaZv5Q8zdt+WKJ6qK1FOI6amaWUo5FA==", + "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, + "engines": { + "node": ">=0.10" + } + }, + "node_modules/pify": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", + "integrity": "sha512-udgsAY+fTnvv7kI7aaxbqwWNb0AHiB0qBO89PZKPkoTmGOgdbrHDKD+0B2X4uTfJ/FT1R09r9gTsjUjNJotuog==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "dev": true, + "dependencies": { + "find-up": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/pkg-dir/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/pkg-dir/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/postcss": { + "version": "8.4.33", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.33.tgz", + "integrity": "sha512-Kkpbhhdjw2qQs2O2DGX+8m5OVqEcbB9HRBvuYM9pgrjEFUg30A9LmXNlTAUj4S9kgtGyrMbTzVjH7E+s5Re2yg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "nanoid": "^3.3.7", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, + "engines": { + "node": "^10 || ^12 || >=14" + } + }, + "node_modules/postcss-cli": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/postcss-cli/-/postcss-cli-10.1.0.tgz", + "integrity": "sha512-Zu7PLORkE9YwNdvOeOVKPmWghprOtjFQU3srMUGbdz3pHJiFh7yZ4geiZFMkjMfB0mtTFR3h8RemR62rPkbOPA==", + "dev": true, + "dependencies": { + "chokidar": "^3.3.0", + "dependency-graph": "^0.11.0", + "fs-extra": "^11.0.0", + "get-stdin": "^9.0.0", + "globby": "^13.0.0", + "picocolors": "^1.0.0", + "postcss-load-config": "^4.0.0", + "postcss-reporter": "^7.0.0", + "pretty-hrtime": "^1.0.3", + "read-cache": "^1.0.0", + "slash": "^5.0.0", + "yargs": "^17.0.0" + }, + "bin": { + "postcss": "index.js" + }, + "engines": { + "node": ">=14" + }, + "peerDependencies": { + "postcss": "^8.0.0" + } + }, + "node_modules/postcss-cli/node_modules/get-stdin": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-9.0.0.tgz", + "integrity": "sha512-dVKBjfWisLAicarI2Sf+JuBE/DghV4UzNAVe9yhEJuzeREd3JhOTE9cUaJTeSa77fsbQUK3pcOpJfM59+VKZaA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss-cli/node_modules/globby": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/globby/-/globby-13.2.2.tgz", + "integrity": "sha512-Y1zNGV+pzQdh7H39l9zgB4PJqjRNqydvdYCDG4HFXM4XuvSaQQlEc91IU1yALL8gUTDomgBAfz3XJdmUS+oo0w==", + "dev": true, + "dependencies": { + "dir-glob": "^3.0.1", + "fast-glob": "^3.3.0", + "ignore": "^5.2.4", + "merge2": "^1.4.1", + "slash": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss-cli/node_modules/globby/node_modules/slash": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-4.0.0.tgz", + "integrity": "sha512-3dOsAHXXUkQTpOYcoAxLIorMTp4gIQr5IW3iVb7A7lFIp0VHhnynm9izx6TssdrIcVIESAlVjtnO2K8bg+Coew==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss-cli/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", + "dev": true, + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/postcss-load-config": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/postcss-load-config/-/postcss-load-config-4.0.1.tgz", + "integrity": "sha512-vEJIc8RdiBRu3oRAI0ymerOn+7rPuMvRXslTvZUKZonDHFIczxztIyJ1urxM1x9JXEikvpWWTUUqal5j/8QgvA==", + "dev": true, + "dependencies": { + "lilconfig": "^2.0.5", + "yaml": "^2.1.1" + }, + "engines": { + "node": ">= 14" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": ">=8.0.9", + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "postcss": { + "optional": true + }, + "ts-node": { + "optional": true + } + } + }, + "node_modules/postcss-load-config/node_modules/yaml": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.3.2.tgz", + "integrity": "sha512-N/lyzTPaJasoDmfV7YTrYCI0G/3ivm/9wdG0aHuheKowWQwGTsK0Eoiw6utmzAnI6pkJa0DUVygvp3spqqEKXg==", + "dev": true, + "engines": { + "node": ">= 14" + } + }, + "node_modules/postcss-reporter": { + "version": "7.0.5", + "resolved": "https://registry.npmjs.org/postcss-reporter/-/postcss-reporter-7.0.5.tgz", + "integrity": "sha512-glWg7VZBilooZGOFPhN9msJ3FQs19Hie7l5a/eE6WglzYqVeH3ong3ShFcp9kDWJT1g2Y/wd59cocf9XxBtkWA==", + "dev": true, + "dependencies": { + "picocolors": "^1.0.0", + "thenby": "^1.3.4" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + "peerDependencies": { + "postcss": "^8.1.0" + } + }, + "node_modules/postcss-selector-parser": { + "version": "6.0.13", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.13.tgz", + "integrity": "sha512-EaV1Gl4mUEV4ddhDnv/xtj7sxwrwxdetHdWUGnT4VJQf+4d05v6lHYZr8N573k5Z0BViss7BDhfWtKS3+sfAqQ==", + "dev": true, + "dependencies": { + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true + }, + "node_modules/preact": { + "version": "10.18.0", + "resolved": "https://registry.npmjs.org/preact/-/preact-10.18.0.tgz", + "integrity": "sha512-O4dGFmErPd3RNVDvXmCbOW6hetnve6vYtjx5qf51mCUmBS96s66MrNQkEII5UThDGoNF7953ptA+aNupiDxVeg==", + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/preact" + } + }, + "node_modules/preact-render-to-string": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/preact-render-to-string/-/preact-render-to-string-6.2.1.tgz", + "integrity": "sha512-5t7nFeMUextd53igL3GAakAAMaUD+dVWDHaRYaeh1tbPIjQIBtgJnMw6vf8VS/lviV0ggFtkgebatPxvtJsXyQ==", + "dependencies": { + "pretty-format": "^3.8.0" + }, + "peerDependencies": { + "preact": ">=10" + } + }, + "node_modules/preact-router": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/preact-router/-/preact-router-4.1.2.tgz", + "integrity": "sha512-uICUaUFYh+XQ+6vZtQn1q+X6rSqwq+zorWOCLWPF5FAsQh3EJ+RsDQ9Ee+fjk545YWQHfUxhrBAaemfxEnMOUg==", + "peerDependencies": { + "preact": ">=10" + } + }, + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "dev": true, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/prettier": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-3.0.3.tgz", + "integrity": "sha512-L/4pUDMxcNa8R/EthV08Zt42WBO4h1rarVtK0K+QJG0X187OLo7l699jWw0GKuwzkPQ//jMFA/8Xm6Fh3J/DAg==", + "dev": true, + "bin": { + "prettier": "bin/prettier.cjs" + }, + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" + } + }, + "node_modules/prettier-plugin-organize-imports": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/prettier-plugin-organize-imports/-/prettier-plugin-organize-imports-3.2.3.tgz", + "integrity": "sha512-KFvk8C/zGyvUaE3RvxN2MhCLwzV6OBbFSkwZ2OamCrs9ZY4i5L77jQ/w4UmUr+lqX8qbaqVq6bZZkApn+IgJSg==", + "dev": true, + "peerDependencies": { + "@volar/vue-language-plugin-pug": "^1.0.4", + "@volar/vue-typescript": "^1.0.4", + "prettier": ">=2.0", + "typescript": ">=2.9" + }, + "peerDependenciesMeta": { + "@volar/vue-language-plugin-pug": { + "optional": true + }, + "@volar/vue-typescript": { + "optional": true + } + } + }, + "node_modules/pretty-format": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-3.8.0.tgz", + "integrity": "sha512-WuxUnVtlWL1OfZFQFuqvnvs6MiAGk9UNsBostyBOB0Is9wb5uRESevA6rnl/rkksXaGX3GzZhPup5d6Vp1nFew==" + }, + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", + "dev": true + }, + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true + }, + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "dev": true, + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "dev": true, + "dependencies": { + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dev": true, + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" + } + }, + "node_modules/prr": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", + "integrity": "sha512-yPw4Sng1gWghHQWj0B3ZggWUm4qVbPwPFcRG8KyxiU7J2OHFSoEHKS+EZ3fv5l1t9CyCiop6l/ZYeWbrgoQejw==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/punycode": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.3.0.tgz", + "integrity": "sha512-rRV+zQD8tVFys26lAGR9WUuS4iUAngJScM+ZRSKtvl5tKeZ2t5bvdNFdNHBW9FWR4guGHlgmsZ1G7BSm2wTbuA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/pure-rand": { + "version": "6.0.4", + "resolved": "https://registry.npmjs.org/pure-rand/-/pure-rand-6.0.4.tgz", + "integrity": "sha512-LA0Y9kxMYv47GIPJy6MI84fqTd2HmYZI83W/kM/SkKfDlajnZYfmXFTxkbY+xSBPkLJxltMa9hIkmdc29eguMA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/dubzzz" + }, + { + "type": "opencollective", + "url": "https://opencollective.com/fast-check" + } + ] + }, + "node_modules/purgecss": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/purgecss/-/purgecss-5.0.0.tgz", + "integrity": "sha512-RAnuxrGuVyLLTr8uMbKaxDRGWMgK5CCYDfRyUNNcaz5P3kGgD2b7ymQGYEyo2ST7Tl/ScwFgf5l3slKMxHSbrw==", + "dev": true, + "dependencies": { + "commander": "^9.0.0", + "glob": "^8.0.3", + "postcss": "^8.4.4", + "postcss-selector-parser": "^6.0.7" + }, + "bin": { + "purgecss": "bin/purgecss.js" + } + }, + "node_modules/purgecss/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "dev": true, + "dependencies": { + "balanced-match": "^1.0.0" + } + }, + "node_modules/purgecss/node_modules/commander": { + "version": "9.5.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-9.5.0.tgz", + "integrity": "sha512-KRs7WVDKg86PWiuAqhDrAQnTXZKraVcCc6vFdL14qrZ/DcWwuRo7VoiYXalXO7S5GKpqYiVEwCbgFDfxNHKJBQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || >=14" + } + }, + "node_modules/purgecss/node_modules/glob": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", + "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/purgecss/node_modules/minimatch": { + "version": "5.1.6", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", + "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "dev": true, + "dependencies": { + "brace-expansion": "^2.0.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/qs": { + "version": "6.11.2", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.11.2.tgz", + "integrity": "sha512-tDNIz22aBzCDxLtVH++VnTfzxlfeK5CbqohpSqpJgj1Wg/cQbStNAz3NuqCs5vV+pjBsK4x4pN9HlVh7rcYRiA==", + "dev": true, + "dependencies": { + "side-channel": "^1.0.4" + }, + "engines": { + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ramda": { + "version": "0.27.2", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.27.2.tgz", + "integrity": "sha512-SbiLPU40JuJniHexQSAgad32hfwd+DRUdwF2PlVuI5RZD0/vahUco7R8vD86J/tcEKKF9vZrUVwgtmGCqlCKyA==", + "dev": true + }, + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "dev": true, + "peer": true, + "dependencies": { + "safe-buffer": "^5.1.0" + } + }, + "node_modules/raw-body": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.2.tgz", + "integrity": "sha512-8zGqypfENjCIqGhgXToC8aB2r7YrBX+AQAfIPs/Mlk+BtPTztOvTS01NRW/3Eh60J+a48lt8qsCzirQ6loCVfA==", + "dev": true, + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/raw-body/node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "dev": true, + "dependencies": { + "safer-buffer": ">= 2.1.2 < 3" + }, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==", + "dev": true + }, + "node_modules/read-cache": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/read-cache/-/read-cache-1.0.0.tgz", + "integrity": "sha512-Owdv/Ft7IjOgm/i0xvNDZ1LrRANRfew4b2prF3OWMQLxLfu3bS8FVhCsrSCMK4lR56Y9ya+AThoTpDCTxCmpRA==", + "dev": true, + "dependencies": { + "pify": "^2.3.0" + } + }, + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "dev": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "dev": true, + "dependencies": { + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "dev": true, + "dependencies": { + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "dev": true, + "dependencies": { + "p-locate": "^4.1.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/read-pkg-up/node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" + } + }, + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.2", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.2.tgz", + "integrity": "sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==", + "dev": true, + "dependencies": { + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" + }, + "engines": { + "node": ">= 6" + } + }, + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, + "engines": { + "node": ">=8.10.0" + } + }, + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "dev": true, + "dependencies": { + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/reflect.getprototypeof": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.4.tgz", + "integrity": "sha512-ECkTw8TmJwW60lOTR+ZkODISW6RQ8+2CL3COqtiJKLd6MmB45hN51HprHFziKLGkAuTGQhBb91V8cy+KHlaCjw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "globalthis": "^1.0.3", + "which-builtin-type": "^1.1.3" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/regenerator-runtime": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.14.0.tgz", + "integrity": "sha512-srw17NI0TUWHuGa5CFGGmhfNIeja30WMBfbslPNhf6JrqQlLN5gcrvig1oqPxiVaXb0oW0XRKtH6Nngs5lKCIA==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/regexp.prototype.flags": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.1.tgz", + "integrity": "sha512-sy6TXMN+hnP/wMy+ISxg3krXx7BAtWVO4UouuCN/ziM9UEne0euamVNafDfvC83bRNr95y0V5iijeDQFUNpvrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "set-function-name": "^2.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/require-directory": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", + "integrity": "sha512-fGxEI7+wsG9xrvdjsrlmL22OMTTiHRwAMroiEeMgq8gzoLC/PQr7RsRDSTLUg/bZAZtF+TVIkHc6/4RIKrui+Q==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/resolve": { + "version": "1.22.8", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.22.8.tgz", + "integrity": "sha512-oKWePCxqpd6FlLvGV1VU0x7bkPmmCNolxzjMf4NczoDnQcIWrAF+cPtZn5i6n+RfD2d9i0tzpKnG6Yk168yIyw==", + "dev": true, + "dependencies": { + "is-core-module": "^2.13.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/resolve-cwd": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/resolve-cwd/-/resolve-cwd-3.0.0.tgz", + "integrity": "sha512-OrZaX2Mb+rJCpH/6CpSqt9xFVpN++x01XnN2ie9g6P5/3xelLAkXWVADpdz1IHD/KFfEXyE6V0U01OQ3UO2rEg==", + "dev": true, + "dependencies": { + "resolve-from": "^5.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-cwd/node_modules/resolve-from": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-5.0.0.tgz", + "integrity": "sha512-qYg9KP24dD5qka9J47d0aVky0N+b4fTU89LN9iDnjB5waksiC49rvMB0PrUJQGoTmH50XPiqOvAjDfaijGxYZw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/resolve-pkg-maps": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/resolve-pkg-maps/-/resolve-pkg-maps-1.0.0.tgz", + "integrity": "sha512-seS2Tj26TBVOC2NIc2rOe2y2ZO7efxITtLZcGSOnHHNOQ7CkiUBfw0Iw2ck6xkIhPwLhKNLS8BO+hEpngQlqzw==", + "dev": true, + "funding": { + "url": "https://github.com/privatenumber/resolve-pkg-maps?sponsor=1" + } + }, + "node_modules/resolve.exports": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/resolve.exports/-/resolve.exports-2.0.2.tgz", + "integrity": "sha512-X2UW6Nw3n/aMgDVy+0rSqgHlv39WZAlZrXCdnbyEiKm17DSqHX4MmQMaST3FbeWR5FTuRcUwYAziZajji0Y7mg==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/reusify": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/reusify/-/reusify-1.0.4.tgz", + "integrity": "sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==", + "dev": true, + "engines": { + "iojs": ">=1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/rimraf": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-3.0.2.tgz", + "integrity": "sha512-JZkJMZkAGFFPP2YqXZXPbMlMBgsxzE8ILs4lMIX/2o0L9UBw9O/Y3o6wFw/i9YLapcUJWwqbi3kdxIPdC62TIA==", + "dev": true, + "dependencies": { + "glob": "^7.1.3" + }, + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/rollup": { + "version": "4.5.0", + "resolved": "https://registry.npmjs.org/rollup/-/rollup-4.5.0.tgz", + "integrity": "sha512-41xsWhzxqjMDASCxH5ibw1mXk+3c4TNI2UjKbLxe6iEzrSQnqOzmmK8/3mufCPbzHNJ2e04Fc1ddI35hHy+8zg==", + "dev": true, + "bin": { + "rollup": "dist/bin/rollup" + }, + "engines": { + "node": ">=18.0.0", + "npm": ">=8.0.0" + }, + "optionalDependencies": { + "@rollup/rollup-android-arm-eabi": "4.5.0", + "@rollup/rollup-android-arm64": "4.5.0", + "@rollup/rollup-darwin-arm64": "4.5.0", + "@rollup/rollup-darwin-x64": "4.5.0", + "@rollup/rollup-linux-arm-gnueabihf": "4.5.0", + "@rollup/rollup-linux-arm64-gnu": "4.5.0", + "@rollup/rollup-linux-arm64-musl": "4.5.0", + "@rollup/rollup-linux-x64-gnu": "4.5.0", + "@rollup/rollup-linux-x64-musl": "4.5.0", + "@rollup/rollup-win32-arm64-msvc": "4.5.0", + "@rollup/rollup-win32-ia32-msvc": "4.5.0", + "@rollup/rollup-win32-x64-msvc": "4.5.0", + "fsevents": "~2.3.2" + } + }, + "node_modules/rollup-plugin-brotli": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/rollup-plugin-brotli/-/rollup-plugin-brotli-3.1.0.tgz", + "integrity": "sha512-vXRPVd9B1x+aaXeBdmLKNNsai9AH3o0Qikf4u0m1icKqgi3qVA4UhOfwGaPYoAHML1GLMUnR//PDhiMHXN/M6g==", + "dev": true, + "engines": { + "node": ">=11.7.0" + } + }, + "node_modules/run-parallel": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/run-parallel/-/run-parallel-1.2.0.tgz", + "integrity": "sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "queue-microtask": "^1.2.2" + } + }, + "node_modules/safe-array-concat": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.0.1.tgz", + "integrity": "sha512-6XbUAseYE2KtOuGueyeobCySj9L4+66Tn6KQMOPQJrAJEowYKW/YR/MGJZl7FdydUdaFu4LYyDZjxf4/Nmo23Q==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "isarray": "^2.0.5" + }, + "engines": { + "node": ">=0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/safe-regex-test": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/safe-regex-test/-/safe-regex-test-1.0.0.tgz", + "integrity": "sha512-JBUUzyOgEwXQY1NuPtvcj/qcBDbDmEvWufhlnXZIm75DEHp+afM1r1ujJpJsV/gSM4t59tpDyPi1sd6ZaPFfsA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "is-regex": "^1.1.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/safer-buffer": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", + "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==", + "dev": true + }, + "node_modules/sass": { + "version": "1.69.0", + "resolved": "https://registry.npmjs.org/sass/-/sass-1.69.0.tgz", + "integrity": "sha512-l3bbFpfTOGgQZCLU/gvm1lbsQ5mC/WnLz3djL2v4WCJBDrWm58PO+jgngcGRNnKUh6wSsdm50YaovTqskZ0xDQ==", + "dev": true, + "dependencies": { + "chokidar": ">=3.0.0 <4.0.0", + "immutable": "^4.0.0", + "source-map-js": ">=0.6.2 <2.0.0" + }, + "bin": { + "sass": "sass.js" + }, + "engines": { + "node": ">=14.0.0" + } + }, + "node_modules/sass-graph": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-4.0.1.tgz", + "integrity": "sha512-5YCfmGBmxoIRYHnKK2AKzrAkCoQ8ozO+iumT8K4tXJXRVCPf+7s1/9KxTSW3Rbvf+7Y7b4FR3mWyLnQr3PHocA==", + "dev": true, + "dependencies": { + "glob": "^7.0.0", + "lodash": "^4.17.11", + "scss-tokenizer": "^0.4.3", + "yargs": "^17.2.1" + }, + "bin": { + "sassgraph": "bin/sassgraph" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/sass-loader": { + "version": "13.3.2", + "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-13.3.2.tgz", + "integrity": "sha512-CQbKl57kdEv+KDLquhC+gE3pXt74LEAzm+tzywcA0/aHZuub8wTErbjAoNI57rPUWRYRNC5WUnNl8eGJNbDdwg==", + "dev": true, + "dependencies": { + "neo-async": "^2.6.2" + }, + "engines": { + "node": ">= 14.15.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "fibers": ">= 3.1.0", + "node-sass": "^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0 || ^9.0.0", + "sass": "^1.3.0", + "sass-embedded": "*", + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "fibers": { + "optional": true + }, + "node-sass": { + "optional": true + }, + "sass": { + "optional": true + }, + "sass-embedded": { + "optional": true + } + } + }, + "node_modules/sax": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/sax/-/sax-1.3.0.tgz", + "integrity": "sha512-0s+oAmw9zLl1V1cS9BtZN7JAd0cW5e0QH4W3LWEK6a4LaLEA2OTpGYWDY+6XasBLtz6wkm3u1xRw95mRuJ59WA==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/scss-tokenizer": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz", + "integrity": "sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==", + "dev": true, + "dependencies": { + "js-base64": "^2.4.9", + "source-map": "^0.7.3" + } + }, + "node_modules/scss-tokenizer/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, + "node_modules/serialize-javascript": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/serialize-javascript/-/serialize-javascript-6.0.1.tgz", + "integrity": "sha512-owoXEFjWRllis8/M1Q+Cw5k8ZH40e3zhp/ovX+Xr/vi1qj6QesbyXXViFbpNvWvPNAD62SutwEXavefrLJWj7w==", + "dev": true, + "peer": true, + "dependencies": { + "randombytes": "^2.1.0" + } + }, + "node_modules/set-blocking": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", + "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", + "dev": true + }, + "node_modules/set-function-name": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/set-function-name/-/set-function-name-2.0.1.tgz", + "integrity": "sha512-tMNCiqYVkXIZgc2Hnoy2IvC/f8ezc5koaRFkCjrpWzGpCd3qbZXPzVy9MAZzK1ch/X0jvSkojys3oqJN0qCmdA==", + "dev": true, + "dependencies": { + "define-data-property": "^1.0.1", + "functions-have-names": "^1.2.3", + "has-property-descriptors": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/setprototypeof": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.2.0.tgz", + "integrity": "sha512-E5LDX7Wrp85Kil5bhZv46j8jOeboKq5JMmYM3gVGdGH8xFpPWXUMsNrlODCrkoxMEeNi/XZIwuRvY4XNwYMJpw==", + "dev": true + }, + "node_modules/shebang-command": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-2.0.0.tgz", + "integrity": "sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==", + "dev": true, + "dependencies": { + "shebang-regex": "^3.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/shebang-regex": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-3.0.0.tgz", + "integrity": "sha512-7++dFhtcx3353uBaq8DDR4NuxBetBzC7ZQOhmTQInHEd6bSrXdiEyzCvG07Z44UYdLShWUyXt5M/yhz8ekcb1A==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/shell-quote": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/shell-quote/-/shell-quote-1.8.1.tgz", + "integrity": "sha512-6j1W9l1iAs/4xYBI1SYOVZyFcCis9b4KCLQ8fgAGG07QvzaRLVVRQvAy85yNmmZSjYjg4MWh4gNvlPujU/5LpA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/side-channel": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/side-channel/-/side-channel-1.0.4.tgz", + "integrity": "sha512-q5XPytqFEIKHkGdiMIrY10mvLRvnQh42/+GoBlFW3b2LXLE2xxJpZFdm94we0BaoV3RwJyGqg5wS7epxTv0Zvw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.0", + "get-intrinsic": "^1.0.2", + "object-inspect": "^1.9.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", + "dev": true + }, + "node_modules/sisteransi": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/sisteransi/-/sisteransi-1.0.5.tgz", + "integrity": "sha512-bLGGlR1QxBcynn2d5YmDX4MGjlZvy2MRBDRNHLJ8VI6l6+9FUiyTFNJ0IveOSP0bcXgVDPRcfGqA0pjaqUpfVg==", + "dev": true + }, + "node_modules/slash": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-3.0.0.tgz", + "integrity": "sha512-g9Q1haeby36OSStwb4ntCGGGaKsaVSjQ68fBxoQcutl5fS1vuY18H3wSt3jFyFtrkx+Kz0V1G85A4MyAdDMi2Q==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/smart-buffer": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/smart-buffer/-/smart-buffer-4.2.0.tgz", + "integrity": "sha512-94hK0Hh8rPqQl2xXc3HsaBoOXKV20MToPkcXvwbISWLEs+64sBq5kFgn2kJDHb1Pry9yrP0dxrCI9RRci7RXKg==", + "dev": true, + "engines": { + "node": ">= 6.0.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/socks/-/socks-2.7.1.tgz", + "integrity": "sha512-7maUZy1N7uo6+WVEX6psASxtNlKaNVMlGQKkG/63nEDdLOWNbiUMoLK7X4uYoLhQstau72mLgfEWcXcwsaHbYQ==", + "dev": true, + "dependencies": { + "ip": "^2.0.0", + "smart-buffer": "^4.2.0" + }, + "engines": { + "node": ">= 10.13.0", + "npm": ">= 3.0.0" + } + }, + "node_modules/socks-proxy-agent": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-7.0.0.tgz", + "integrity": "sha512-Fgl0YPZ902wEsAyiQ+idGd1A7rSFx/ayC1CQVMw5P+EQx2V0SgpGtf6OKFhVjPflPUl9YMmEOnmfjCdMUsygww==", + "dev": true, + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } + }, + "node_modules/source-map": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", + "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-js": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/source-map-js/-/source-map-js-1.0.2.tgz", + "integrity": "sha512-R0XvVJ9WusLiqTCEiGCmICCMplcCkIwwR11mOSD9CR5u+IXYdiseeEuXCVAjS54zqwkLcPNnmU4OeJ6tUrWhDw==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/source-map-support": { + "version": "0.5.13", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", + "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", + "dev": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/spdx-correct": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.2.0.tgz", + "integrity": "sha512-kN9dJbvnySHULIluDHy32WHRUu3Og7B9sbY7tsFLctQkIqnMh3hErYgdMjTYuqmcXX+lK5T1lnUt3G7zNswmZA==", + "dev": true, + "dependencies": { + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-exceptions": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.3.0.tgz", + "integrity": "sha512-/tTrYOC7PPI1nUAgx34hUpqXuyJG+DTHJTnIULG4rDygi4xu/tfgmq1e1cIRwRzwZgo4NLySi+ricLkZkw4i5A==", + "dev": true + }, + "node_modules/spdx-expression-parse": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.1.tgz", + "integrity": "sha512-cbqHunsQWnJNE6KhVSMsMeH5H/L9EpymbzqTQ3uLwNCLZ1Q481oWaofqH7nO6V07xlXwY6PhQdQ2IedWx/ZK4Q==", + "dev": true, + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" + } + }, + "node_modules/spdx-license-ids": { + "version": "3.0.15", + "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.15.tgz", + "integrity": "sha512-lpT8hSQp9jAKp9mhtBU4Xjon8LPGBvLIuBiSVhMEtmLecTh2mO0tlqrAMp47tBXzMr13NJMQ2lf7RpQGLJ3HsQ==", + "dev": true + }, + "node_modules/sprintf-js": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", + "dev": true + }, + "node_modules/ssri": { + "version": "9.0.1", + "resolved": "https://registry.npmjs.org/ssri/-/ssri-9.0.1.tgz", + "integrity": "sha512-o57Wcn66jMQvfHG1FlYbWeZWW/dHZhJXjpIcTfXldXEk5nz5lStPo3mK0OJQfGR3RbZUlbISexbljkJzuEj/8Q==", + "dev": true, + "dependencies": { + "minipass": "^3.1.1" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/stack-utils": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/stack-utils/-/stack-utils-2.0.6.tgz", + "integrity": "sha512-XlkWvfIm6RmsWtNJx+uqtKLS8eqFbxUg0ZzLXqY0caEy9l7hruX8IpiDnjsLavoBgqCCR71TqWO8MaXYheJ3RQ==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^2.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/stack-utils/node_modules/escape-string-regexp": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-2.0.0.tgz", + "integrity": "sha512-UpzcLCXolUWcNu5HtVMHYdXJjArjsF9C0aNnquZYY4uW/Vu0miy5YoWvbV345HauVvcAUnpRuhMMcqTcGOY2+w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/statuses": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/statuses/-/statuses-2.0.1.tgz", + "integrity": "sha512-RwNA9Z/7PrK06rYLIzFMlaF+l73iwpzsqRIFgbMLbTcLD6cOao82TaWefPXQvB2fOC4AjuYSEndS7N/mTCbkdQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/stdout-stream": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", + "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", + "dev": true, + "dependencies": { + "readable-stream": "^2.0.1" + } + }, + "node_modules/stdout-stream/node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==", + "dev": true + }, + "node_modules/stdout-stream/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/stdout-stream/node_modules/safe-buffer": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", + "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", + "dev": true + }, + "node_modules/stdout-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.1.0" + } + }, + "node_modules/string_decoder": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", + "integrity": "sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==", + "dev": true, + "dependencies": { + "safe-buffer": "~5.2.0" + } + }, + "node_modules/string-length": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/string-length/-/string-length-4.0.2.tgz", + "integrity": "sha512-+l6rNN5fYHNhZZy41RXsYptCjA2Igmq4EG7kZAYFQI1E1VTXarr6ZPXBg6eq7Y6eK4FEhY6AJlyuFIb/v/S0VQ==", + "dev": true, + "dependencies": { + "char-regex": "^1.0.2", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/string-width": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string.prototype.matchall": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.10.tgz", + "integrity": "sha512-rGXbGmOEosIQi6Qva94HUjgPs9vKW+dkG7Y8Q5O2OYkWL6wFaTRZO8zM4mhP94uX55wgyrXzfS2aGtGzUL7EJQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "has-symbols": "^1.0.3", + "internal-slot": "^1.0.5", + "regexp.prototype.flags": "^1.5.0", + "set-function-name": "^2.0.0", + "side-channel": "^1.0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.padend": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/string.prototype.padend/-/string.prototype.padend-3.1.5.tgz", + "integrity": "sha512-DOB27b/2UTTD+4myKUFh+/fXWcu/UDyASIXfg+7VzoCNNGOfWvoyU/x5pvVHr++ztyt/oSYI1BcWBBG/hmlNjA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trim": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/string.prototype.trim/-/string.prototype.trim-1.2.8.tgz", + "integrity": "sha512-lfjY4HcixfQXOfaqCvcBuOIapyaroTXhbkfJN3gcB1OtyupngWK4sEET9Knd0cXd28kTUqu/kHoV4HKSJdnjiQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimend": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimend/-/string.prototype.trimend-1.0.7.tgz", + "integrity": "sha512-Ni79DqeB72ZFq1uH/L6zJ+DKZTkOtPIHovb3YZHQViE+HDouuU4mBrLOLDn5Dde3RF8qw5qVETEjhu9locMLvA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/string.prototype.trimstart": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/string.prototype.trimstart/-/string.prototype.trimstart-1.0.7.tgz", + "integrity": "sha512-NGhtDFu3jCEm7B4Fy0DpLewdJQOZcQ0rGbwQ/+stjnrp2i+rlKeCvos9hOIeCmqwratM47OBxY7uFZzjxHXmrg==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/strip-ansi": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-bom": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", + "integrity": "sha512-3xurFv5tEgii33Zi8Jtp55wEIILR9eh34FAW00PZf+JnSsTmV/ioewSgQl97JHvgjoRGwPShsWm+IdrxB35d0w==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-final-newline": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-2.0.0.tgz", + "integrity": "sha512-BrpvfNAE3dcvq7ll3xVumzjKjZQ5tI1sEUIKr3Uoks0XUl45St3FlatVqef9prk4jRDzhW6WZg+3bk93y6pLjA==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/strip-indent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-3.0.0.tgz", + "integrity": "sha512-laJTa3Jb+VQpaC6DseHhF7dXVqHTfJPCRDaEbid/drOhgitgYku/letMUqOXFoWV0zIIUbjpdH2t+tYj4bQMRQ==", + "dev": true, + "dependencies": { + "min-indent": "^1.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/strip-json-comments": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-3.1.1.tgz", + "integrity": "sha512-6fPc+R4ihwqP6N/aIv2f1gMH8lOVtWQHoqC4yK6oSDVVocumAsfCqjkXnqiYMhmMwS/mEHLp7Vehlt3ql6lEig==", + "dev": true, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/stylus": { + "version": "0.62.0", + "resolved": "https://registry.npmjs.org/stylus/-/stylus-0.62.0.tgz", + "integrity": "sha512-v3YCf31atbwJQIMtPNX8hcQ+okD4NQaTuKGUWfII8eaqn+3otrbttGL1zSMZAAtiPsBztQnujVBugg/cXFUpyg==", + "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@adobe/css-tools": "~4.3.1", + "debug": "^4.3.2", + "glob": "^7.1.6", + "sax": "~1.3.0", + "source-map": "^0.7.3" + }, + "bin": { + "stylus": "bin/stylus" + }, + "engines": { + "node": "*" + }, + "funding": { + "url": "https://opencollective.com/stylus" + } + }, + "node_modules/stylus/node_modules/source-map": { + "version": "0.7.4", + "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.7.4.tgz", + "integrity": "sha512-l3BikUxvPOcn5E74dZiq5BGsTb5yEwhaTSzccU6t4sDOH8NWJCstKO5QT2CvtFoK6F0saL7p9xHAqHOlCPJygA==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">= 8" + } + }, + "node_modules/supports-color": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", + "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", + "dev": true, + "dependencies": { + "has-flag": "^3.0.0" + }, + "engines": { + "node": ">=4" + } + }, + "node_modules/supports-preserve-symlinks-flag": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/supports-preserve-symlinks-flag/-/supports-preserve-symlinks-flag-1.0.0.tgz", + "integrity": "sha512-ot0WnXS9fgdkgIcePe6RHNk1WA8+muPa6cSjeR3V8K27q9BB1rTE3R1p7Hv0z1ZyAc8s6Vvv8DIyWf681MAt0w==", + "dev": true, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/tapable": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/tapable/-/tapable-2.2.1.tgz", + "integrity": "sha512-GNzQvQTOIP6RyTfE2Qxb8ZVlNmw0n88vp1szwWRimP02mnTsx3Wtn5qRdqY9w2XduFNUgvOwhNnQsjwCp+kqaQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/tar": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.0.tgz", + "integrity": "sha512-/Wo7DcT0u5HUV486xg675HtjNd3BXZ6xDbzsCUZPt5iw8bTQ63bP0Raut3mvro9u+CUyq7YQd8Cx55fsZXxqLQ==", + "dev": true, + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^5.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/tar/node_modules/minipass": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/tar/node_modules/yallist": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-4.0.0.tgz", + "integrity": "sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A==", + "dev": true + }, + "node_modules/terser": { + "version": "5.20.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.20.0.tgz", + "integrity": "sha512-e56ETryaQDyebBwJIWYB2TT6f2EZ0fL0sW/JRXNMN26zZdKi2u/E/5my5lG6jNxym6qsrVXfFRmOdV42zlAgLQ==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/source-map": "^0.3.3", + "acorn": "^8.8.2", + "commander": "^2.20.0", + "source-map-support": "~0.5.20" + }, + "bin": { + "terser": "bin/terser" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/terser-webpack-plugin": { + "version": "5.3.9", + "resolved": "https://registry.npmjs.org/terser-webpack-plugin/-/terser-webpack-plugin-5.3.9.tgz", + "integrity": "sha512-ZuXsqE07EcggTWQjXUj+Aot/OMcD0bMKGgF63f7UxYcu5/AJF53aIpK1YoP5xR9l6s/Hy2b+t1AM0bLNPRuhwA==", + "dev": true, + "peer": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.17", + "jest-worker": "^27.4.5", + "schema-utils": "^3.1.1", + "serialize-javascript": "^6.0.1", + "terser": "^5.16.8" + }, + "engines": { + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.1.0" + }, + "peerDependenciesMeta": { + "@swc/core": { + "optional": true + }, + "esbuild": { + "optional": true + }, + "uglify-js": { + "optional": true + } + } + }, + "node_modules/terser-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "peer": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/terser-webpack-plugin/node_modules/jest-worker": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "dev": true, + "peer": true, + "dependencies": { + "@types/node": "*", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" + }, + "engines": { + "node": ">= 10.13.0" + } + }, + "node_modules/terser-webpack-plugin/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "dev": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/supports-color?sponsor=1" + } + }, + "node_modules/terser/node_modules/source-map-support": { + "version": "0.5.21", + "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.21.tgz", + "integrity": "sha512-uBHU3L3czsIyYXKX88fdrGovxdSCoTGDRZ6SYXtSRxLZUzHg5P/66Ht6uoUlHu9EZod+inXhKo3qQgwXUT/y1w==", + "dev": true, + "peer": true, + "dependencies": { + "buffer-from": "^1.0.0", + "source-map": "^0.6.0" + } + }, + "node_modules/test-exclude": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/test-exclude/-/test-exclude-6.0.0.tgz", + "integrity": "sha512-cAGWPIyOHU6zlmg88jwm7VRyXnMN7iV68OGAbYDk/Mh/xC/pzVPlQtY6ngoIH/5/tciuhGfvESU8GrHrcxD56w==", + "dev": true, + "dependencies": { + "@istanbuljs/schema": "^0.1.2", + "glob": "^7.1.4", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/text-table": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/text-table/-/text-table-0.2.0.tgz", + "integrity": "sha512-N+8UisAXDGk8PFXP4HAzVR9nbfmVJ3zYLAWiTIoqC5v5isinhr+r5uaO8+7r3BMfuNIufIsA7RdpVgacC2cSpw==", + "dev": true + }, + "node_modules/thenby": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/thenby/-/thenby-1.3.4.tgz", + "integrity": "sha512-89Gi5raiWA3QZ4b2ePcEwswC3me9JIg+ToSgtE0JWeCynLnLxNr/f9G+xfo9K+Oj4AFdom8YNJjibIARTJmapQ==", + "dev": true + }, + "node_modules/throttle-debounce": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/throttle-debounce/-/throttle-debounce-5.0.0.tgz", + "integrity": "sha512-2iQTSgkkc1Zyk0MeVrt/3BvuOXYPl/R8Z0U2xxo9rjwNciaHDG3R+Lm6dh4EeUci49DanvBnuqI6jshoQQRGEg==", + "dev": true, + "engines": { + "node": ">=12.22" + } + }, + "node_modules/tmpl": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/tmpl/-/tmpl-1.0.5.tgz", + "integrity": "sha512-3f0uOEAQwIqGuWW2MVzYg8fV/QNnc/IpuJNG837rLuczAaLVHslWHZQj4IGiEl5Hs3kkbhwL9Ab7Hrsmuj+Smw==", + "dev": true + }, + "node_modules/to-fast-properties": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/to-fast-properties/-/to-fast-properties-2.0.0.tgz", + "integrity": "sha512-/OaKK0xYrs3DmxRYqL/yDc+FxFUVYhDlXMhRmv3z915w2HF1tnN1omB354j8VUGO/hbRzyD6Y3sA7v7GS/ceog==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/to-regex-range": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-5.0.1.tgz", + "integrity": "sha512-65P7iz6X5yEr1cwcgvQxbbIw7Uk3gOy5dIdtZ4rDveLqhrdJP+Li/Hx6tyK0NEb+2GCyneCMJiGqrADCSNk8sQ==", + "dev": true, + "dependencies": { + "is-number": "^7.0.0" + }, + "engines": { + "node": ">=8.0" + } + }, + "node_modules/toidentifier": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", + "integrity": "sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==", + "dev": true, + "engines": { + "node": ">=0.6" + } + }, + "node_modules/trim-newlines": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-3.0.1.tgz", + "integrity": "sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/true-case-path": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-2.2.1.tgz", + "integrity": "sha512-0z3j8R7MCjy10kc/g+qg7Ln3alJTodw9aDuVWZa3uiWqfuBMKeAeP2ocWcxoyM3D73yz3Jt/Pu4qPr4wHSdB/Q==", + "dev": true + }, + "node_modules/ts-api-utils": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/ts-api-utils/-/ts-api-utils-1.0.3.tgz", + "integrity": "sha512-wNMeqtMz5NtwpT/UZGY5alT+VoKdSsOOP/kqHFcUW1P/VRhH2wJ48+DN2WwUliNbQ976ETwDL0Ifd2VVvgonvg==", + "dev": true, + "engines": { + "node": ">=16.13.0" + }, + "peerDependencies": { + "typescript": ">=4.2.0" + } + }, + "node_modules/tsconfck": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/tsconfck/-/tsconfck-2.1.2.tgz", + "integrity": "sha512-ghqN1b0puy3MhhviwO2kGF8SeMDNhEbnKxjK7h6+fvY9JAxqvXi8y5NAHSQv687OVboS2uZIByzGd45/YxrRHg==", + "dev": true, + "bin": { + "tsconfck": "bin/tsconfck.js" + }, + "engines": { + "node": "^14.13.1 || ^16 || >=18" + }, + "peerDependencies": { + "typescript": "^4.3.5 || ^5.0.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } + } + }, + "node_modules/tsconfig-paths": { + "version": "3.14.2", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.14.2.tgz", + "integrity": "sha512-o/9iXgCYc5L/JxCHPe3Hvh8Q/2xm5Z+p18PESBU6Ff33695QnCHBEjcytY2q19ua7Mbl/DavtBOLq+oG0RCL+g==", + "dev": true, + "dependencies": { + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" + } + }, + "node_modules/tsconfig-paths/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "dev": true, + "dependencies": { + "minimist": "^1.2.0" + }, + "bin": { + "json5": "lib/cli.js" + } + }, + "node_modules/tsconfig-paths/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/tsscmp": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/tsscmp/-/tsscmp-1.0.6.tgz", + "integrity": "sha512-LxhtAkPDTkVCMQjt2h6eBVY28KCjikZqZfMcC15YBeNjkgUpdCfBu5HoiOTDu86v6smE8yOjyEktJ8hlbANHQA==", + "dev": true, + "engines": { + "node": ">=0.6.x" + } + }, + "node_modules/tsutils": { + "version": "3.21.0", + "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-3.21.0.tgz", + "integrity": "sha512-mHKK3iUXL+3UF6xL5k0PEhKRUBKPBCv/+RkEOpjRWxxx27KKRBmmA60A9pgOUvMi8GKhRMPEmjBRPzs2W7O1OA==", + "dev": true, + "dependencies": { + "tslib": "^1.8.1" + }, + "engines": { + "node": ">= 6" + }, + "peerDependencies": { + "typescript": ">=2.8.0 || >= 3.2.0-dev || >= 3.3.0-dev || >= 3.4.0-dev || >= 3.5.0-dev || >= 3.6.0-dev || >= 3.6.0-beta || >= 3.7.0-dev || >= 3.7.0-beta" + } + }, + "node_modules/type-check": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.4.0.tgz", + "integrity": "sha512-XleUoc9uwGXqjWwXaUTZAmzMcFZ5858QA2vvx1Ur5xIcixXIP+8LnFDgRplU30us6teqdlskFfu+ae4K79Ooew==", + "dev": true, + "dependencies": { + "prelude-ls": "^1.2.1" + }, + "engines": { + "node": ">= 0.8.0" + } + }, + "node_modules/type-detect": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/type-detect/-/type-detect-4.0.8.tgz", + "integrity": "sha512-0fr/mIH1dlO+x7TlcMy+bIDqKPsw/70tVyeHW787goQjhmqaZe10uwLujubK9q9Lg6Fiho1KUKDYz0Z7k7g5/g==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/type-is": { + "version": "1.6.18", + "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", + "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", + "dev": true, + "dependencies": { + "media-typer": "0.3.0", + "mime-types": "~2.1.24" + }, + "engines": { + "node": ">= 0.6" + } + }, + "node_modules/typed-array-buffer": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-buffer/-/typed-array-buffer-1.0.0.tgz", + "integrity": "sha512-Y8KTSIglk9OZEr8zywiIHG/kmQ7KWyjseXs1CbSo8vC42w7hg2HgYTxSWwP0+is7bWDc1H+Fo026CpHFwm8tkw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "get-intrinsic": "^1.2.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + } + }, + "node_modules/typed-array-byte-length": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-length/-/typed-array-byte-length-1.0.0.tgz", + "integrity": "sha512-Or/+kvLxNpeQ9DtSydonMxCx+9ZXOswtwJn17SNLvhptaXYDJvkFFP5zbfU/uLmvnBJlI4yrnXRxpdWH/M5tNA==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/typed-array-byte-offset/-/typed-array-byte-offset-1.0.0.tgz", + "integrity": "sha512-RD97prjEt9EL8YgAgpOkf3O4IF9lhJFr9g0htQkm0rchFp/Vx7LW5Q8fSXXub7BXAODyUQohRMyOc3faCPd0hg==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "has-proto": "^1.0.1", + "is-typed-array": "^1.1.10" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typed-array-length": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/typed-array-length/-/typed-array-length-1.0.4.tgz", + "integrity": "sha512-KjZypGq+I/H7HI5HlOoGHkWUUGq+Q0TPhQurLbyrVrvnKTBgzLhIJ7j6J/XTQOi0d1RjyZ0wdas8bKs2p0x3Ng==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "is-typed-array": "^1.1.9" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/typescript": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-5.2.2.tgz", + "integrity": "sha512-mI4WrpHsbCIcwT9cF4FZvr80QUeKvsUsUvKDoR+X/7XHQH98xYD8YHZg7ANtz2GtZt/CBq2QJ0thkGJMHfqc1w==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=14.17" + } + }, + "node_modules/unbox-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/unbox-primitive/-/unbox-primitive-1.0.2.tgz", + "integrity": "sha512-61pPlCD9h51VoreyJ0BReideM3MDKMKnh6+V9L08331ipq6Q8OFXZYiqP6n/tbHx4s5I9uRhcye6BrbkizkBDw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-bigints": "^1.0.2", + "has-symbols": "^1.0.3", + "which-boxed-primitive": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/unique-filename": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/unique-filename/-/unique-filename-2.0.1.tgz", + "integrity": "sha512-ODWHtkkdx3IAR+veKxFV+VBkUMcN+FaqzUUd7IZzt+0zhDZFPFxhlqwPF3YQvMHx1TD0tdgYl+kuPnJ8E6ql7A==", + "dev": true, + "dependencies": { + "unique-slug": "^3.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/unique-slug": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-slug/-/unique-slug-3.0.0.tgz", + "integrity": "sha512-8EyMynh679x/0gqE9fT9oilG+qEt+ibFyqjuVTsZn1+CMxH+XLlpvr2UZx4nVcCwTpx81nICr2JQFkM+HPLq4w==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/universalify": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/universalify/-/universalify-2.0.0.tgz", + "integrity": "sha512-hAZsKq7Yy11Zu1DE0OzWjw7nnLZmJZYTDZZyEFHZdUhV8FkH5MCfoU1XMaxXovpyW5nq5scPqq0ZDP9Zyl04oQ==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/unpipe": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", + "integrity": "sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/update-browserslist-db": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", + "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "escalade": "^3.1.1", + "picocolors": "^1.0.0" + }, + "bin": { + "update-browserslist-db": "cli.js" + }, + "peerDependencies": { + "browserslist": ">= 4.21.0" + } + }, + "node_modules/uri-js": { + "version": "4.4.1", + "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.4.1.tgz", + "integrity": "sha512-7rKUyy33Q1yc98pQ1DAmLtwX109F7TIfWlW1Ydo8Wl1ii1SeHieeh0HHfPeL2fMXK6z0s8ecKs9frCuLJvndBg==", + "dev": true, + "dependencies": { + "punycode": "^2.1.0" + } + }, + "node_modules/util-deprecate": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", + "integrity": "sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==", + "dev": true + }, + "node_modules/v8-to-istanbul": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", + "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "dev": true, + "dependencies": { + "@jridgewell/trace-mapping": "^0.3.12", + "@types/istanbul-lib-coverage": "^2.0.1", + "convert-source-map": "^1.6.0" + }, + "engines": { + "node": ">=10.12.0" + } + }, + "node_modules/v8-to-istanbul/node_modules/convert-source-map": { + "version": "1.9.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.9.0.tgz", + "integrity": "sha512-ASFBup0Mz1uyiIjANan1jzLQami9z1PoYSZCiiYW2FczPbenXc45FZdBZLzOT+r6+iciuEModtmCti+hjaAk0A==", + "dev": true + }, + "node_modules/validate-npm-package-license": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", + "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", + "dev": true, + "dependencies": { + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" + } + }, + "node_modules/vary": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", + "integrity": "sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==", + "dev": true, + "engines": { + "node": ">= 0.8" + } + }, + "node_modules/vite": { + "version": "5.0.12", + "resolved": "https://registry.npmjs.org/vite/-/vite-5.0.12.tgz", + "integrity": "sha512-4hsnEkG3q0N4Tzf1+t6NdN9dg/L3BM+q8SWgbSPnJvrgH2kgdyzfVJwbR1ic69/4uMJJ/3dqDZZE5/WwqW8U1w==", + "dev": true, + "dependencies": { + "esbuild": "^0.19.3", + "postcss": "^8.4.32", + "rollup": "^4.2.0" + }, + "bin": { + "vite": "bin/vite.js" + }, + "engines": { + "node": "^18.0.0 || >=20.0.0" + }, + "funding": { + "url": "https://github.com/vitejs/vite?sponsor=1" + }, + "optionalDependencies": { + "fsevents": "~2.3.3" + }, + "peerDependencies": { + "@types/node": "^18.0.0 || >=20.0.0", + "less": "*", + "lightningcss": "^1.21.0", + "sass": "*", + "stylus": "*", + "sugarss": "*", + "terser": "^5.4.0" + }, + "peerDependenciesMeta": { + "@types/node": { + "optional": true + }, + "less": { + "optional": true + }, + "lightningcss": { + "optional": true + }, + "sass": { + "optional": true + }, + "stylus": { + "optional": true + }, + "sugarss": { + "optional": true + }, + "terser": { + "optional": true + } + } + }, + "node_modules/vite-plugin-mock-dev-server": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/vite-plugin-mock-dev-server/-/vite-plugin-mock-dev-server-1.3.4.tgz", + "integrity": "sha512-50biXarRPdKYxR/q9an4vHMh2cbwFlEWHfLJdXg6gpS63CMMrCo9XQWYIkdytZNSEs/5AwykGB5Xo0ORMMttgQ==", + "dev": true, + "dependencies": { + "@pengzhanbo/utils": "^1.0.8", + "chokidar": "^3.5.3", + "co-body": "^6.1.0", + "cookies": "^0.8.0", + "cors": "^2.8.5", + "debug": "^4.3.4", + "esbuild": "^0.19.2", + "fast-glob": "^3.3.1", + "formidable": "2.1.1", + "http-status": "^1.6.2", + "is-core-module": "^2.13.0", + "json5": "^2.2.3", + "mime-types": "^2.1.35", + "path-to-regexp": "^6.2.1", + "picocolors": "^1.0.0", + "ws": "^8.13.0" + }, + "engines": { + "node": "^14.18.0 || >=16" + }, + "peerDependencies": { + "vite": ">=3.0.0" + } + }, + "node_modules/vite-tsconfig-paths": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/vite-tsconfig-paths/-/vite-tsconfig-paths-4.2.1.tgz", + "integrity": "sha512-GNUI6ZgPqT3oervkvzU+qtys83+75N/OuDaQl7HmOqFTb0pjZsuARrRipsyJhJ3enqV8beI1xhGbToR4o78nSQ==", + "dev": true, + "dependencies": { + "debug": "^4.1.1", + "globrex": "^0.1.2", + "tsconfck": "^2.1.0" + }, + "peerDependencies": { + "vite": "*" + }, + "peerDependenciesMeta": { + "vite": { + "optional": true + } + } + }, + "node_modules/walker": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/walker/-/walker-1.0.8.tgz", + "integrity": "sha512-ts/8E8l5b7kY0vlWLewOkDXMmPdLcVV4GmOQLyxuSswIJsweeFZtAsMF7k1Nszz+TYBQrlYRmzOnr398y1JemQ==", + "dev": true, + "dependencies": { + "makeerror": "1.0.12" + } + }, + "node_modules/watchpack": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-2.4.0.tgz", + "integrity": "sha512-Lcvm7MGST/4fup+ifyKi2hjyIAwcdI4HRgtvTpIUxBRhB+RFtUh8XtDOxUfctVCnhVi+QQj49i91OyvzkJl6cg==", + "dev": true, + "peer": true, + "dependencies": { + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.1.2" + }, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/webpack": { + "version": "5.88.2", + "resolved": "https://registry.npmjs.org/webpack/-/webpack-5.88.2.tgz", + "integrity": "sha512-JmcgNZ1iKj+aiR0OvTYtWQqJwq37Pf683dY9bVORwVbUrDhLhdn/PlO2sHsFHPkj7sHNQF3JwaAkp49V+Sq1tQ==", + "dev": true, + "peer": true, + "dependencies": { + "@types/eslint-scope": "^3.7.3", + "@types/estree": "^1.0.0", + "@webassemblyjs/ast": "^1.11.5", + "@webassemblyjs/wasm-edit": "^1.11.5", + "@webassemblyjs/wasm-parser": "^1.11.5", + "acorn": "^8.7.1", + "acorn-import-assertions": "^1.9.0", + "browserslist": "^4.14.5", + "chrome-trace-event": "^1.0.2", + "enhanced-resolve": "^5.15.0", + "es-module-lexer": "^1.2.1", + "eslint-scope": "5.1.1", + "events": "^3.2.0", + "glob-to-regexp": "^0.4.1", + "graceful-fs": "^4.2.9", + "json-parse-even-better-errors": "^2.3.1", + "loader-runner": "^4.2.0", + "mime-types": "^2.1.27", + "neo-async": "^2.6.2", + "schema-utils": "^3.2.0", + "tapable": "^2.1.1", + "terser-webpack-plugin": "^5.3.7", + "watchpack": "^2.4.0", + "webpack-sources": "^3.2.3" + }, + "bin": { + "webpack": "bin/webpack.js" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependenciesMeta": { + "webpack-cli": { + "optional": true + } + } + }, + "node_modules/webpack-sources": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", + "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", + "dev": true, + "peer": true, + "engines": { + "node": ">=10.13.0" + } + }, + "node_modules/which": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz", + "integrity": "sha512-BLI3Tl1TW3Pvl70l3yq3Y64i+awpwXqsGBYWkkqMtnbXgrMD+yj7rhW0kuEDxzJaYXGjEW5ogapKNMEKNMjibA==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" + }, + "engines": { + "node": ">= 8" + } + }, + "node_modules/which-boxed-primitive": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/which-boxed-primitive/-/which-boxed-primitive-1.0.2.tgz", + "integrity": "sha512-bwZdv0AKLpplFY2KZRX6TvyuN7ojjr7lwkg6ml0roIy9YeuSr7JS372qlNW18UQYzgYK9ziGcerWqZOmEn9VNg==", + "dev": true, + "dependencies": { + "is-bigint": "^1.0.1", + "is-boolean-object": "^1.1.0", + "is-number-object": "^1.0.4", + "is-string": "^1.0.5", + "is-symbol": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-builtin-type": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/which-builtin-type/-/which-builtin-type-1.1.3.tgz", + "integrity": "sha512-YmjsSMDBYsM1CaFiayOVT06+KJeXf0o5M/CAd4o1lTadFAtacTUM49zoYxr/oroopFDfhvN6iEcBxUyc3gvKmw==", + "dev": true, + "dependencies": { + "function.prototype.name": "^1.1.5", + "has-tostringtag": "^1.0.0", + "is-async-function": "^2.0.0", + "is-date-object": "^1.0.5", + "is-finalizationregistry": "^1.0.2", + "is-generator-function": "^1.0.10", + "is-regex": "^1.1.4", + "is-weakref": "^1.0.2", + "isarray": "^2.0.5", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-collection": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/which-collection/-/which-collection-1.0.1.tgz", + "integrity": "sha512-W8xeTUwaln8i3K/cY1nGXzdnVZlidBcagyNFtBdD5kxnb4TvGKR7FfSIS3mYpwWS1QUCutfKz8IY8RjftB0+1A==", + "dev": true, + "dependencies": { + "is-map": "^2.0.1", + "is-set": "^2.0.1", + "is-weakmap": "^2.0.1", + "is-weakset": "^2.0.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/which-typed-array": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/which-typed-array/-/which-typed-array-1.1.11.tgz", + "integrity": "sha512-qe9UWWpkeG5yzZ0tNYxDmd7vo58HDBc39mZ0xWWpolAGADdFOzkfamWLDxkOWcvHQKVmdTyQdLD4NOfjLWTKew==", + "dev": true, + "dependencies": { + "available-typed-arrays": "^1.0.5", + "call-bind": "^1.0.2", + "for-each": "^0.3.3", + "gopd": "^1.0.1", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/wide-align": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", + "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", + "dev": true, + "dependencies": { + "string-width": "^1.0.2 || 2 || 3 || 4" + } + }, + "node_modules/wrap-ansi": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/wrap-ansi/node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dev": true, + "dependencies": { + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" + } + }, + "node_modules/wrap-ansi/node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==", + "dev": true + }, + "node_modules/wrappy": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", + "integrity": "sha512-l4Sp/DRseor9wL6EvV2+TuQn63dMkPjZ/sp9XkghTEbV9KlPS1xUsZ3u7/IQO4wxtcFB4bgpQPRcR3QCvezPcQ==", + "dev": true + }, + "node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/ws": { + "version": "8.14.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.14.2.tgz", + "integrity": "sha512-wEBG1ftX4jcglPxgFCMJmZ2PLtSbJ2Peg6TmpJFTbe9GZYOQCDPdMYu/Tm0/bGZkw8paZnJY45J4K2PZrLYq8g==", + "dev": true, + "engines": { + "node": ">=10.0.0" + }, + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } + } + }, + "node_modules/y18n": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/y18n/-/y18n-5.0.8.tgz", + "integrity": "sha512-0pfFzegeDWJHJIAmTLRP2DwHjdF5s7jo9tuztdQxAhINCdvS+3nGINqPd00AphqJR/0LhANUS6/+7SCb98YOfA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/yallist": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-3.1.1.tgz", + "integrity": "sha512-a4UGQaWPH59mOXUYnAG2ewncQS4i4F43Tv3JoAM+s2VDAmS9NsK8GpDMLrCHPksFT7h3K6TOoUNn2pb7RoXx4g==", + "dev": true + }, + "node_modules/yaml": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-1.10.2.tgz", + "integrity": "sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/yargs": { + "version": "17.7.2", + "resolved": "https://registry.npmjs.org/yargs/-/yargs-17.7.2.tgz", + "integrity": "sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==", + "dev": true, + "dependencies": { + "cliui": "^8.0.1", + "escalade": "^3.1.1", + "get-caller-file": "^2.0.5", + "require-directory": "^2.1.1", + "string-width": "^4.2.3", + "y18n": "^5.0.5", + "yargs-parser": "^21.1.1" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/yargs-parser": { + "version": "21.1.1", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-21.1.1.tgz", + "integrity": "sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==", + "dev": true, + "engines": { + "node": ">=12" + } + }, + "node_modules/yocto-queue": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-0.1.0.tgz", + "integrity": "sha512-rVksvsnNCdJ/ohGc6xgPwyN8eheCxsiLM8mxuE/t/mOVqJewPuO1miLpTHQiRgTKCLexL4MeAFVagts7HmNZ2Q==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + } + } +} diff --git a/web/package.json b/web/package.json new file mode 100644 index 000000000..1374ca837 --- /dev/null +++ b/web/package.json @@ -0,0 +1,58 @@ +{ + "name": "sensesp-webui", + "private": true, + "type": "module", + "scripts": { + "dev": "vite", + "build": "vite build", + "css-compile": "sass --style compressed --source-map --embed-sources --no-error-css --load-path=node_modules scss/:css/", + "css-lint": "stylelint scss/", + "css-prefix": "postcss --replace css/styles.css --use autoprefixer --map", + "css": "npm-run-all css-compile css-prefix", + "preview": "vite preview", + "type-check": "tsc --noEmit", + "lint": "eslint --fix --ext .js,.jsx,.ts,.tsx ./src", + "format": "prettier --write ./src", + "purgecss": "node ./node_modules/purgecss/bin/purgecss.js --config ./purgecss.config.js", + "fix": "npm run format && npm run type-check && npm run lint" + }, + "dependencies": { + "bootstrap": "^5.3.2", + "immer": "^10.0.3", + "preact": "^10.13.1", + "preact-render-to-string": "^6.2.1", + "preact-router": "^4.1.2" + }, + "devDependencies": { + "@originjs/vite-plugin-federation": "^1.3.2", + "@preact/preset-vite": "^2.7.0", + "@types/bootstrap": "^5.2.7", + "@typescript-eslint/eslint-plugin": "^6.7.4", + "autoprefixer": "^10.4.14", + "eslint": "^8.51.0", + "eslint-config-preact": "^1.3.0", + "eslint-config-prettier": "^9.0.0", + "eslint-config-standard-with-typescript": "^39.1.1", + "eslint-plugin-import": "^2.28.1", + "eslint-plugin-jest": "^27.4.2", + "eslint-plugin-n": "^16.1.0", + "eslint-plugin-preact": "^0.1.0", + "eslint-plugin-promise": "^6.1.1", + "eslint-plugin-react": "^7.33.2", + "jest": "^29.7.0", + "node-sass": "^9.0.0", + "npm-run-all": "^4.1.5", + "postcss": "^8.4.27", + "postcss-cli": "^10.1.0", + "prettier": "3.0.3", + "prettier-plugin-organize-imports": "^3.2.3", + "purgecss": "^5.0.0", + "rollup-plugin-brotli": "^3.1.0", + "sass": "^1.64.1", + "sass-loader": "^13.3.2", + "typescript": "^5.2.2", + "vite": "^5.0.0", + "vite-plugin-mock-dev-server": "^1.3.4", + "vite-tsconfig-paths": "^4.2.1" + } +} diff --git a/web/public/SensESP_logo_symbol.svg b/web/public/SensESP_logo_symbol.svg new file mode 100644 index 000000000..ad974a07d --- /dev/null +++ b/web/public/SensESP_logo_symbol.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/web/public/logo.svg b/web/public/logo.svg new file mode 100644 index 000000000..ed3e39e9c --- /dev/null +++ b/web/public/logo.svg @@ -0,0 +1,74 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/web/scss/styles.scss b/web/scss/styles.scss new file mode 100644 index 000000000..2dfab9f58 --- /dev/null +++ b/web/scss/styles.scss @@ -0,0 +1,86 @@ +// Override Bootstrap's Sass default variables +// +// Nearly all variables in Bootstrap are written with the `!default` flag. +// This allows you to override the default values of those variables before +// you import Bootstrap's source Sass files. +// +// Overriding the default variable values is the best way to customize your +// CSS without writing _new_ styles. For example, you can either change +// `$body-color` or write more CSS that override's Bootstrap's CSS like so: +// `body { color: red; }`. + + +// +// Bring in Bootstrap +// + +// Option 1 +// +// Import all of Bootstrap's CSS + +//@import "bootstrap/scss/bootstrap"; + +// Option 2 +// +// Place variable overrides first, then import just the styles you need. Note that some stylesheets are required no matter what. + +// Toggle global options +$enable-gradients: true; +$enable-shadows: true; + +$offcanvas-box-shadow: 0 1rem 3rem rgba(0, 0, 0, .175); + +// Include functions first +@import "bootstrap/scss/functions"; + +// Customize some defaults +//$body-color: #333; +//$body-bg: #fff; +//$border-radius: .4rem; +//$success: #7952b3; + +// Required +@import "bootstrap/scss/variables"; +@import "bootstrap/scss/variables-dark"; +@import "bootstrap/scss/maps"; +@import "bootstrap/scss/mixins"; +@import "bootstrap/scss/utilities"; +@import "bootstrap/scss/root"; +@import "bootstrap/scss/reboot"; + +@import "bootstrap/scss/type"; +@import "bootstrap/scss/images"; +@import "bootstrap/scss/containers"; +@import "bootstrap/scss/grid"; +@import "bootstrap/scss/tables"; +@import "bootstrap/scss/forms"; +@import "bootstrap/scss/buttons"; +@import "bootstrap/scss/transitions"; +// @import "bootstrap/scss/dropdown"; +// @import "bootstrap/scss/button-group"; +@import "bootstrap/scss/nav"; +@import "bootstrap/scss/navbar"; // Requires nav +@import "bootstrap/scss/card"; +// @import "bootstrap/scss/breadcrumb"; +// @import "bootstrap/scss/accordion"; +// @import "bootstrap/scss/pagination"; +// @import "bootstrap/scss/badge"; +@import "bootstrap/scss/alert"; +//@import "bootstrap/scss/progress"; +@import "bootstrap/scss/list-group"; +@import "bootstrap/scss/close"; +// @import "bootstrap/scss/toasts"; +@import "bootstrap/scss/modal"; // Requires transitions +// @import "bootstrap/scss/tooltip"; +//@import "bootstrap/scss/popover"; +// @import "bootstrap/scss/carousel"; +@import "bootstrap/scss/spinners"; +//@import "bootstrap/scss/offcanvas"; // Requires transitions +// @import "bootstrap/scss/placeholders"; + +// Helpers +@import "bootstrap/scss/helpers"; + +// Utilities +@import "bootstrap/scss/utilities/api"; + diff --git a/web/src/App.tsx b/web/src/App.tsx new file mode 100644 index 000000000..09ea3756a --- /dev/null +++ b/web/src/App.tsx @@ -0,0 +1,135 @@ +import NavPathContext from "common/NavPathContext"; +import { Header } from "components/Header"; +import { ConfigurationPage } from "pages/Configuration"; +import { SignalKPage } from "pages/SignalK"; +import { StatusPage } from "pages/Status"; +import { SystemPage } from "pages/System"; +import { WiFiConfigPage } from "pages/WiFi"; +import { JSX } from "preact"; +import { Route, Router, RouterOnChangeArgs, route } from "preact-router"; +import { useEffect, useState } from "preact/hooks"; +import { + __federation_method_getRemote, + __federation_method_setRemote, + __federation_method_unwrapDefault, +} from "virtual:__federation__"; + +export interface RouteInstruction { + name: string; + path: string; + componentName: string; + loadPath?: string; + component?: () => JSX.Element; +} + +type KnownComponents = { + [key: string]: () => JSX.Element; +}; + +const KNOWN_COMPONENTS: KnownComponents = { + StatusPage, + SystemPage, + WiFiConfigPage, + SignalKPage, + ConfigurationPage, +}; + +interface RedirectProps { + path: string; + to: string; +} + +function Redirect({ path, to }: RedirectProps): JSX.Element { + useEffect(() => { + route(to); + // Also update the browser URL + window.history.pushState({}, "", to); + }, []); + + return <>; +} + +export function App(): JSX.Element { + const [routes, setRoutes] = useState([]); + const [navPath, setNavPath] = useState("/"); + + useEffect(() => { + // Fetch routes from the backend API + void (async () => { + const res = await fetch("/api/routes"); + const data = await res.json(); + setRoutes(data); + + let populatedRoutes: RouteInstruction[] = []; + for (const route of data) { + if (route.loadPath) { + const remoteInfo = { + url: () => Promise.resolve(route.loadPath), + format: "esm", + from: "vite", + }; + + __federation_method_setRemote(route.componentName, remoteInfo); + const module = await __federation_method_getRemote( + route.componentName, + "./SensESPPlugin", + ); + const unwrapped = await __federation_method_unwrapDefault(module); + populatedRoutes.push({ ...route, component: unwrapped }); + } else if (route.componentName in KNOWN_COMPONENTS) { + populatedRoutes.push({ + ...route, + component: KNOWN_COMPONENTS[route.componentName], + }); + } else { + // We don't know about this component - throw an error + throw new Error(`Unknown component: ${route.componentName}`); + } + } + + setRoutes(populatedRoutes); + })(); + }, []); + + const [routeComponents, setRouteComponents] = useState([]); + + useEffect(() => { + // Always add a redirection from root to the first route + const newRouteComponents: JSX.Element[] = [ + , + ]; + routes.forEach((route) => { + if (route.component) { + newRouteComponents.push( + , + ); + } + }); + setRouteComponents(newRouteComponents); + }, [routes]); + + async function handleRouteChange(e: RouterOnChangeArgs): Promise { + setNavPath(e.url); + } + + if (routes.length === 0) { + return ( +
        +
        + Loading... +
        +
        + ); + } + + return ( + <> + +
        + + {routes.length === 0 ? null : ( + {routeComponents} + )} + + ); +} diff --git a/web/src/assets/preact.svg b/web/src/assets/preact.svg new file mode 100644 index 000000000..908f17def --- /dev/null +++ b/web/src/assets/preact.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/web/src/common/InputDirtyContext.ts b/web/src/common/InputDirtyContext.ts new file mode 100644 index 000000000..bad5a37a4 --- /dev/null +++ b/web/src/common/InputDirtyContext.ts @@ -0,0 +1,11 @@ +import { createContext } from "preact"; + +export interface InputDirtyContextType { + isInputDirty: boolean; + setInputDirty: (value: boolean) => void; +} + +export const InputDirtyContext = createContext({ + isInputDirty: false, + setInputDirty: (v) => {}, +}); diff --git a/web/src/common/NavPathContext.ts b/web/src/common/NavPathContext.ts new file mode 100644 index 000000000..74387a68e --- /dev/null +++ b/web/src/common/NavPathContext.ts @@ -0,0 +1,5 @@ +import { createContext } from "preact"; + +const NavPathContext = createContext(""); + +export default NavPathContext; diff --git a/web/src/common/configAPIClient.ts b/web/src/common/configAPIClient.ts new file mode 100644 index 000000000..cb19454c4 --- /dev/null +++ b/web/src/common/configAPIClient.ts @@ -0,0 +1,69 @@ +import { APP_CONFIG } from "config"; +import { type JsonObject } from "./jsonTypes"; + +/** + * Represents the configuration data. + */ +export interface ConfigData { + /** + * The configuration data. + */ + config: JsonObject; + /** + * The schema of the configuration data. + */ + schema: JsonObject; + /** + * The description of the configuration data. + */ + description: string; +} + +/** + * Fetches the configuration data from the server. + * @param path - The path of the configuration data. + * @returns A promise that resolves to the configuration data. + * @throws An error if there is an issue fetching the configuration data. + */ +export async function fetchConfigData(path: string): Promise { + try { + const response = await fetch(APP_CONFIG.config_path + path); + if (!response.ok) { + throw new Error(`HTTP Error ${response.status} ${response.statusText}`); + } + return await response.json(); + } catch (e) { + throw new Error("Error getting config data from the device."); + } +} + +/** + * Saves the configuration data to the server. + * @param path - The path of the configuration data. + * @param string - The configuration data to be saved. + * @throws An error if there is an issue saving the configuration data. + */ +export async function saveConfigData( + path: string, + data: string, + errorHandler: (e: Error) => void, + contentType: string = "application/json", +): Promise { + try { + const response = await fetch(APP_CONFIG.config_path + path, { + method: "PUT", + headers: { + "Content-Type": contentType, + }, + body: data, + }); + if (!response.ok) { + errorHandler(Error(`HTTP Error ${response.status} ${response.statusText}`)); + return false; + } + } catch (e) { + errorHandler(Error(`Error saving config data to server: ${e.message}`)); + return false; + } + return true; +} diff --git a/web/src/common/jsonTypes.ts b/web/src/common/jsonTypes.ts new file mode 100644 index 000000000..8176b6d3f --- /dev/null +++ b/web/src/common/jsonTypes.ts @@ -0,0 +1,11 @@ +export type JsonValue = + | string + | number + | boolean + | null + | JsonArray + | JsonObject; + +export interface JsonArray extends Array {} + +export interface JsonObject extends Record {} diff --git a/web/src/components/Card.tsx b/web/src/components/Card.tsx new file mode 100644 index 000000000..4a3299e56 --- /dev/null +++ b/web/src/components/Card.tsx @@ -0,0 +1,134 @@ +import { type JSX } from "preact"; +import { useId, type ReactNode } from "preact/compat"; +import { Collapse } from "./Collapse"; + +interface CardProps { + title: string; + children: ReactNode; +} + +export function Card({ title, children }: CardProps): JSX.Element { + return ( +
        +
        {title}
        +
        {children}
        +
        + ); +} + +interface ButtonCardProps { + title: string; + buttonText: string; + buttonVariant?: string; + isButtonEnabled: boolean; + onClick: () => void; + children: ReactNode; +} + +export function ButtonCard({ + title, + buttonText, + buttonVariant = "primary", + isButtonEnabled, + onClick, + children, +}: ButtonCardProps): JSX.Element { + return ( + + {children} + + + ); +} + +interface ButtonTitleProps { + title: string; + description?: string; +} + +export function ButtonTitle({ + title, + description, +}: ButtonTitleProps): JSX.Element { + return ( + <> + {title} + {description != null && ( + <> +
        {description} + + )} + + ); +} + +interface CollapseCardProps { + id: string; + title: string | JSX.Element; + children: ReactNode; + expanded: boolean; + setExpanded: (expanded: boolean) => void; +} + +/** + * Render a collapsible card component that can be triggered to show or hide its content. + * + * The collapse behavior is controlled by a checkbox in the card header. + */ + +export function CollapseCard({ + id, + title, + children, + expanded, + setExpanded, +}: CollapseCardProps): JSX.Element { + return ( +
        +
        +
        +
        +
        {title}
        +
        +
        + +
        +
        +
        + +
        {children}
        +
        +
        + ); +} + +interface CheckToggleProps { + expanded: boolean; + setExpanded: (expanded: boolean) => void; +} + +function CheckToggle({ expanded, setExpanded }: CheckToggleProps): JSX.Element { + const id = useId(); + + return ( +
        + { + setExpanded(!expanded); + }} + /> +
        + ); +} diff --git a/web/src/components/Collapse.tsx b/web/src/components/Collapse.tsx new file mode 100644 index 000000000..8b8d81d57 --- /dev/null +++ b/web/src/components/Collapse.tsx @@ -0,0 +1,34 @@ +import BSCollapse from "bootstrap/js/dist/collapse"; +import { type JSX } from "preact"; +import { useEffect } from "preact/hooks"; + +interface ReCollapseProps { + id: string; + children: React.ReactNode; + expanded: boolean; +} + +/** + * Renders a collapsible component that can be triggered to show or hide its content. + * @param {string} id - The id of the collapsible component. + * @param {React.ReactNode} children - The content to be displayed inside the collapsible component. + * @param {boolean} expanded - Determines whether the collapsible component should be collapsed or expanded. + * @returns {JSX.Element} - The collapsible component. + */ +export function Collapse({ + id, + children, + expanded, +}: ReCollapseProps): JSX.Element { + useEffect(() => { + const collapseEl = document.getElementById(id) ?? ""; + const bsCollapse = new BSCollapse(collapseEl, { toggle: false }); + expanded ? bsCollapse.show() : bsCollapse.hide(); + }); + + return ( +
        + {children} +
        + ); +} diff --git a/web/src/components/DataLoader.tsx b/web/src/components/DataLoader.tsx new file mode 100644 index 000000000..93461da0b --- /dev/null +++ b/web/src/components/DataLoader.tsx @@ -0,0 +1,7 @@ + +import { createContext } from "preact"; +import { useContext } from "preact/hooks"; +import { useSignal, useComputed } from "@preact/signals"; + +const InfoContext = createContext({}); + diff --git a/web/src/components/Form.tsx b/web/src/components/Form.tsx new file mode 100644 index 000000000..3fa8157d5 --- /dev/null +++ b/web/src/components/Form.tsx @@ -0,0 +1,127 @@ +import { + InputDirtyContext, + InputDirtyContextType, +} from "common/InputDirtyContext"; +import { type JSX } from "preact"; +import { useContext } from "preact/hooks"; + +interface FormInputProps { + id: string; + label: string; + type?: string; + as?: string; + placeholder?: string; + readOnly?: boolean; + value?: string | number; + step?: number; + disabled?: boolean; + checked?: boolean; + onInput?: (e: JSX.TargetedEvent) => void; +} + +export function FormInput(props: FormInputProps): JSX.Element { + + return ( +
        + + + {props.as === "textarea" ? ( +