From 38a545af9279442337f047528304dc73d0421d99 Mon Sep 17 00:00:00 2001 From: Henrik Date: Thu, 26 Jan 2023 16:11:54 +0100 Subject: [PATCH 01/14] Fix regen on out format change --- wled00/data/pixart/pixart.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wled00/data/pixart/pixart.js b/wled00/data/pixart/pixart.js index a1c67aa9..7c347f19 100644 --- a/wled00/data/pixart/pixart.js +++ b/wled00/data/pixart/pixart.js @@ -69,7 +69,6 @@ cjb.addEventListener('click', async () => { lSS.addEventListener("change", gen); szY.addEventListener("change", gen); szX.addEventListener("change", gen); -//frm.addEventListener("change", gen); cFS.addEventListener("change", gen); aS.addEventListener("change", gen); brgh.addEventListener("change", gen); @@ -115,6 +114,7 @@ cLN.oninput = () => { frm.addEventListener("change", () => { for (var i = 0; i < hideableRows.length; i++) { hideableRows[i].classList.toggle("hide", frm.value !== "ha"); + gen(); } }); From 4cd026dfe9d21a35a0fec2f9e958761f7289d562 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Tue, 21 Mar 2023 17:28:04 +0100 Subject: [PATCH 02/14] ESP8266 core 4.1.0, ESP32 core 5.2.0 (S2,S3,C3) NeoPixelBus 2.7.3 (adding UCS890x support) --- platformio.ini | 41 +++++++++++++++++++++++++---------------- wled00/wled.h | 2 +- 2 files changed, 26 insertions(+), 17 deletions(-) diff --git a/platformio.ini b/platformio.ini index 22d0bbc0..e316c3aa 100644 --- a/platformio.ini +++ b/platformio.ini @@ -55,18 +55,20 @@ arduino_core_2_6_3 = espressif8266@2.3.3 arduino_core_2_7_4 = espressif8266@2.6.2 arduino_core_3_0_0 = espressif8266@3.0.0 arduino_core_3_2_0 = espressif8266@3.2.0 +arduino_core_4_1_0 = espressif8266@4.1.0 # Development platforms arduino_core_develop = https://github.com/platformio/platform-espressif8266#develop arduino_core_git = https://github.com/platformio/platform-espressif8266#feature/stage # Platform to use for ESP8266 -platform_wled_default = ${common.arduino_core_3_2_0} +platform_wled_default = ${common.arduino_core_4_1_0} # We use 2.7.4.7 for all, includes PWM flicker fix and Wstring optimization -platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7 - platformio/toolchain-xtensa @ ~2.40802.200502 - platformio/tool-esptool @ ~1.413.0 - platformio/tool-esptoolpy @ ~1.30000.0 +#platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7 +platform_packages = platformio/framework-arduinoespressif8266 + platformio/toolchain-xtensa #@ ~2.40802.200502 + platformio/tool-esptool #@ ~1.413.0 + platformio/tool-esptoolpy #@ ~1.30000.0 # ------------------------------------------------------------------------------ # FLAGS: DEBUG @@ -111,7 +113,7 @@ build_flags = -D DECODE_SONY=true -D DECODE_SAMSUNG=true -D DECODE_LG=true - ; -Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library + -Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library -DWLED_USE_MY_CONFIG ; -D USERMOD_SENSORSTOMQTT #For ADS1115 sensor uncomment following @@ -183,7 +185,7 @@ build_flags = -DFP_IN_IROM ;-Wno-deprecated-declarations ;-Wno-register - ;-Wno-misleading-indentation + -Wno-misleading-indentation ; NONOSDK22x_190703 = 2.2.2-dev(38a443e) -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703 ; lwIP 2 - Higher Bandwidth no Features @@ -200,7 +202,7 @@ lib_deps = #https://github.com/lorol/LITTLEFS.git ESPAsyncTCP @ 1.2.2 ESPAsyncUDP - makuna/NeoPixelBus @ 2.6.9 + makuna/NeoPixelBus @ 2.7.3 [esp32] #platform = https://github.com/tasmota/platform-espressif32/releases/download/v2.0.2.3/platform-espressif32-2.0.2.3.zip @@ -225,6 +227,8 @@ lib_deps = https://github.com/pbolduc/AsyncTCP.git @ 1.2.0 [esp32s2] +;; generic definitions for all ESP32-S2 boards +platform = espressif32@5.2.0 build_flags = -g -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32S2 @@ -237,10 +241,12 @@ build_flags = -g lib_deps = ${env.lib_deps} - makuna/NeoPixelBus @ 2.6.9 + makuna/NeoPixelBus @ 2.7.3 https://github.com/pbolduc/AsyncTCP.git @ 1.2.0 [esp32c3] +;; generic definitions for all ESP32-C3 boards +platform = espressif32@5.2.0 build_flags = -g -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32C3 @@ -253,11 +259,12 @@ build_flags = -g lib_deps = ${env.lib_deps} - makuna/NeoPixelBus @ 2.6.9 + makuna/NeoPixelBus @ 2.7.3 https://github.com/pbolduc/AsyncTCP.git @ 1.2.0 [esp32s3] ;; generic definitions for all ESP32-S3 boards +platform = espressif32@5.2.0 build_flags = -g -DESP32 -DARDUINO_ARCH_ESP32 @@ -271,7 +278,7 @@ build_flags = -g lib_deps = ${env.lib_deps} ;; NeoPixelBus 2.7.1 is the first that has official support for ESP32-S3 - makuna/NeoPixelBus @ ~2.7.1 + makuna/NeoPixelBus @ ~2.7.3 https://github.com/pbolduc/AsyncTCP.git @ 1.2.0 @@ -390,7 +397,7 @@ build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME lib_deps = ${esp32s2.lib_deps} [env:esp32c3] -platform = espressif32@5.1.1 ;; well-tested on -C3, good compatibility with WLED +platform = {esp32c3.platform} ; platform = espressif32@~5.2.0 ;; might help in case you experience bootloops due to corrupted flash filesystem framework = arduino board = esp32-c3-devkitm-1 @@ -405,7 +412,7 @@ lib_deps = ${esp32c3.lib_deps} [env:esp32s3dev_8MB] ;; ESP32-S3-DevKitC-1 development board, with 8MB FLASH, no PSRAM (flash_mode: qio) board = esp32-s3-devkitc-1 -platform = espressif32@5.1.1 +platform = {esp32s3.platform} platform_packages = upload_speed = 921600 ; or 460800 build_unflags = ${common.build_unflags} @@ -426,7 +433,7 @@ monitor_filters = esp32_exception_decoder ;board = um_tinys3 ; -> needs workaround from https://github.com/Aircoookie/WLED/pull/2905#issuecomment-1328049860 ;board = esp32s3box ; -> error: 'esp32_adc2gpio' was not declared in this scope board = esp32-s3-devkitc-1 ; -> compiles, but does not support PSRAM -platform = espressif32 @ ~5.2.0 +platform = {esp32s3.platform} platform_packages = upload_speed = 921600 build_unflags = ${common.build_unflags} @@ -504,13 +511,15 @@ build_flags = ${common.build_flags_esp8266} -D LEDPIN=12 -D IRPIN=-1 -D RLYPIN=2 lib_deps = ${esp8266.lib_deps} [env:lolin_s2_mini] -platform = espressif32@5.1.1 +platform = {esp32s2.platform} board = lolin_s2_mini board_build.partitions = tools/WLED_ESP32_4MB_1MB_FS.csv build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=LolinS2 -DBOARD_HAS_PSRAM - -D ARDUINO_USB_CDC_ON_BOOT + -DARDUINO_USB_CDC_ON_BOOT=0 + -DARDUINO_USB_MSC_ON_BOOT=0 + -DARDUINO_USB_DFU_ON_BOOT=0 -D WLED_USE_PSRAM -D WLED_WATCHDOG_TIMEOUT=0 -D CONFIG_ASYNC_TCP_USE_WDT=0 diff --git a/wled00/wled.h b/wled00/wled.h index 509e04f2..942df671 100644 --- a/wled00/wled.h +++ b/wled00/wled.h @@ -8,7 +8,7 @@ */ // version code in format yymmddb (b = daily build) -#define VERSION 2303160 +#define VERSION 2303190 //uncomment this if you have a "my_config.h" file you'd like to use //#define WLED_USE_MY_CONFIG From 0cc719a82385da6a5a15910006e093799ba3e48a Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Tue, 21 Mar 2023 20:01:16 +0100 Subject: [PATCH 03/14] Remove "register" override --- platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio.ini b/platformio.ini index e316c3aa..275b8d5e 100644 --- a/platformio.ini +++ b/platformio.ini @@ -113,7 +113,7 @@ build_flags = -D DECODE_SONY=true -D DECODE_SAMSUNG=true -D DECODE_LG=true - -Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library + ;-Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library -DWLED_USE_MY_CONFIG ; -D USERMOD_SENSORSTOMQTT #For ADS1115 sensor uncomment following From 9b90ff10f46ae33988397f1d1ccc6fcbb97f12ed Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 21 Mar 2023 23:15:08 +0100 Subject: [PATCH 04/14] buildenv improvements for -S3/-S2/-C3 - corrected some broken references - added `platform_package =` --> use default packages - renamed env:esp32c3 to env:esp32c3dev to avoid confusion - added lolin_s2_mini to CI builds --- platformio.ini | 37 ++++++++++++++++++++++--------------- 1 file changed, 22 insertions(+), 15 deletions(-) diff --git a/platformio.ini b/platformio.ini index 275b8d5e..7d4a2661 100644 --- a/platformio.ini +++ b/platformio.ini @@ -10,7 +10,7 @@ # ------------------------------------------------------------------------------ # Release / CI binaries -default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth, esp32s2_saola, esp32c3, esp32s3dev_8MB +default_envs = nodemcuv2, esp8266_2m, esp01_1m_full, esp32dev, esp32_eth, esp32s2_saola, lolin_s2_mini, esp32c3dev, esp32s3dev_8MB # Build everything ; default_envs = esp32dev, esp8285_4CH_MagicHome, codm-controller-0.6-rev2, codm-controller-0.6, esp32s2_saola, d1_mini_5CH_Shojo_PCB, d1_mini, sp501e, nodemcuv2, esp32_eth, anavi_miracle_controller, esp07, esp01_1m_full, m5atom, h803wf, d1_mini_ota, heltec_wifi_kit_8, esp8285_H801, d1_mini_debug, wemos_shield_esp32, elekstube_ips @@ -113,7 +113,7 @@ build_flags = -D DECODE_SONY=true -D DECODE_SAMSUNG=true -D DECODE_LG=true - ;-Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library + ;-Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library ;; warning: this breaks framework code on ESP32-C3 and ESP32-S2 -DWLED_USE_MY_CONFIG ; -D USERMOD_SENSORSTOMQTT #For ADS1115 sensor uncomment following @@ -214,7 +214,7 @@ build_flags = -g -DARDUINO_ARCH_ESP32 #-DCONFIG_LITTLEFS_FOR_IDF_3_2 -D CONFIG_ASYNC_TCP_USE_WDT=0 -#use LITTLEFS library by lorol in ESP32 core 1.x.x instead of built-in in 2.x.x + #use LITTLEFS library by lorol in ESP32 core 1.x.x instead of built-in in 2.x.x -D LOROL_LITTLEFS ; -DARDUINO_USB_CDC_ON_BOOT=0 ;; this flag is mandatory for "classic ESP32" when builing with arduino-esp32 >=2.0.3 @@ -229,10 +229,11 @@ lib_deps = [esp32s2] ;; generic definitions for all ESP32-S2 boards platform = espressif32@5.2.0 +platform_packages = build_flags = -g -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32S2 - -DCONFIG_IDF_TARGET_ESP32S2 + -DCONFIG_IDF_TARGET_ESP32S2=1 -D CONFIG_ASYNC_TCP_USE_WDT=0 -DCO -DARDUINO_USB_MODE=0 ;; this flag is mandatory for ESP32-S2 ! @@ -247,10 +248,11 @@ lib_deps = [esp32c3] ;; generic definitions for all ESP32-C3 boards platform = espressif32@5.2.0 +platform_packages = build_flags = -g -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32C3 - -DCONFIG_IDF_TARGET_ESP32C3 + -DCONFIG_IDF_TARGET_ESP32C3=1 -D CONFIG_ASYNC_TCP_USE_WDT=0 -DCO -DARDUINO_USB_MODE=1 ;; this flag is mandatory for ESP32-C3 @@ -265,11 +267,12 @@ lib_deps = [esp32s3] ;; generic definitions for all ESP32-S3 boards platform = espressif32@5.2.0 +platform_packages = build_flags = -g -DESP32 -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32S3 - -DCONFIG_IDF_TARGET_ESP32S3 + -DCONFIG_IDF_TARGET_ESP32S3=1 -D CONFIG_ASYNC_TCP_USE_WDT=0 -DCO ;; please make sure that the following flags are properly set (to 0 or 1) by your board.json, or included in your custom platformio_override.ini entry: @@ -396,15 +399,18 @@ build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=S2_saola lib_deps = ${esp32s2.lib_deps} -[env:esp32c3] -platform = {esp32c3.platform} +[env:esp32c3dev] +extends = esp32c3 +platform = ${esp32c3.platform} +platform_packages = ${esp32c3.platform_packages} ; platform = espressif32@~5.2.0 ;; might help in case you experience bootloops due to corrupted flash filesystem framework = arduino board = esp32-c3-devkitm-1 board_build.partitions = tools/WLED_ESP32_4MB_1MB_FS.csv build_flags = ${common.build_flags} ${esp32c3.build_flags} #-D WLED_RELEASE_NAME=ESP32-C3 -D WLED_WATCHDOG_TIMEOUT=0 - ; -DARDUINO_USB_CDC_ON_BOOT=1 ;; for virtual USB + ; -DARDUINO_USB_CDC_ON_BOOT=1 ;; for virtual CDC USB + -DARDUINO_USB_CDC_ON_BOOT=0 ;; for serial-to-USB chip upload_speed = 460800 build_unflags = ${common.build_unflags} lib_deps = ${esp32c3.lib_deps} @@ -412,8 +418,8 @@ lib_deps = ${esp32c3.lib_deps} [env:esp32s3dev_8MB] ;; ESP32-S3-DevKitC-1 development board, with 8MB FLASH, no PSRAM (flash_mode: qio) board = esp32-s3-devkitc-1 -platform = {esp32s3.platform} -platform_packages = +platform = ${esp32s3.platform} +platform_packages = ${esp32s3.platform_packages} upload_speed = 921600 ; or 460800 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s3.build_flags} @@ -433,8 +439,8 @@ monitor_filters = esp32_exception_decoder ;board = um_tinys3 ; -> needs workaround from https://github.com/Aircoookie/WLED/pull/2905#issuecomment-1328049860 ;board = esp32s3box ; -> error: 'esp32_adc2gpio' was not declared in this scope board = esp32-s3-devkitc-1 ; -> compiles, but does not support PSRAM -platform = {esp32s3.platform} -platform_packages = +platform = ${esp32s3.platform} +platform_packages = ${esp32s3.platform_packages} upload_speed = 921600 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s3.build_flags} @@ -511,10 +517,11 @@ build_flags = ${common.build_flags_esp8266} -D LEDPIN=12 -D IRPIN=-1 -D RLYPIN=2 lib_deps = ${esp8266.lib_deps} [env:lolin_s2_mini] -platform = {esp32s2.platform} +platform = ${esp32s2.platform} +platform_packages = ${esp32s2.platform_packages} board = lolin_s2_mini board_build.partitions = tools/WLED_ESP32_4MB_1MB_FS.csv -build_unflags = ${common.build_unflags} +build_unflags = ${common.build_unflags} -DARDUINO_USB_CDC_ON_BOOT=1 build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=LolinS2 -DBOARD_HAS_PSRAM -DARDUINO_USB_CDC_ON_BOOT=0 From bf789ca97bb7e6fdbee1a3efcfb09549ddcf9b3a Mon Sep 17 00:00:00 2001 From: Frank Date: Tue, 21 Mar 2023 23:36:50 +0100 Subject: [PATCH 05/14] minor cleanup --- platformio.ini | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/platformio.ini b/platformio.ini index 7d4a2661..60ec90b8 100644 --- a/platformio.ini +++ b/platformio.ini @@ -397,13 +397,13 @@ board_build.flash_mode = qio upload_speed = 460800 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=S2_saola + -DARDUINO_USB_CDC_ON_BOOT=1 -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=0 lib_deps = ${esp32s2.lib_deps} [env:esp32c3dev] extends = esp32c3 platform = ${esp32c3.platform} platform_packages = ${esp32c3.platform_packages} -; platform = espressif32@~5.2.0 ;; might help in case you experience bootloops due to corrupted flash filesystem framework = arduino board = esp32-c3-devkitm-1 board_build.partitions = tools/WLED_ESP32_4MB_1MB_FS.csv @@ -424,7 +424,7 @@ upload_speed = 921600 ; or 460800 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s3.build_flags} -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0 - -D ARDUINO_USB_CDC_ON_BOOT=0 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip + -D ARDUINO_USB_CDC_ON_BOOT=0 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip ;-D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") ;-D WLED_DEBUG lib_deps = ${esp32s3.lib_deps} @@ -445,7 +445,8 @@ upload_speed = 921600 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s3.build_flags} -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0 - -D ARDUINO_USB_MODE=1 -D ARDUINO_USB_MSC_ON_BOOT=0 ; -D ARDUINO_USB_CDC_ON_BOOT=0 + ;-D ARDUINO_USB_CDC_ON_BOOT=0 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip + -D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") ; -D WLED_RELEASE_NAME=ESP32-S3_PSRAM -D WLED_USE_PSRAM -DBOARD_HAS_PSRAM ; tells WLED that PSRAM shall be used lib_deps = ${esp32s3.lib_deps} From 646cf44b839d2224e7908c22c6fdb0d406614a35 Mon Sep 17 00:00:00 2001 From: Frank Date: Wed, 22 Mar 2023 00:06:25 +0100 Subject: [PATCH 06/14] moved register override into 8266 section, so it cannot destroy builds for ESP32 devices --- platformio.ini | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/platformio.ini b/platformio.ini index 60ec90b8..c684b57c 100644 --- a/platformio.ini +++ b/platformio.ini @@ -184,7 +184,8 @@ build_flags = -DESP8266 -DFP_IN_IROM ;-Wno-deprecated-declarations - ;-Wno-register + -Wno-register ;; leaves some warnings when compiling C files: command-line option '-Wno-register' is valid for C++/ObjC++ but not for C + ;-Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library ;; warning: this can be dangerous -Wno-misleading-indentation ; NONOSDK22x_190703 = 2.2.2-dev(38a443e) -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703 From 890aa6f9ac99430552758d9c15e308aea5ba0151 Mon Sep 17 00:00:00 2001 From: Frank Date: Wed, 22 Mar 2023 00:46:27 +0100 Subject: [PATCH 07/14] experimental esp32 buildenv with platform = espressif32@5.2.0 experimental ESP32 buildenv using ESP-IDF V4.4.x / arduino-esp32 v2.0.5 Warning: this build environment is not stable!! --- platformio.ini | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) diff --git a/platformio.ini b/platformio.ini index c684b57c..7dbbfd12 100644 --- a/platformio.ini +++ b/platformio.ini @@ -227,6 +227,26 @@ lib_deps = makuna/NeoPixelBus @ 2.6.9 https://github.com/pbolduc/AsyncTCP.git @ 1.2.0 + +[esp32_idf_V4] +;; experimental buildenv for ESP32 using ESP-IDF 4.4.x / arduino-esp32 v2.0.5 +;; very similar to the normal ESP32 flags, but omitting Lorol LittleFS, as littlefs is included in the new framework already. +;; +;; please note that you can NOT update existing ESP32 installs with a "V4" build. Also updating by OTA will not work properly. +;; You need to completely erasse your device (esptool erase_flash) first, then install the "V4" build from VSCode+platformio. +platform = espressif32@5.2.0 +platform_packages = +build_flags = -g + -DARDUINO_ARCH_ESP32 -DESP32 + #-DCONFIG_LITTLEFS_FOR_IDF_3_2 + -D CONFIG_ASYNC_TCP_USE_WDT=0 + -DARDUINO_USB_CDC_ON_BOOT=0 ;; this flag is mandatory for "classic ESP32" when builing with arduino-esp32 >=2.0.3 +default_partitions = tools/WLED_ESP32_4MB_1MB_FS.csv +lib_deps = + ${env.lib_deps} + makuna/NeoPixelBus @ 2.7.3 + https://github.com/pbolduc/AsyncTCP.git @ 1.2.0 + [esp32s2] ;; generic definitions for all ESP32-S2 boards platform = espressif32@5.2.0 @@ -378,6 +398,21 @@ board_build.partitions = ${esp32.default_partitions} board_build.f_flash = 80000000L board_build.flash_mode = qio +[env:esp32dev_V4_qio80] +;; experimental ESP32 env using ESP-IDF V4.4.x +;; Warning: this build environment is not stable!! +;; please erase your device before installing. +board = esp32dev +platform = ${esp32_idf_V4.platform} +platform_packages = ${esp32_idf_V4.platform_packages} +build_unflags = ${common.build_unflags} +build_flags = ${common.build_flags} ${esp32_idf_V4.build_flags} -D WLED_RELEASE_NAME=ESP32_V4_qio80 #-D WLED_DISABLE_BROWNOUT_DET +lib_deps = ${esp32_idf_V4.lib_deps} +monitor_filters = esp32_exception_decoder +board_build.partitions = ${esp32_idf_V4.default_partitions} +board_build.f_flash = 80000000L +board_build.flash_mode = dio + [env:esp32_eth] board = esp32-poe platform = ${esp32.platform} From 9e8ff27a7fb5d5d14816238f9191cd38f9c09306 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Mon, 27 Mar 2023 15:49:02 +0200 Subject: [PATCH 08/14] Change log update --- CHANGELOG.md | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index aaf02f12..69129061 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,27 @@ ## WLED changelog +#### Build 2303240 +- Peek scaling of large 2D matrices +- Added 0D (1 pixel) metadata for effects & enhance 0D (analog strip) UI handling +- Added ability to disable ADAlight (-D WLED_DISABLE_ADALIGHT) +- Fixed APA102 output on Ethernet enabled controllers +- Added ArtNet virtual/network output (#3121) +- Klipper usermod (#3106) +- Remove DST from CST timezone +- various fixes and enhancements + #### Build 2302180 - Removed Blynk support (servers shut down on 31st Dec 2022) +- Added `ledgap.json` to complement ledmaps for 2D matrices +- Added support for white addressable strips (#3073) +- Ability to use SHT temperature usermod with PWM fan usermod +- Added `onStateChange()` callback to usermods (#3081) +- Refactored `bus_manager` [internal] +- Dual 1D & 2D mode (add 1D strip after the matrix) +- Removed 1D -> 2D mapping for individual pixel control +- effect tweak: Fireworks 1D +- various bugfixes #### Build 2301240 From 3968a8e0dc0617953686ceb5287c719bad912173 Mon Sep 17 00:00:00 2001 From: Christian Schwinne Date: Tue, 28 Mar 2023 23:19:00 +0200 Subject: [PATCH 09/14] Attempt fixing GitHub actions ESP8266 build (#3151) (explicit toolchain version) --- platformio.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/platformio.ini b/platformio.ini index 7dbbfd12..46169b9e 100644 --- a/platformio.ini +++ b/platformio.ini @@ -66,7 +66,7 @@ platform_wled_default = ${common.arduino_core_4_1_0} # We use 2.7.4.7 for all, includes PWM flicker fix and Wstring optimization #platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7 platform_packages = platformio/framework-arduinoespressif8266 - platformio/toolchain-xtensa #@ ~2.40802.200502 + platformio/toolchain-xtensa @ ~2.100300.220621 #2.40802.200502 platformio/tool-esptool #@ ~1.413.0 platformio/tool-esptoolpy #@ ~1.30000.0 From a7a6f4cec6b738a297303ae3fc3f479f225fe8dd Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 30 Mar 2023 00:03:04 +0200 Subject: [PATCH 10/14] small re-organization of build flags * -Wno-attributes added to common flags * USB_MSC and USB_DFU flags moved to common board sections (does not make sense with WLED to ernable these) --- platformio.ini | 20 +++++++++++--------- 1 file changed, 11 insertions(+), 9 deletions(-) diff --git a/platformio.ini b/platformio.ini index 46169b9e..6b7a3d01 100644 --- a/platformio.ini +++ b/platformio.ini @@ -106,6 +106,7 @@ build_flags = -DBEARSSL_SSL_BASIC -D CORE_DEBUG_LEVEL=0 -D NDEBUG + -Wno-attributes ;; silence warnings about unknown attribute 'maybe_unused' in NeopixelBus #build_flags for the IRremoteESP8266 library (enabled decoders have to appear here) -D _IR_ENABLE_DEFAULT_=false -D DECODE_HASH=true @@ -123,6 +124,7 @@ build_unflags = build_flags_esp8266 = ${common.build_flags} ${esp8266.build_flags} build_flags_esp32 = ${common.build_flags} ${esp32.build_flags} +build_flags_esp32_V4= ${common.build_flags} ${esp32_idf_V4.build_flags} ldscript_1m128k = eagle.flash.1m128.ld ldscript_2m512k = eagle.flash.2m512.ld @@ -256,10 +258,11 @@ build_flags = -g -DARDUINO_ARCH_ESP32S2 -DCONFIG_IDF_TARGET_ESP32S2=1 -D CONFIG_ASYNC_TCP_USE_WDT=0 + -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=0 -DCO -DARDUINO_USB_MODE=0 ;; this flag is mandatory for ESP32-S2 ! ;; please make sure that the following flags are properly set (to 0 or 1) by your board.json, or included in your custom platformio_override.ini entry: - ;; ARDUINO_USB_CDC_ON_BOOT, ARDUINO_USB_MSC_ON_BOOT, ARDUINO_USB_DFU_ON_BOOT + ;; ARDUINO_USB_CDC_ON_BOOT lib_deps = ${env.lib_deps} @@ -295,9 +298,10 @@ build_flags = -g -DARDUINO_ARCH_ESP32S3 -DCONFIG_IDF_TARGET_ESP32S3=1 -D CONFIG_ASYNC_TCP_USE_WDT=0 + -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_DFU_ON_BOOT=0 -DCO ;; please make sure that the following flags are properly set (to 0 or 1) by your board.json, or included in your custom platformio_override.ini entry: - ;; ARDUINO_USB_MODE, ARDUINO_USB_CDC_ON_BOOT, ARDUINO_USB_MSC_ON_BOOT, ARDUINO_USB_DFU_ON_BOOT + ;; ARDUINO_USB_MODE, ARDUINO_USB_CDC_ON_BOOT lib_deps = ${env.lib_deps} @@ -433,7 +437,7 @@ board_build.flash_mode = qio upload_speed = 460800 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=S2_saola - -DARDUINO_USB_CDC_ON_BOOT=1 -DARDUINO_USB_MSC_ON_BOOT=0 -DARDUINO_USB_DFU_ON_BOOT=0 + -DARDUINO_USB_CDC_ON_BOOT=1 lib_deps = ${esp32s2.lib_deps} [env:esp32c3dev] @@ -460,8 +464,8 @@ upload_speed = 921600 ; or 460800 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s3.build_flags} -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0 - -D ARDUINO_USB_CDC_ON_BOOT=0 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip - ;-D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") + -D ARDUINO_USB_CDC_ON_BOOT=0 ;; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip + ;-D ARDUINO_USB_CDC_ON_BOOT=1 ;; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") ;-D WLED_DEBUG lib_deps = ${esp32s3.lib_deps} board_build.partitions = tools/WLED_ESP32_8MB.csv @@ -481,8 +485,8 @@ upload_speed = 921600 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags} ${esp32s3.build_flags} -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0 - ;-D ARDUINO_USB_CDC_ON_BOOT=0 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip - -D ARDUINO_USB_CDC_ON_BOOT=1 -D ARDUINO_USB_MSC_ON_BOOT=0 -D ARDUINO_DFU_ON_BOOT=0 ; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") + ;-D ARDUINO_USB_CDC_ON_BOOT=0 ;; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip + -D ARDUINO_USB_CDC_ON_BOOT=1 ;; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") ; -D WLED_RELEASE_NAME=ESP32-S3_PSRAM -D WLED_USE_PSRAM -DBOARD_HAS_PSRAM ; tells WLED that PSRAM shall be used lib_deps = ${esp32s3.lib_deps} @@ -562,8 +566,6 @@ build_unflags = ${common.build_unflags} -DARDUINO_USB_CDC_ON_BOOT=1 build_flags = ${common.build_flags} ${esp32s2.build_flags} #-D WLED_RELEASE_NAME=LolinS2 -DBOARD_HAS_PSRAM -DARDUINO_USB_CDC_ON_BOOT=0 - -DARDUINO_USB_MSC_ON_BOOT=0 - -DARDUINO_USB_DFU_ON_BOOT=0 -D WLED_USE_PSRAM -D WLED_WATCHDOG_TIMEOUT=0 -D CONFIG_ASYNC_TCP_USE_WDT=0 From 54eb42d658e8811f81051196a51d81ed7d79f6cc Mon Sep 17 00:00:00 2001 From: Frank Date: Thu, 30 Mar 2023 00:20:01 +0200 Subject: [PATCH 11/14] build env for -C3 with only 2MB flash based on proposal from in PR #2951 by @andyshinn. 2MB does not allow to have an OTA partition, so this feature is disabled. --- platformio.ini | 18 ++++++++++++++++++ tools/WLED_ESP32_2MB_noOTA.csv | 5 +++++ 2 files changed, 23 insertions(+) create mode 100644 tools/WLED_ESP32_2MB_noOTA.csv diff --git a/platformio.ini b/platformio.ini index 6b7a3d01..277aba9c 100644 --- a/platformio.ini +++ b/platformio.ini @@ -585,6 +585,24 @@ lib_deps = ${esp32s2.lib_deps} # custom board configurations # ------------------------------------------------------------------------------ +[env:esp32c3dev_2MB] +;; for ESP32-C3 boards with 2MB flash (instead of 4MB). +;; this board need a specific partition file. OTA not possible. +extends = esp32c3 +platform = ${esp32c3.platform} +platform_packages = ${esp32c3.platform_packages} +board = esp32-c3-devkitm-1 +build_flags = ${common.build_flags} ${esp32c3.build_flags} #-D WLED_RELEASE_NAME=ESP32-C3 + -D WLED_WATCHDOG_TIMEOUT=0 + -D WLED_DISABLE_OTA + ; -DARDUINO_USB_CDC_ON_BOOT=1 ;; for virtual CDC USB + -DARDUINO_USB_CDC_ON_BOOT=0 ;; for serial-to-USB chip +build_unflags = ${common.build_unflags} +upload_speed = 115200 +lib_deps = ${esp32c3.lib_deps} +board_build.partitions = tools/WLED_ESP32_2MB_noOTA.csv +board_build.flash_mode = dio + [env:wemos_shield_esp32] board = esp32dev platform = espressif32@3.2 diff --git a/tools/WLED_ESP32_2MB_noOTA.csv b/tools/WLED_ESP32_2MB_noOTA.csv new file mode 100644 index 00000000..7a1cf15f --- /dev/null +++ b/tools/WLED_ESP32_2MB_noOTA.csv @@ -0,0 +1,5 @@ +# Name, Type, SubType, Offset, Size, Flags +nvs, data, nvs, 0x9000, 20K, +otadata, data, ota, 0xe000, 8K, +app0, app, ota_0, 0x10000, 1536K, +spiffs, data, spiffs, 0x190000, 384K, From af44730418553f70d05de666a9041130d906e1ab Mon Sep 17 00:00:00 2001 From: Frank <91616163+softhack007@users.noreply.github.com> Date: Fri, 31 Mar 2023 15:44:21 +0200 Subject: [PATCH 12/14] platformio.ini minor cleanups - fixed a few typos, trailing spaces and bad alignments - added the previous 8266 platform packages as a comment, just in case - [env:esp32dev_V4_qio80] is actually "dio" --> renamed to [env:esp32dev_V4_dio80] - all esp32dev targets use the same ${esp32.platform} now (3.2.0 would not compile any more) --- platformio.ini | 63 +++++++++++++++++++++++++++++--------------------- 1 file changed, 37 insertions(+), 26 deletions(-) diff --git a/platformio.ini b/platformio.ini index 277aba9c..da8eb85e 100644 --- a/platformio.ini +++ b/platformio.ini @@ -70,6 +70,14 @@ platform_packages = platformio/framework-arduinoespressif8266 platformio/tool-esptool #@ ~1.413.0 platformio/tool-esptoolpy #@ ~1.30000.0 +## previous platform for 8266, in case of problems with the new one +## you'll need makuna/NeoPixelBus@ 2.6.9 for arduino_core_3_2_0, which does not support Ucs890x +;; platform_wled_default = ${common.arduino_core_3_2_0} +;; platform_packages = tasmota/framework-arduinoespressif8266 @ 3.20704.7 +;; platformio/toolchain-xtensa @ ~2.40802.200502 +;; platformio/tool-esptool @ ~1.413.0 +;; platformio/tool-esptoolpy @ ~1.30000.0 + # ------------------------------------------------------------------------------ # FLAGS: DEBUG # @@ -106,7 +114,7 @@ build_flags = -DBEARSSL_SSL_BASIC -D CORE_DEBUG_LEVEL=0 -D NDEBUG - -Wno-attributes ;; silence warnings about unknown attribute 'maybe_unused' in NeopixelBus + -Wno-attributes ;; silence warnings about unknown attribute 'maybe_unused' in NeoPixelBus #build_flags for the IRremoteESP8266 library (enabled decoders have to appear here) -D _IR_ENABLE_DEFAULT_=false -D DECODE_HASH=true @@ -154,7 +162,7 @@ upload_speed = 115200 # LIBRARIES: required dependencies # Please note that we don't always use the latest version of a library. # -# The following libraries have been included (and some of them changd) in the source: +# The following libraries have been included (and some of them changed) in the source: # ArduinoJson@5.13.5, E131@1.0.0(changed), Time@1.5, Timezone@1.2.1 # ------------------------------------------------------------------------------ lib_compat_mode = strict @@ -188,19 +196,19 @@ build_flags = ;-Wno-deprecated-declarations -Wno-register ;; leaves some warnings when compiling C files: command-line option '-Wno-register' is valid for C++/ObjC++ but not for C ;-Dregister= # remove warnings in C++17 due to use of deprecated register keyword by the FastLED library ;; warning: this can be dangerous - -Wno-misleading-indentation -; NONOSDK22x_190703 = 2.2.2-dev(38a443e) + -Wno-misleading-indentation + ; NONOSDK22x_190703 = 2.2.2-dev(38a443e) -DPIO_FRAMEWORK_ARDUINO_ESPRESSIF_SDK22x_190703 -; lwIP 2 - Higher Bandwidth no Features -; -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH -; lwIP 1.4 - Higher Bandwidth (Aircoookie has) - -DPIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH -; VTABLES in Flash + ; lwIP 2 - Higher Bandwidth no Features + ; -DPIO_FRAMEWORK_ARDUINO_LWIP2_HIGHER_BANDWIDTH_LOW_FLASH + ; lwIP 1.4 - Higher Bandwidth (Aircoookie has) + -DPIO_FRAMEWORK_ARDUINO_LWIP_HIGHER_BANDWIDTH + ; VTABLES in Flash -DVTABLES_IN_FLASH -; restrict to minimal mime-types + ; restrict to minimal mime-types -DMIMETYPE_MINIMAL -lib_deps = +lib_deps = ${env.lib_deps} #https://github.com/lorol/LITTLEFS.git ESPAsyncTCP @ 1.2.2 @@ -219,7 +227,7 @@ build_flags = -g -D CONFIG_ASYNC_TCP_USE_WDT=0 #use LITTLEFS library by lorol in ESP32 core 1.x.x instead of built-in in 2.x.x -D LOROL_LITTLEFS - ; -DARDUINO_USB_CDC_ON_BOOT=0 ;; this flag is mandatory for "classic ESP32" when builing with arduino-esp32 >=2.0.3 + ; -DARDUINO_USB_CDC_ON_BOOT=0 ;; this flag is mandatory for "classic ESP32" when building with arduino-esp32 >=2.0.3 default_partitions = tools/WLED_ESP32_4MB_1MB_FS.csv @@ -231,18 +239,18 @@ lib_deps = [esp32_idf_V4] -;; experimental buildenv for ESP32 using ESP-IDF 4.4.x / arduino-esp32 v2.0.5 +;; experimental build environment for ESP32 using ESP-IDF 4.4.x / arduino-esp32 v2.0.5 ;; very similar to the normal ESP32 flags, but omitting Lorol LittleFS, as littlefs is included in the new framework already. ;; ;; please note that you can NOT update existing ESP32 installs with a "V4" build. Also updating by OTA will not work properly. -;; You need to completely erasse your device (esptool erase_flash) first, then install the "V4" build from VSCode+platformio. +;; You need to completely erase your device (esptool erase_flash) first, then install the "V4" build from VSCode+platformio. platform = espressif32@5.2.0 -platform_packages = +platform_packages = build_flags = -g -DARDUINO_ARCH_ESP32 -DESP32 #-DCONFIG_LITTLEFS_FOR_IDF_3_2 -D CONFIG_ASYNC_TCP_USE_WDT=0 - -DARDUINO_USB_CDC_ON_BOOT=0 ;; this flag is mandatory for "classic ESP32" when builing with arduino-esp32 >=2.0.3 + -DARDUINO_USB_CDC_ON_BOOT=0 ;; this flag is mandatory for "classic ESP32" when building with arduino-esp32 >=2.0.3 default_partitions = tools/WLED_ESP32_4MB_1MB_FS.csv lib_deps = ${env.lib_deps} @@ -252,7 +260,7 @@ lib_deps = [esp32s2] ;; generic definitions for all ESP32-S2 boards platform = espressif32@5.2.0 -platform_packages = +platform_packages = build_flags = -g -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32S2 @@ -272,7 +280,7 @@ lib_deps = [esp32c3] ;; generic definitions for all ESP32-C3 boards platform = espressif32@5.2.0 -platform_packages = +platform_packages = build_flags = -g -DARDUINO_ARCH_ESP32 -DARDUINO_ARCH_ESP32C3 @@ -291,7 +299,7 @@ lib_deps = [esp32s3] ;; generic definitions for all ESP32-S3 boards platform = espressif32@5.2.0 -platform_packages = +platform_packages = build_flags = -g -DESP32 -DARDUINO_ARCH_ESP32 @@ -402,8 +410,8 @@ board_build.partitions = ${esp32.default_partitions} board_build.f_flash = 80000000L board_build.flash_mode = qio -[env:esp32dev_V4_qio80] -;; experimental ESP32 env using ESP-IDF V4.4.x +[env:esp32dev_V4_dio80] +;; experimental ESP32 env using ESP-IDF V4.4.x ;; Warning: this build environment is not stable!! ;; please erase your device before installing. board = esp32dev @@ -462,7 +470,7 @@ platform = ${esp32s3.platform} platform_packages = ${esp32s3.platform_packages} upload_speed = 921600 ; or 460800 build_unflags = ${common.build_unflags} -build_flags = ${common.build_flags} ${esp32s3.build_flags} +build_flags = ${common.build_flags} ${esp32s3.build_flags} -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0 -D ARDUINO_USB_CDC_ON_BOOT=0 ;; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip ;-D ARDUINO_USB_CDC_ON_BOOT=1 ;; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") @@ -483,7 +491,7 @@ platform = ${esp32s3.platform} platform_packages = ${esp32s3.platform_packages} upload_speed = 921600 build_unflags = ${common.build_unflags} -build_flags = ${common.build_flags} ${esp32s3.build_flags} +build_flags = ${common.build_flags} ${esp32s3.build_flags} -D CONFIG_LITTLEFS_FOR_IDF_3_2 -D WLED_WATCHDOG_TIMEOUT=0 ;-D ARDUINO_USB_CDC_ON_BOOT=0 ;; -D ARDUINO_USB_MODE=1 ;; for boards with serial-to-USB chip -D ARDUINO_USB_CDC_ON_BOOT=1 ;; -D ARDUINO_USB_MODE=0 ;; for boards with USB-OTG connector only (USBCDC or "TinyUSB") @@ -605,7 +613,8 @@ board_build.flash_mode = dio [env:wemos_shield_esp32] board = esp32dev -platform = espressif32@3.2 +platform = ${esp32.platform} +platform_packages = ${esp32.platform_packages} upload_speed = 460800 build_unflags = ${common.build_unflags} build_flags = ${common.build_flags_esp32} @@ -630,7 +639,8 @@ board = esp32dev build_unflags = ${common.build_unflags} build_flags = ${common.build_flags_esp32} -D LEDPIN=27 -D BTNPIN=39 lib_deps = ${esp32.lib_deps} -platform = espressif32@3.2 +platform = ${esp32.platform} +platform_packages = ${esp32.platform_packages} board_build.partitions = ${esp32.default_partitions} [env:sp501e] @@ -736,7 +746,8 @@ lib_deps = ${esp8266.lib_deps} # ------------------------------------------------------------------------------ [env:elekstube_ips] board = esp32dev -platform = espressif32@3.2 +platform = ${esp32.platform} +platform_packages = ${esp32.platform_packages} upload_speed = 921600 build_flags = ${common.build_flags_esp32} -D WLED_DISABLE_BROWNOUT_DET -D WLED_DISABLE_INFRARED -D USERMOD_RTC From 9307105b3f8a78191a2268a4f070d035a2521bd1 Mon Sep 17 00:00:00 2001 From: Henrik Date: Sun, 2 Apr 2023 13:52:20 +0200 Subject: [PATCH 13/14] Redone in Patch-1 --- wled00/data/pixart/getPixelValues.js | 2 +- wled00/data/pixart/pixart.htm | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/wled00/data/pixart/getPixelValues.js b/wled00/data/pixart/getPixelValues.js index ffbf94a7..6f68f2d2 100644 --- a/wled00/data/pixart/getPixelValues.js +++ b/wled00/data/pixart/getPixelValues.js @@ -273,7 +273,7 @@ function getPixelRGBValues(base64Image) { //Aggregated Strings That should be returned to the user if (i > 0){ - JSONledString = JSONledString + '\n'; + JSONledString = JSONledString + '\n\n'; curlString = curlString + ' && '; } JSONledString += thisJSONledString; diff --git a/wled00/data/pixart/pixart.htm b/wled00/data/pixart/pixart.htm index 889bd37d..c67ac46a 100644 --- a/wled00/data/pixart/pixart.htm +++ b/wled00/data/pixart/pixart.htm @@ -60,7 +60,7 @@ @@ -71,9 +71,9 @@ @@ -196,7 +196,7 @@
-

Version 1.0.7
 -  Help/About

+

Version 1.0.8
 -  Help/About

From 503f71f0046eb29d20eb649818bce26bd461fcf4 Mon Sep 17 00:00:00 2001 From: Blaz Kristan Date: Sun, 2 Apr 2023 18:07:48 +0200 Subject: [PATCH 14/14] Npm run build --- wled00/html_pixart.h | 995 +++++++++++++++++++++++-------------------- 1 file changed, 524 insertions(+), 471 deletions(-) diff --git a/wled00/html_pixart.h b/wled00/html_pixart.h index 47febff3..790d8ea4 100644 --- a/wled00/html_pixart.h +++ b/wled00/html_pixart.h @@ -7,476 +7,529 @@ */ // Autogenerated from wled00/data/pixart/pixart.htm, do not edit!! -const uint16_t PAGE_pixart_L = 7510; +const uint16_t PAGE_pixart_L = 8364; const uint8_t PAGE_pixart[] PROGMEM = { - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x0a, 0xd5, 0x3c, 0x6d, 0x7b, 0xda, 0xb8, - 0xb2, 0xdf, 0xf9, 0x15, 0xaa, 0xdb, 0x6d, 0x71, 0x23, 0x1c, 0xdb, 0xbc, 0x06, 0xe2, 0xf4, 0xc9, - 0xa6, 0xed, 0xa6, 0xe7, 0xa6, 0x2f, 0x9b, 0xb4, 0xd9, 0xed, 0xc9, 0xc9, 0xd3, 0x0a, 0x2c, 0xc0, - 0xad, 0xb1, 0x39, 0xb6, 0x21, 0x61, 0x29, 0xff, 0xfd, 0xce, 0x48, 0xb2, 0x31, 0x60, 0x1a, 0xd2, - 0xdb, 0x3d, 0xcf, 0x3d, 0xdb, 0x0d, 0xb6, 0xa5, 0x91, 0x34, 0x9a, 0xf7, 0x19, 0x19, 0x0e, 0x1f, - 0x3c, 0x7f, 0x7b, 0xf2, 0xfe, 0xe3, 0xbb, 0x17, 0x64, 0x98, 0x8c, 0xfc, 0x23, 0x72, 0x98, 0x5e, - 0x38, 0x73, 0xe1, 0x32, 0xe2, 0x09, 0x83, 0x9e, 0x64, 0x5c, 0xe1, 0xff, 0x9e, 0x78, 0x53, 0x47, - 0x3b, 0x61, 0xbd, 0x21, 0xaf, 0x9c, 0x84, 0x41, 0x12, 0x85, 0xbe, 0x46, 0x4a, 0x3d, 0xb8, 0xe3, - 0x41, 0xe2, 0x68, 0x41, 0x58, 0xe9, 0x61, 0x1f, 0x25, 0x70, 0x17, 0x27, 0x61, 0x04, 0x77, 0xa3, - 0x49, 0x9c, 0x54, 0x22, 0x3e, 0x65, 0xbe, 0xe7, 0xb2, 0x84, 0x6b, 0x45, 0x13, 0xbe, 0x8b, 0xd8, - 0x60, 0xc4, 0x8a, 0x66, 0x2a, 0x04, 0x7f, 0x71, 0x3b, 0xf6, 0x22, 0x1e, 0x6b, 0x24, 0x03, 0x37, - 0x11, 0x2e, 0xf1, 0x12, 0x9f, 0x1f, 0x95, 0xfe, 0x38, 0x7b, 0xf1, 0x9c, 0xbc, 0xf3, 0x6e, 0xb9, - 0x4f, 0x8e, 0xa3, 0x84, 0x00, 0x9a, 0x53, 0x1e, 0x25, 0x3c, 0x3a, 0xdc, 0x97, 0x00, 0xe4, 0x30, - 0x4e, 0x66, 0x08, 0x68, 0x74, 0xc3, 0xdb, 0x79, 0x37, 0x8c, 0x5c, 0x1e, 0xb5, 0xed, 0xf1, 0x2d, - 0x89, 0x43, 0x40, 0x91, 0x3c, 0xec, 0xf7, 0xfb, 0x8b, 0x6e, 0xe8, 0xce, 0xe6, 0x7d, 0x98, 0xbd, - 0xd2, 0x67, 0x23, 0xcf, 0x9f, 0xb5, 0x8f, 0x23, 0x8f, 0xf9, 0x34, 0x66, 0x41, 0x5c, 0x89, 0x79, - 0xe4, 0xf5, 0x3b, 0x5d, 0xd6, 0xfb, 0x3a, 0x88, 0xc2, 0x49, 0xe0, 0x56, 0x7a, 0xa1, 0x1f, 0x46, - 0xed, 0x87, 0x96, 0x65, 0x2d, 0x8c, 0x24, 0x1c, 0x57, 0xc6, 0x2c, 0x4a, 0xe6, 0x37, 0x9e, 0x9b, - 0x0c, 0xdb, 0x0d, 0xd3, 0x1c, 0xdf, 0x76, 0x46, 0x2c, 0x1a, 0x78, 0x41, 0xdb, 0x24, 0x6c, 0x92, - 0x84, 0x0b, 0x03, 0xb1, 0x66, 0x5e, 0xc0, 0xa3, 0xf9, 0x88, 0xdd, 0x56, 0x24, 0xa0, 0x65, 0x9a, - 0xbf, 0x90, 0x4a, 0x0d, 0xa1, 0x25, 0x46, 0x95, 0x88, 0xb9, 0xde, 0x24, 0x6e, 0x9b, 0x9d, 0x31, - 0x73, 0x5d, 0x2f, 0x18, 0xb4, 0x6d, 0xec, 0x4c, 0xf8, 0x6d, 0x52, 0x01, 0x52, 0x0e, 0x82, 0x76, - 0x0f, 0x76, 0xce, 0xa3, 0xc5, 0xd0, 0x92, 0x88, 0xc6, 0xde, 0x5f, 0xbc, 0x6d, 0x1b, 0x55, 0x3e, - 0xea, 0x28, 0x84, 0x5c, 0xd7, 0x4d, 0x97, 0xb6, 0x60, 0x7b, 0x66, 0xe7, 0xbb, 0x1b, 0xf2, 0x01, - 0xa3, 0xca, 0x90, 0x7b, 0x83, 0x61, 0xd2, 0x36, 0xea, 0x8b, 0xa1, 0x9d, 0x9b, 0xd6, 0x32, 0xac, - 0x6c, 0xda, 0x68, 0xd0, 0x65, 0x65, 0xdb, 0xb6, 0x68, 0xfa, 0x67, 0x34, 0x2c, 0xfd, 0x87, 0xd7, - 0x29, 0xda, 0x50, 0x35, 0xb7, 0xb2, 0xd1, 0xfc, 0x5b, 0x16, 0xb6, 0x8c, 0xda, 0xe6, 0xca, 0x1d, - 0xf1, 0x50, 0xf1, 0x12, 0x3e, 0x8a, 0xd3, 0xa6, 0x2f, 0x20, 0xbd, 0x5e, 0x7f, 0x56, 0x51, 0x92, - 0x96, 0x36, 0xbb, 0x5e, 0x3c, 0xf6, 0xd9, 0xac, 0xdd, 0xf7, 0xf9, 0xed, 0x62, 0x9c, 0xa7, 0xd4, - 0x92, 0xfc, 0xcd, 0x66, 0x73, 0x6d, 0xcd, 0xfa, 0x77, 0x11, 0x5c, 0x3c, 0xec, 0x7b, 0xdc, 0x77, - 0xdf, 0xb3, 0xae, 0xcf, 0xf3, 0x33, 0x92, 0xef, 0x4c, 0x79, 0xc7, 0x84, 0x71, 0x8f, 0xf9, 0xfc, - 0x67, 0x4e, 0xe8, 0x46, 0x20, 0xdf, 0x7f, 0x85, 0x01, 0x9f, 0xa7, 0x14, 0xe8, 0xfa, 0x61, 0xef, - 0x6b, 0x67, 0x29, 0xc4, 0x79, 0x19, 0x6e, 0x57, 0x81, 0x2b, 0x2e, 0x8b, 0x87, 0x1c, 0xd4, 0x0a, - 0xa5, 0x71, 0x5d, 0xb4, 0x37, 0x59, 0xb0, 0x22, 0xec, 0xa9, 0xde, 0x74, 0x7a, 0x93, 0x28, 0x06, - 0x74, 0xc7, 0xa1, 0x27, 0x80, 0xbe, 0xcb, 0xe6, 0xdc, 0x46, 0xeb, 0x30, 0xc7, 0x72, 0xa3, 0x48, - 0x5f, 0x9f, 0x57, 0xc6, 0x5e, 0xef, 0x2b, 0xa8, 0x5e, 0x8a, 0x7f, 0x00, 0x9b, 0x59, 0x18, 0xcc, - 0x65, 0xe3, 0xc4, 0x9b, 0xf2, 0xf7, 0xcf, 0xe7, 0x79, 0xd6, 0x76, 0xf0, 0xa3, 0xe2, 0x82, 0xb1, - 0xe9, 0x25, 0x5e, 0x18, 0xb4, 0xa3, 0xf0, 0x46, 0x36, 0xdd, 0x44, 0x6c, 0x0c, 0x43, 0xf1, 0x52, - 0x20, 0x35, 0x0b, 0x63, 0x04, 0xfa, 0x7d, 0xc1, 0x7d, 0x18, 0x16, 0x46, 0xf3, 0x4d, 0x53, 0x61, - 0xdb, 0x76, 0x5e, 0x49, 0x15, 0xb5, 0xac, 0xa5, 0x0d, 0xaa, 0x56, 0xab, 0x6a, 0xf7, 0x15, 0xb0, - 0x28, 0xed, 0x5a, 0x46, 0x8c, 0x4a, 0x37, 0x4c, 0x92, 0x70, 0x24, 0x5a, 0x52, 0x5a, 0x99, 0xa4, - 0x05, 0x4f, 0x8a, 0x83, 0x36, 0xde, 0xaf, 0xd1, 0x60, 0x95, 0xec, 0xcd, 0xb1, 0xda, 0x17, 0xe0, - 0x74, 0x03, 0x1c, 0x5f, 0xd9, 0xf0, 0xce, 0x2a, 0xb0, 0xa4, 0xd9, 0x7f, 0xdb, 0x3e, 0x25, 0xc7, - 0x63, 0x3e, 0x18, 0xc1, 0x46, 0xe2, 0xe7, 0xde, 0x54, 0xd9, 0xea, 0x6a, 0x63, 0xb9, 0x56, 0xc5, - 0xe7, 0xfd, 0xa4, 0x0d, 0x73, 0x2e, 0x9e, 0x12, 0x2f, 0x18, 0x4f, 0x92, 0xab, 0x64, 0x36, 0xe6, - 0x4e, 0xc4, 0x82, 0x01, 0xbf, 0x9e, 0xb3, 0xf1, 0x98, 0x33, 0xb8, 0xef, 0x71, 0x31, 0x59, 0xa7, - 0x32, 0x0a, 0xff, 0xaa, 0x6c, 0x34, 0xde, 0xf0, 0xee, 0x57, 0x2f, 0xd9, 0x68, 0xcf, 0xa3, 0x94, - 0xed, 0x2c, 0x15, 0x75, 0xd8, 0x2e, 0x6e, 0x92, 0xd4, 0x84, 0x39, 0xdb, 0x20, 0x68, 0x02, 0xf3, - 0xc4, 0xe0, 0x5e, 0x00, 0xf1, 0x75, 0x9d, 0x58, 0xc2, 0xb6, 0x51, 0xa1, 0x59, 0x04, 0x6b, 0x00, - 0x1d, 0x00, 0xb2, 0x9c, 0x84, 0x24, 0x42, 0x9a, 0xd1, 0x87, 0xdd, 0x6e, 0x97, 0xd4, 0xcd, 0x5f, - 0x28, 0xd2, 0x1d, 0x6f, 0xf4, 0x4d, 0x92, 0x2d, 0x36, 0xb6, 0xdb, 0xee, 0x87, 0xbd, 0x49, 0x3c, - 0x0f, 0x27, 0x09, 0x4e, 0xdc, 0x36, 0x0b, 0x20, 0xda, 0xe9, 0x66, 0x63, 0xe0, 0x2a, 0x4e, 0x37, - 0x09, 0x02, 0xb4, 0x3a, 0x15, 0x40, 0xb8, 0xf7, 0x75, 0x9e, 0x67, 0xd9, 0x76, 0xb4, 0x4d, 0xdc, - 0xf1, 0x0e, 0xe8, 0xac, 0x2f, 0x96, 0x0c, 0x27, 0xa3, 0x6e, 0xba, 0x86, 0x85, 0x4c, 0x54, 0xd6, - 0xa8, 0xb1, 0x21, 0x12, 0xb0, 0xe5, 0xfc, 0x8a, 0xe8, 0xea, 0xd7, 0x11, 0xda, 0xc6, 0xb6, 0x35, - 0x29, 0xdd, 0x0d, 0x51, 0x94, 0x0b, 0xf1, 0x50, 0x40, 0x88, 0x0d, 0xe6, 0x0a, 0xff, 0x66, 0x52, - 0xf1, 0x4f, 0xbf, 0xff, 0x02, 0x82, 0x0a, 0x4a, 0xc3, 0x4c, 0xa5, 0x5f, 0x79, 0x79, 0xd9, 0x89, - 0x40, 0xcd, 0x15, 0xc4, 0x04, 0x81, 0x16, 0x86, 0x58, 0xe0, 0x0d, 0x4c, 0x0f, 0x66, 0x53, 0x8e, - 0x14, 0xd6, 0x19, 0xa3, 0x2a, 0x0f, 0x1c, 0x8c, 0x32, 0xe0, 0x23, 0xcf, 0x75, 0x7d, 0x50, 0xac, - 0xfe, 0xc4, 0xf7, 0xdf, 0x83, 0x5d, 0x7f, 0x89, 0xce, 0x4c, 0xa2, 0x8b, 0x66, 0xfe, 0x7a, 0x8b, - 0x79, 0x28, 0xb6, 0x09, 0xa9, 0x1a, 0x7a, 0x81, 0xf0, 0x4e, 0x71, 0x02, 0x21, 0x15, 0xaa, 0xe3, - 0xdd, 0xc6, 0x22, 0x25, 0x71, 0xad, 0x20, 0x92, 0xfa, 0x01, 0xbf, 0xb1, 0xe9, 0xb5, 0x7e, 0x96, - 0xf9, 0xec, 0xfb, 0xb7, 0xef, 0x5f, 0xfa, 0xee, 0xcf, 0x21, 0xcb, 0x7f, 0xcb, 0xae, 0x57, 0xac, - 0x69, 0x3c, 0xe9, 0x8e, 0xbc, 0x1f, 0x13, 0x0c, 0x88, 0x1c, 0x21, 0x88, 0x59, 0x46, 0x1d, 0x6b, - 0xd8, 0x0a, 0x3a, 0xec, 0xba, 0xef, 0xb5, 0x90, 0x19, 0x70, 0xec, 0x4e, 0x40, 0x9c, 0x82, 0xff, - 0x03, 0x67, 0x04, 0x4f, 0x7e, 0x0e, 0x76, 0xab, 0xe1, 0xfc, 0x8f, 0x91, 0x7d, 0xcd, 0xc6, 0xa9, - 0xb8, 0x10, 0x3d, 0xdf, 0x5d, 0xf3, 0x15, 0xeb, 0x38, 0xea, 0x33, 0x18, 0x15, 0x36, 0x1f, 0x44, - 0x9e, 0x5b, 0x11, 0x02, 0xb1, 0x6f, 0xe7, 0xf7, 0x9b, 0x8a, 0xa3, 0xc8, 0x7e, 0xee, 0x43, 0xc6, - 0x1c, 0x1b, 0x8c, 0x21, 0x58, 0xf7, 0xb5, 0x30, 0x2d, 0x9e, 0x02, 0x85, 0x61, 0x6f, 0xf3, 0x62, - 0xbc, 0x1e, 0x7a, 0x23, 0x06, 0xa6, 0x70, 0x99, 0x5f, 0xa5, 0xa3, 0x11, 0xcf, 0x8e, 0x40, 0x16, - 0x36, 0x07, 0x2d, 0x09, 0x47, 0xac, 0xe3, 0xb6, 0xd5, 0x8f, 0x08, 0xfc, 0x2d, 0x1e, 0x4a, 0x8e, - 0x17, 0x8c, 0x14, 0x84, 0x49, 0x99, 0xab, 0xcc, 0x8c, 0x65, 0xe6, 0x02, 0x05, 0xb4, 0x44, 0xd8, - 0xb0, 0x30, 0xe4, 0x1c, 0x3d, 0x9f, 0xc5, 0xf1, 0x1c, 0x87, 0x2d, 0xfd, 0xbb, 0x00, 0xaa, 0x8f, - 0x37, 0x26, 0xc2, 0xf8, 0xc2, 0x18, 0xb0, 0xf1, 0x3c, 0x25, 0x1d, 0x3c, 0x3f, 0x94, 0x5a, 0xa1, - 0xb2, 0xd6, 0x76, 0xbb, 0xcb, 0xfb, 0x90, 0x46, 0xcf, 0x53, 0x86, 0x6a, 0x5a, 0x26, 0x03, 0xca, - 0x08, 0xc8, 0x00, 0x3c, 0x47, 0x64, 0x41, 0x84, 0xf6, 0x24, 0xf2, 0xcb, 0x4f, 0x20, 0xe1, 0x66, - 0x6d, 0xf1, 0xbc, 0x0f, 0xa4, 0xdb, 0xbb, 0x1d, 0xf9, 0x9d, 0x49, 0xd2, 0x6f, 0x51, 0x48, 0x81, - 0xa7, 0x03, 0x22, 0xd2, 0x60, 0x47, 0x53, 0x26, 0x7d, 0xcd, 0x78, 0x6a, 0x64, 0xea, 0xf1, 0x9b, - 0x5f, 0xc3, 0x5b, 0x48, 0xae, 0x89, 0x49, 0xec, 0x1a, 0xfc, 0xaf, 0x91, 0xc3, 0x31, 0x4b, 0x86, - 0x04, 0xe2, 0x68, 0xdf, 0xd1, 0x40, 0xa8, 0xd0, 0xb1, 0x9c, 0x20, 0xcb, 0x34, 0xe2, 0x3a, 0xda, - 0x6b, 0xcb, 0xa6, 0x8d, 0xcb, 0x83, 0x33, 0xab, 0x41, 0xeb, 0x67, 0x70, 0x6f, 0x5d, 0xd6, 0x8e, - 0x5b, 0xb4, 0x05, 0xa3, 0xc1, 0xa3, 0x91, 0x1a, 0xb5, 0xec, 0x13, 0xf8, 0xa8, 0x1a, 0xf5, 0x26, - 0xa9, 0x19, 0xb5, 0x06, 0xb5, 0xea, 0x86, 0x09, 0x61, 0x88, 0x61, 0x43, 0x6b, 0xc3, 0xb0, 0x1b, - 0x67, 0x0d, 0xa3, 0x49, 0xad, 0x9a, 0xd1, 0x3a, 0x81, 0xa7, 0x3a, 0x42, 0x1e, 0x34, 0x09, 0x80, - 0x55, 0xf1, 0xc3, 0x3e, 0x6e, 0xd0, 0x86, 0x98, 0xca, 0x22, 0xb8, 0xce, 0x6b, 0xab, 0x65, 0x34, - 0x1b, 0xb4, 0x69, 0x34, 0x6b, 0x67, 0x56, 0xd3, 0xa8, 0xd2, 0x03, 0xc3, 0x3e, 0xb1, 0xf0, 0x91, - 0x5a, 0xa6, 0x61, 0xd6, 0x88, 0xd5, 0xa2, 0x96, 0x25, 0x3e, 0xd7, 0x86, 0x5a, 0xad, 0x4b, 0xab, - 0x7e, 0x06, 0xed, 0x07, 0x88, 0xa4, 0x5d, 0xbd, 0xb4, 0xcd, 0x1c, 0x9a, 0xb6, 0x89, 0x78, 0xe2, - 0xa7, 0x69, 0xd4, 0xaa, 0xc4, 0x3a, 0x30, 0xea, 0x35, 0xda, 0x42, 0x4c, 0x96, 0x0b, 0xfe, 0x53, - 0x23, 0xfb, 0x47, 0x87, 0x48, 0xd2, 0xa3, 0x27, 0x7a, 0x27, 0x17, 0x3d, 0x2a, 0xfa, 0xe1, 0x3d, - 0x30, 0x12, 0xf4, 0x17, 0x74, 0x8c, 0x3c, 0x9d, 0x17, 0x71, 0x0c, 0x84, 0x19, 0xfa, 0x5f, 0xa1, - 0x35, 0x14, 0x9e, 0x32, 0x56, 0x42, 0x50, 0xbf, 0xaf, 0xca, 0xec, 0xe2, 0x2a, 0x2b, 0xdf, 0xf7, - 0x11, 0xcd, 0x7b, 0xd8, 0xa3, 0x55, 0x2f, 0xb1, 0x60, 0x18, 0x6d, 0x7e, 0x9d, 0x7f, 0x2f, 0x43, - 0xff, 0x6e, 0x14, 0x2b, 0x32, 0x40, 0x97, 0xf7, 0xc2, 0x88, 0x89, 0x0c, 0x4b, 0xe8, 0x39, 0x6b, - 0x4f, 0xbd, 0x18, 0xec, 0x90, 0xfb, 0xd3, 0xe7, 0x1d, 0x86, 0xa0, 0x55, 0xf3, 0xbc, 0x97, 0xfb, - 0x81, 0x49, 0x58, 0x0f, 0xd3, 0x9e, 0x9f, 0x8c, 0x5b, 0x09, 0xe4, 0x49, 0x94, 0xa5, 0xc8, 0x21, - 0x52, 0x94, 0x44, 0x1c, 0x54, 0x2c, 0x1e, 0x86, 0x51, 0xd2, 0x9b, 0x24, 0x04, 0x8d, 0x9e, 0x46, - 0x86, 0x11, 0xef, 0x3b, 0x9a, 0x50, 0x6a, 0x08, 0x4f, 0x7d, 0x30, 0x80, 0x38, 0x7e, 0x3f, 0xec, - 0x25, 0x1c, 0xd8, 0x93, 0x80, 0x45, 0x1e, 0xc1, 0xca, 0x31, 0x6f, 0xd4, 0xa8, 0x76, 0x54, 0x02, - 0x25, 0xef, 0x45, 0xde, 0x38, 0x21, 0xc2, 0xd9, 0x6a, 0xb8, 0xea, 0xfe, 0x17, 0x36, 0x65, 0xb2, - 0x15, 0x00, 0xfa, 0x93, 0x40, 0xa4, 0xb5, 0x64, 0xf0, 0xca, 0x2d, 0x73, 0x7d, 0x1e, 0xf1, 0x64, - 0x12, 0x05, 0xc4, 0x35, 0x06, 0x3c, 0x79, 0xe1, 0x73, 0x4c, 0x8f, 0x7e, 0x9d, 0x89, 0xae, 0x45, - 0x06, 0xda, 0x7b, 0xb1, 0x02, 0xd9, 0x83, 0x35, 0x13, 0xae, 0x80, 0x11, 0x70, 0xca, 0x22, 0x30, - 0x05, 0x2e, 0x64, 0x0c, 0xd8, 0x82, 0x9b, 0x12, 0xab, 0xc1, 0xae, 0xf6, 0x55, 0x35, 0x11, 0x4b, - 0x6b, 0xcb, 0x8b, 0x0b, 0x0a, 0x22, 0x4c, 0x26, 0x20, 0xa8, 0x4a, 0x67, 0x9a, 0x6a, 0x2e, 0x29, - 0xfb, 0xb4, 0x62, 0x8a, 0x8b, 0x1d, 0x1c, 0x0e, 0x19, 0x5a, 0xc5, 0x23, 0x36, 0xbd, 0x1a, 0x42, - 0xa3, 0xfd, 0x2b, 0xad, 0x18, 0xc0, 0x75, 0x05, 0x4e, 0xf5, 0x47, 0xa4, 0x4e, 0xed, 0xc6, 0x86, - 0x45, 0xac, 0xda, 0xf0, 0xbf, 0x76, 0x24, 0x2d, 0x62, 0x49, 0x9a, 0xc4, 0x87, 0xa6, 0x59, 0x85, - 0x90, 0x59, 0x5a, 0xc3, 0x06, 0xb1, 0xed, 0x61, 0x6b, 0x5a, 0x3b, 0x6d, 0xfc, 0xf5, 0xda, 0x02, - 0x7b, 0x54, 0x1b, 0xd6, 0xa6, 0xad, 0x61, 0xa5, 0x06, 0x4f, 0x2d, 0x62, 0x99, 0xd9, 0x93, 0x6d, - 0x93, 0x06, 0xc2, 0x0d, 0x2b, 0xad, 0xbf, 0xb4, 0xd4, 0xae, 0x94, 0xc8, 0xb6, 0x32, 0x26, 0x52, - 0xd2, 0x42, 0x7a, 0x02, 0x8d, 0x70, 0xdb, 0xf6, 0x51, 0x49, 0xf5, 0x11, 0x61, 0xe9, 0x09, 0xa4, - 0x7b, 0x62, 0xec, 0x3f, 0x2e, 0xde, 0xbe, 0x21, 0xe5, 0xb1, 0x98, 0x01, 0xc8, 0x4a, 0x80, 0x7b, - 0xa2, 0x7d, 0xc4, 0x92, 0xc8, 0xbb, 0xd5, 0x61, 0x1a, 0x1b, 0xc6, 0x8f, 0xb1, 0x70, 0x8a, 0xb9, - 0x1a, 0x29, 0x79, 0x80, 0xf5, 0xb2, 0x04, 0xa5, 0xad, 0xfa, 0x07, 0xe1, 0xd7, 0x05, 0x60, 0x05, - 0x48, 0x0b, 0xc9, 0x60, 0xbb, 0x0f, 0x33, 0xbb, 0x8a, 0xbc, 0x9b, 0xec, 0x48, 0x22, 0x94, 0xc0, - 0xc4, 0x4d, 0x67, 0x29, 0xf4, 0xd8, 0x08, 0xe8, 0xb3, 0x2e, 0x20, 0x08, 0x4e, 0xce, 0xd1, 0x7c, - 0xee, 0x5e, 0x80, 0x64, 0x8d, 0xd3, 0x8a, 0x82, 0x76, 0x74, 0xc6, 0x61, 0x02, 0x6c, 0x6a, 0x83, - 0x28, 0x09, 0x48, 0xdc, 0x79, 0x82, 0x72, 0x04, 0x53, 0x2b, 0xc1, 0x59, 0x16, 0x6f, 0x04, 0x67, - 0xc5, 0x60, 0x82, 0x9b, 0xd9, 0x98, 0x8f, 0x94, 0xd4, 0x90, 0x7c, 0x7d, 0x06, 0x07, 0x85, 0x63, - 0x21, 0xdd, 0x53, 0xe6, 0x4f, 0x38, 0xf6, 0x22, 0x85, 0x80, 0x00, 0x02, 0x82, 0xc3, 0x4c, 0xe9, - 0x9d, 0x76, 0x64, 0x3f, 0x27, 0xaf, 0x45, 0x37, 0x20, 0x24, 0x47, 0x6d, 0x0c, 0x8f, 0x6c, 0x5f, - 0x3b, 0xba, 0xe0, 0xd1, 0x18, 0x88, 0x01, 0x26, 0x99, 0x82, 0xbf, 0x8c, 0xe2, 0x84, 0x40, 0xc4, - 0x21, 0xf3, 0x70, 0xe4, 0x10, 0xd6, 0x17, 0xc8, 0x63, 0x3f, 0xe9, 0x54, 0xb2, 0x69, 0x4a, 0xeb, - 0xf3, 0xf8, 0x76, 0xb4, 0x6d, 0x1e, 0x31, 0x3c, 0xcd, 0xeb, 0x49, 0xe5, 0xf1, 0x20, 0xe9, 0x2c, - 0xd1, 0x41, 0xad, 0x13, 0xf8, 0x66, 0xb4, 0xda, 0x07, 0x6e, 0x08, 0x96, 0xdc, 0x83, 0x23, 0x25, - 0xc1, 0x12, 0xf8, 0x00, 0x6a, 0x2c, 0x49, 0xf5, 0x76, 0x92, 0x80, 0xc7, 0x22, 0xb2, 0xb9, 0xbd, - 0x23, 0x4f, 0x4a, 0x79, 0xa6, 0xac, 0xcd, 0x48, 0x76, 0xe2, 0xc8, 0x0d, 0xb0, 0x12, 0xb8, 0x57, - 0xc4, 0x90, 0x4c, 0xd6, 0xb7, 0xf2, 0x03, 0x02, 0x15, 0x60, 0xc8, 0xc9, 0x87, 0xf3, 0xb3, 0x3c, - 0x8d, 0x56, 0x61, 0x86, 0x4c, 0x3b, 0x3a, 0x0d, 0x47, 0x9c, 0x1c, 0xc7, 0xb1, 0x07, 0x3e, 0x34, - 0x48, 0xc8, 0xc7, 0xe3, 0xd7, 0xb9, 0x01, 0x77, 0xd0, 0xb4, 0x74, 0x0f, 0x31, 0x17, 0x1e, 0xe1, - 0xe5, 0x1a, 0x61, 0x4b, 0x22, 0x8e, 0x22, 0xbd, 0xd0, 0xe5, 0xf7, 0xa4, 0x6e, 0x4a, 0x5c, 0xa1, - 0xbf, 0x45, 0x73, 0xef, 0x46, 0xe2, 0x21, 0xbf, 0xdd, 0x42, 0xe1, 0xd3, 0x17, 0x7f, 0x92, 0xf2, - 0xc3, 0x7e, 0x0d, 0xff, 0xe9, 0x5b, 0xa9, 0x0c, 0x0e, 0x4d, 0x3b, 0x7a, 0xfe, 0xe2, 0x84, 0x94, - 0xed, 0x5a, 0x8d, 0xaa, 0x3f, 0xbd, 0xb4, 0x33, 0x05, 0xef, 0x23, 0x95, 0x10, 0xf2, 0x44, 0x1c, - 0x18, 0x15, 0x0c, 0x96, 0xfb, 0x39, 0xce, 0xda, 0x7e, 0x48, 0x2c, 0x0b, 0xa6, 0xdc, 0x91, 0x6e, - 0xb3, 0x2e, 0x24, 0x16, 0xdb, 0x48, 0x27, 0x3a, 0x91, 0x7a, 0x26, 0xfe, 0x83, 0xa0, 0x92, 0x12, - 0xab, 0x49, 0xc9, 0x76, 0x6a, 0x96, 0x52, 0x23, 0x82, 0x45, 0x17, 0xed, 0xe8, 0x1c, 0x2f, 0xa4, - 0x7c, 0xf7, 0x38, 0x35, 0x0c, 0x37, 0x80, 0xf4, 0x2a, 0x5d, 0x88, 0x9b, 0x42, 0xbe, 0xfd, 0x3c, - 0x49, 0xee, 0x0a, 0xfb, 0x13, 0x00, 0xdd, 0x64, 0x79, 0x48, 0x3b, 0xfa, 0x35, 0x6b, 0xc9, 0xb8, - 0x50, 0xca, 0xb1, 0xe1, 0x7b, 0x73, 0x77, 0x76, 0x70, 0xdb, 0xa2, 0x7a, 0x50, 0x52, 0x11, 0x8d, - 0x24, 0x91, 0xe0, 0xde, 0x06, 0x22, 0x64, 0xe4, 0x05, 0x8e, 0x66, 0xc1, 0x95, 0x81, 0xbf, 0xb6, - 0xeb, 0x75, 0x2d, 0xa5, 0x90, 0x65, 0xb7, 0x84, 0xd2, 0x8c, 0x59, 0x20, 0x55, 0x66, 0x39, 0xf6, - 0x12, 0x21, 0xb4, 0x23, 0x80, 0x00, 0x1a, 0x41, 0xff, 0xcf, 0xd2, 0xf5, 0x33, 0x0f, 0x32, 0xba, - 0x94, 0x42, 0xa5, 0xd7, 0xec, 0x96, 0x04, 0x21, 0x09, 0xfb, 0x44, 0x74, 0xc6, 0xfb, 0x68, 0xbc, - 0x8a, 0x64, 0xb6, 0xf4, 0x53, 0xa8, 0x45, 0x4a, 0x1b, 0xd4, 0xda, 0x40, 0x6a, 0x95, 0x5a, 0x75, - 0xcb, 0xce, 0xa8, 0x65, 0xd7, 0x1b, 0xab, 0xd4, 0x5a, 0x8e, 0x55, 0xd4, 0x02, 0x88, 0x2d, 0xd4, - 0x4a, 0xf5, 0x67, 0xc8, 0x2a, 0x98, 0xcb, 0x6b, 0xf7, 0xa7, 0xde, 0x90, 0xbd, 0x02, 0x45, 0x3d, - 0x3d, 0x26, 0xcf, 0xf9, 0xd4, 0xeb, 0x71, 0xf2, 0xea, 0x79, 0x01, 0x9d, 0x4a, 0xc5, 0x56, 0x51, - 0x6e, 0x5e, 0x75, 0xad, 0x14, 0x25, 0xb5, 0x5c, 0x44, 0x2c, 0x09, 0x22, 0xd6, 0xc9, 0x54, 0x4f, - 0x84, 0x4c, 0x9f, 0x20, 0x64, 0xfa, 0xd4, 0x93, 0x47, 0xdc, 0x3e, 0x8f, 0x3e, 0x99, 0xa6, 0xa5, - 0xfd, 0x2d, 0x3b, 0xfc, 0xb0, 0xba, 0xc5, 0x0f, 0x81, 0xf7, 0xef, 0xc9, 0xea, 0x4e, 0x4b, 0x77, - 0xd8, 0xff, 0x5d, 0x77, 0x5a, 0x92, 0x5b, 0xc5, 0x05, 0xc9, 0x1d, 0x5b, 0x65, 0xbb, 0xec, 0xb5, - 0x74, 0xcf, 0xf0, 0x6e, 0xc8, 0xde, 0xb0, 0x11, 0xcf, 0x6f, 0x16, 0x9f, 0xff, 0xb6, 0x7d, 0x8a, - 0xc5, 0xd2, 0x8d, 0x2e, 0x03, 0xe9, 0xff, 0xf1, 0x92, 0xde, 0x90, 0x07, 0xda, 0xcf, 0x50, 0x6e, - 0x08, 0x2c, 0x3e, 0x60, 0x6c, 0x91, 0x8a, 0xe7, 0xbb, 0xfd, 0x61, 0x08, 0x11, 0x5a, 0x90, 0xdf, - 0x56, 0x89, 0xfc, 0xcc, 0x6d, 0xa5, 0x4b, 0xca, 0x7d, 0xfd, 0x04, 0x57, 0x9a, 0x40, 0x96, 0xc3, - 0x21, 0x56, 0x10, 0xa7, 0x61, 0xda, 0xd1, 0x7b, 0xf1, 0x48, 0xd4, 0xe9, 0x18, 0x28, 0xc7, 0xee, - 0xce, 0x74, 0x75, 0x1f, 0xb2, 0xba, 0x9d, 0xee, 0x20, 0x50, 0x76, 0xc6, 0x13, 0xde, 0x71, 0x90, - 0x93, 0x40, 0x53, 0x19, 0x1f, 0x53, 0x19, 0x9f, 0x46, 0x75, 0xdd, 0x33, 0xaf, 0x62, 0xb8, 0xbe, - 0x78, 0xde, 0x31, 0x2f, 0x1d, 0x9b, 0xc8, 0x1f, 0x71, 0xf0, 0x72, 0x24, 0x9e, 0xf4, 0x65, 0xa3, - 0x73, 0xa7, 0x7f, 0x90, 0xc2, 0xa9, 0x54, 0x2a, 0x4f, 0xca, 0x7d, 0x91, 0xea, 0x2c, 0x73, 0xa3, - 0x74, 0x5c, 0x76, 0xa0, 0x7e, 0x82, 0x0d, 0x6a, 0x43, 0x59, 0xa3, 0xb6, 0x96, 0x53, 0xfe, 0x40, - 0xd2, 0xb4, 0x9b, 0x10, 0xe2, 0xfe, 0xb2, 0xa5, 0xc5, 0x26, 0x76, 0x49, 0x69, 0x8b, 0x6b, 0x7a, - 0x58, 0xb3, 0xf4, 0x7a, 0x5f, 0x61, 0xb2, 0x1b, 0x54, 0x8d, 0x0b, 0x9c, 0xb2, 0xac, 0x63, 0xae, - 0x24, 0xaa, 0xc6, 0x60, 0x24, 0x64, 0xd9, 0x38, 0xcd, 0x75, 0x8b, 0xaa, 0x7f, 0x25, 0x51, 0xfe, - 0x6b, 0x92, 0xe6, 0x69, 0x93, 0xd5, 0x49, 0x1d, 0x6b, 0x69, 0xc4, 0xac, 0xe0, 0x5d, 0xf6, 0x84, - 0x77, 0x43, 0xcb, 0x64, 0xb9, 0x86, 0x4a, 0xae, 0xbb, 0x02, 0x4f, 0xaf, 0x9b, 0xc4, 0xaa, 0xb3, - 0x2a, 0xa9, 0x8a, 0x26, 0xab, 0x52, 0xad, 0xe0, 0xbd, 0x7a, 0x22, 0x6b, 0x4f, 0x24, 0xf7, 0x84, - 0x3d, 0x98, 0x3b, 0x97, 0x64, 0xf2, 0x4c, 0x1e, 0x07, 0xdd, 0x78, 0xdc, 0x11, 0x3b, 0x51, 0x49, - 0xf1, 0x2a, 0x8f, 0x77, 0xd0, 0x91, 0x4c, 0x82, 0x54, 0x19, 0x2f, 0x4b, 0x87, 0xf3, 0x15, 0xe9, - 0x35, 0x7b, 0x80, 0xa0, 0x7f, 0x42, 0x46, 0x42, 0xda, 0x24, 0xd3, 0x1a, 0x89, 0x4a, 0xea, 0x8a, - 0x53, 0x31, 0x5a, 0x2d, 0xfd, 0x15, 0x6a, 0x89, 0x98, 0x2b, 0x73, 0xcc, 0x69, 0xf0, 0xd2, 0xc0, - 0xc2, 0x8e, 0x9c, 0x33, 0xff, 0xb9, 0x81, 0xc6, 0x47, 0x30, 0xb3, 0x3f, 0x0b, 0x8d, 0x8f, 0x85, - 0x68, 0xa4, 0x24, 0x2d, 0x15, 0xeb, 0xcd, 0xfe, 0x58, 0x15, 0x17, 0x72, 0x88, 0xe5, 0xde, 0xbf, - 0xc8, 0x0b, 0x71, 0xf6, 0x52, 0x09, 0xee, 0xed, 0x39, 0x3c, 0x28, 0x9e, 0x0d, 0x79, 0x04, 0x8c, - 0xeb, 0x46, 0x47, 0x90, 0x17, 0xe1, 0x85, 0x9c, 0xa0, 0x9c, 0x62, 0xda, 0xab, 0xac, 0x03, 0x43, - 0x59, 0xcc, 0xf1, 0x36, 0x33, 0x54, 0x6a, 0xed, 0xd4, 0x26, 0xc9, 0x6d, 0x21, 0xac, 0xdc, 0x54, - 0x1e, 0x8f, 0x6d, 0x6c, 0x85, 0x39, 0x56, 0xaa, 0x50, 0x79, 0x85, 0x5e, 0x7f, 0x6b, 0x45, 0x58, - 0xf1, 0xd1, 0x40, 0xcc, 0x3d, 0x8e, 0x38, 0x2a, 0x99, 0xb6, 0x51, 0x8c, 0xca, 0x9d, 0x22, 0xab, - 0x37, 0xc1, 0x60, 0xed, 0xa8, 0xb7, 0x73, 0x3d, 0x0f, 0x09, 0x2d, 0xf7, 0x99, 0xd2, 0x2d, 0x62, - 0x37, 0x95, 0xb5, 0x13, 0x8f, 0xad, 0xdb, 0x49, 0xd1, 0x13, 0xf0, 0x88, 0xdc, 0xee, 0x2b, 0x13, - 0xe6, 0x27, 0x8e, 0x76, 0xce, 0x6e, 0x5e, 0x09, 0xae, 0xc8, 0x19, 0x96, 0x05, 0x28, 0xa0, 0x13, - 0xd0, 0xaa, 0xb4, 0x44, 0x6b, 0x57, 0x94, 0x56, 0xe1, 0xbd, 0xa0, 0x1f, 0x16, 0x13, 0x6d, 0x69, - 0xa0, 0xd3, 0x73, 0x27, 0x31, 0x0c, 0xa3, 0x66, 0x51, 0x15, 0x80, 0x06, 0x37, 0x0c, 0xfc, 0x19, - 0x10, 0x44, 0xdd, 0x69, 0x68, 0x08, 0x52, 0xe0, 0x25, 0xa6, 0xe9, 0x82, 0xeb, 0x87, 0x3d, 0x5b, - 0x31, 0x94, 0x80, 0x69, 0xdc, 0x3b, 0x9e, 0xa9, 0x25, 0x65, 0x73, 0xe6, 0x4b, 0x72, 0xe7, 0x3e, - 0x88, 0xaa, 0x7c, 0xcc, 0x2d, 0x37, 0x60, 0x63, 0x2b, 0x03, 0x86, 0x07, 0x81, 0x9d, 0xc4, 0x48, - 0x2d, 0x20, 0xbd, 0x62, 0xe0, 0xde, 0x6f, 0xfe, 0xe5, 0xae, 0x90, 0xfa, 0xc3, 0xea, 0x51, 0xb6, - 0x22, 0x18, 0xb5, 0x18, 0xd8, 0xa9, 0x1d, 0x5d, 0xca, 0x1b, 0x62, 0x19, 0xa6, 0xd1, 0x94, 0x03, - 0xa4, 0x21, 0xa8, 0xa4, 0x66, 0x83, 0x91, 0x92, 0xac, 0x2a, 0xe3, 0xfb, 0x95, 0x71, 0x7b, 0x7f, - 0x7f, 0xe0, 0x25, 0xc3, 0x49, 0xd7, 0xe8, 0x85, 0xa3, 0xfd, 0x1b, 0x1e, 0x7d, 0x05, 0x59, 0x80, - 0x3b, 0xac, 0xb1, 0x54, 0x44, 0x08, 0x05, 0x11, 0x54, 0x56, 0x89, 0xdc, 0xef, 0xfa, 0x61, 0x77, - 0x1f, 0xb3, 0xe3, 0xfd, 0xf3, 0x17, 0xc7, 0xcf, 0x5f, 0xbf, 0x30, 0x46, 0x98, 0x07, 0x4b, 0x7f, - 0xed, 0x68, 0x9f, 0xba, 0x3e, 0x0b, 0xbe, 0x82, 0x1d, 0xe2, 0xfe, 0x78, 0xff, 0xb8, 0x0b, 0xde, - 0xef, 0x70, 0x9f, 0xc1, 0x06, 0x00, 0xd3, 0xa5, 0xca, 0xae, 0x71, 0x46, 0x9c, 0x8b, 0xc9, 0x2a, - 0x70, 0xb1, 0x2c, 0x64, 0x44, 0xc9, 0x41, 0x66, 0xf2, 0xd1, 0x63, 0xc1, 0x94, 0xc5, 0x52, 0x0d, - 0x11, 0xd9, 0x13, 0xf1, 0x2c, 0xe8, 0x2d, 0xbb, 0x8e, 0xee, 0xae, 0x89, 0x87, 0x51, 0x19, 0x6b, - 0xd8, 0x03, 0x88, 0xb3, 0x1c, 0xac, 0x8b, 0x67, 0x11, 0x97, 0x4e, 0xe3, 0xbf, 0xfe, 0x94, 0x4d, - 0xd2, 0x36, 0x63, 0xc3, 0xc7, 0x65, 0xc3, 0x47, 0xd1, 0x00, 0x9e, 0x62, 0xd9, 0x84, 0x6e, 0x43, - 0xa7, 0xe3, 0xe8, 0x46, 0x36, 0xa5, 0xa6, 0x01, 0xe0, 0x5e, 0x3d, 0x57, 0x50, 0x22, 0x16, 0xd2, - 0xe9, 0x3f, 0xce, 0x54, 0x43, 0x2a, 0xd5, 0x3a, 0x4d, 0x2e, 0x06, 0xb2, 0x69, 0x35, 0xfe, 0xd1, - 0x69, 0x37, 0x1a, 0x0c, 0x65, 0xcf, 0x46, 0xd6, 0x0b, 0x33, 0xf3, 0x0c, 0x83, 0xb5, 0xd0, 0x47, - 0xa7, 0xbd, 0x2f, 0x5d, 0xb5, 0xa5, 0x0d, 0x59, 0xd6, 0x69, 0x3f, 0x1a, 0xc9, 0xce, 0xb5, 0xfa, - 0x1c, 0x0c, 0x3b, 0x7b, 0x93, 0x0e, 0x5b, 0x4b, 0x1b, 0x75, 0x8a, 0x89, 0x13, 0x97, 0xbd, 0x22, - 0x87, 0xc2, 0x96, 0x0f, 0x59, 0xc3, 0x07, 0xd5, 0xf2, 0x26, 0x6b, 0x11, 0x31, 0xb9, 0x4e, 0xd9, - 0x85, 0x6c, 0x28, 0x28, 0xba, 0xc0, 0x7a, 0x2f, 0x2f, 0x72, 0xeb, 0xbd, 0x5c, 0x47, 0xc7, 0xbf, - 0x50, 0xdd, 0x1b, 0xd5, 0x5d, 0x9d, 0x7a, 0xe8, 0xa7, 0x44, 0x67, 0xce, 0xa8, 0x60, 0x73, 0x6f, - 0xa5, 0x79, 0xa9, 0xf9, 0x40, 0xcd, 0xb4, 0x6b, 0xc3, 0x2a, 0xe0, 0xb8, 0xdc, 0x28, 0x24, 0x6e, - 0x6f, 0xc9, 0xde, 0x34, 0xf0, 0xd2, 0xe9, 0x8d, 0x73, 0xe3, 0x05, 0x6e, 0x78, 0x43, 0xa5, 0x8c, - 0x29, 0x5e, 0xe7, 0xe4, 0x4f, 0xb0, 0xec, 0x72, 0x9d, 0x65, 0x32, 0x7d, 0x46, 0xf2, 0x5e, 0xae, - 0x93, 0x37, 0xed, 0x42, 0x9d, 0x3c, 0x8e, 0x22, 0x36, 0x73, 0xae, 0xae, 0x29, 0x3a, 0x2d, 0x64, - 0x9a, 0xa3, 0x69, 0x14, 0x13, 0x30, 0xf4, 0xb3, 0xe7, 0xe1, 0x4d, 0xec, 0xb8, 0x06, 0x24, 0x8c, - 0xd1, 0x2c, 0x25, 0xc3, 0xb1, 0xef, 0x97, 0x35, 0x23, 0xcd, 0xd2, 0x60, 0x13, 0x8e, 0xd9, 0xf1, - 0x0e, 0xf3, 0x23, 0x0c, 0x9f, 0x07, 0x83, 0x64, 0xd8, 0xf1, 0xf6, 0xf6, 0xf4, 0x7c, 0xfb, 0x95, - 0x77, 0x6d, 0x08, 0xf5, 0x3a, 0xf3, 0xe2, 0xc4, 0x00, 0xde, 0x00, 0xc7, 0xc4, 0x1c, 0x1d, 0xd4, - 0x08, 0xd6, 0xeb, 0xa5, 0xf1, 0x9e, 0xa3, 0x3d, 0xe4, 0x9c, 0x6b, 0x54, 0x36, 0x61, 0xba, 0x92, - 0x36, 0x37, 0x9b, 0x4d, 0x0d, 0x04, 0x3e, 0x86, 0x67, 0x78, 0xea, 0xf5, 0x7a, 0x1a, 0x1d, 0x44, - 0x9c, 0x07, 0x69, 0xbf, 0x59, 0x6f, 0x74, 0x4d, 0xa6, 0xd1, 0x88, 0xbb, 0x69, 0x13, 0x34, 0xd4, - 0x4d, 0x80, 0x93, 0x51, 0x74, 0x38, 0x18, 0xf8, 0xfc, 0x6d, 0xbf, 0x2f, 0xe3, 0x49, 0x0a, 0xf1, - 0xe4, 0x71, 0x9d, 0xd6, 0xd3, 0xb3, 0x59, 0x3c, 0xcb, 0x5d, 0x3e, 0x36, 0xa9, 0xd5, 0x3c, 0xb5, - 0x56, 0x00, 0xd6, 0x20, 0x70, 0x86, 0xd7, 0x00, 0x56, 0x3f, 0xae, 0xd2, 0xaa, 0x3a, 0x01, 0xc6, - 0x73, 0xe8, 0xdc, 0x63, 0x93, 0x1e, 0xe4, 0x9e, 0x2c, 0x73, 0xbd, 0xd7, 0xaa, 0xff, 0x73, 0x15, - 0xb7, 0xe0, 0x27, 0xa2, 0x66, 0xad, 0xe1, 0x66, 0xad, 0x21, 0x67, 0xad, 0x62, 0x67, 0x9b, 0x1b, - 0xdd, 0x12, 0xbd, 0xd4, 0x54, 0xe4, 0x54, 0xfe, 0xe2, 0xf2, 0x37, 0x8c, 0xd6, 0x35, 0x3d, 0x7f, - 0x06, 0xb7, 0xf3, 0x81, 0x20, 0x4f, 0x84, 0xb5, 0x3f, 0xff, 0xed, 0x57, 0x21, 0x8b, 0x31, 0x1e, - 0xfa, 0x15, 0x4b, 0xe3, 0xe7, 0xb9, 0x06, 0xf6, 0xa3, 0x9d, 0x44, 0x13, 0x4e, 0x51, 0xba, 0xb5, - 0xf6, 0xa3, 0x39, 0x5a, 0x28, 0x43, 0x84, 0x8a, 0x0b, 0x8a, 0x26, 0x4e, 0x6b, 0xcf, 0x35, 0xcf, - 0xc5, 0x1e, 0x30, 0x6a, 0x59, 0x07, 0x80, 0x5e, 0x7d, 0xee, 0xf8, 0x90, 0x6d, 0x26, 0x20, 0xa2, - 0x09, 0xe6, 0x8c, 0xfc, 0x56, 0x73, 0x1c, 0x84, 0x11, 0xa6, 0xdf, 0x50, 0x96, 0xff, 0x59, 0x36, - 0xaa, 0x0d, 0x86, 0x53, 0xde, 0x75, 0x40, 0x4f, 0x21, 0xd3, 0xf6, 0x1d, 0xf0, 0x00, 0x31, 0x04, - 0xb1, 0x49, 0x19, 0xcc, 0x94, 0xec, 0xd2, 0xc5, 0x9c, 0x81, 0xf3, 0xc0, 0xa2, 0xcc, 0xa9, 0x58, - 0x1d, 0xe6, 0x80, 0x6d, 0x33, 0xd2, 0x9a, 0xec, 0xab, 0xc0, 0xe5, 0xb7, 0x6a, 0xb4, 0x27, 0x7a, - 0x64, 0x5d, 0x34, 0xbe, 0x62, 0xd7, 0x6a, 0x6a, 0xe6, 0x80, 0x8d, 0x29, 0x1c, 0x10, 0x8a, 0x9e, - 0x82, 0x01, 0x60, 0xb3, 0xd6, 0x06, 0x20, 0x0e, 0xb1, 0xf3, 0xc0, 0xec, 0x88, 0xc2, 0xb8, 0x23, - 0x20, 0xd6, 0x07, 0x3e, 0x7e, 0x5c, 0x06, 0x10, 0x0b, 0xec, 0xa1, 0xc3, 0x8a, 0xc6, 0x47, 0x62, - 0xbc, 0x2a, 0xe9, 0x3a, 0x08, 0xb3, 0x3e, 0xc3, 0x33, 0x00, 0xb1, 0xda, 0x69, 0x0d, 0xba, 0x10, - 0x04, 0x16, 0x01, 0x5a, 0x98, 0x92, 0x2a, 0x13, 0xb4, 0x1e, 0x2e, 0x7e, 0xf4, 0x9c, 0x27, 0xda, - 0x13, 0x3a, 0xc4, 0xcf, 0x4e, 0xfc, 0xed, 0x5b, 0x19, 0xc2, 0xc1, 0x2b, 0x30, 0x2c, 0x8e, 0x76, - 0xad, 0x49, 0xd0, 0x31, 0x12, 0x10, 0x02, 0x03, 0x4d, 0x68, 0xff, 0xc0, 0xe9, 0xbd, 0x00, 0x13, - 0x95, 0x1a, 0x34, 0x30, 0x8c, 0x78, 0x4a, 0x8c, 0x5f, 0x01, 0x01, 0x29, 0x2a, 0x6b, 0xb6, 0xab, - 0xd1, 0xf9, 0x0d, 0x24, 0x86, 0xe7, 0x10, 0x82, 0xbd, 0x8c, 0x38, 0x58, 0xa4, 0x20, 0xf1, 0x67, - 0xed, 0x07, 0xe6, 0x42, 0xa7, 0x53, 0x27, 0xe0, 0x37, 0x44, 0x44, 0x8f, 0x9d, 0xa9, 0x81, 0x91, - 0x27, 0xa7, 0x53, 0x03, 0x02, 0xb5, 0x90, 0xb9, 0x4e, 0x2a, 0x73, 0x65, 0x7d, 0x8e, 0xab, 0x72, - 0x47, 0x18, 0x59, 0xa3, 0x37, 0xf4, 0x7c, 0xf0, 0x0d, 0xc1, 0x95, 0x79, 0xbd, 0x72, 0x0f, 0x8b, - 0x1e, 0x27, 0x49, 0xe4, 0x81, 0xb5, 0xe6, 0x65, 0x0c, 0xe4, 0xd1, 0x31, 0x33, 0x07, 0x5c, 0xb3, - 0xdc, 0x2d, 0x9d, 0xc1, 0xfd, 0x47, 0xc5, 0x97, 0x32, 0x7f, 0xe0, 0xe4, 0xcc, 0xd6, 0xb7, 0x6f, - 0xec, 0xd0, 0xfa, 0xf6, 0x6d, 0x76, 0x68, 0xe9, 0x40, 0x14, 0xe6, 0x4c, 0x0d, 0x11, 0xd4, 0xc3, - 0x90, 0xa9, 0x21, 0xb3, 0x64, 0x5a, 0x56, 0x6d, 0x47, 0x75, 0xcb, 0xfe, 0xf6, 0x2d, 0x6d, 0xc6, - 0x27, 0x39, 0xc4, 0x6a, 0x00, 0xb4, 0xd5, 0xd0, 0x75, 0x3a, 0x90, 0x80, 0x0e, 0x83, 0x3b, 0x09, - 0xe5, 0xcc, 0x90, 0x5c, 0x10, 0x0f, 0xff, 0x21, 0x52, 0x05, 0xa2, 0xed, 0xb1, 0x3d, 0x8d, 0x92, - 0x53, 0x99, 0x7f, 0xc3, 0xe3, 0x6c, 0x4f, 0x23, 0xe5, 0x11, 0xfb, 0xca, 0x49, 0x3c, 0x81, 0xcc, - 0x26, 0x19, 0x7a, 0x31, 0x1e, 0xc6, 0xf6, 0x86, 0x3c, 0x26, 0xb3, 0x70, 0x12, 0x11, 0xf0, 0x68, - 0xea, 0x74, 0x56, 0x1e, 0x7a, 0xea, 0x18, 0x59, 0x6b, 0x74, 0x64, 0xb8, 0x91, 0x8a, 0xbe, 0xcb, - 0x53, 0xf1, 0x7e, 0x28, 0xa3, 0x33, 0x69, 0x94, 0x2f, 0x9c, 0x11, 0x92, 0x44, 0xf4, 0x3d, 0x87, - 0x68, 0xbe, 0x9c, 0xf6, 0x1a, 0x18, 0xdb, 0xd3, 0x47, 0xa0, 0xaa, 0x82, 0x99, 0x37, 0x8e, 0xd5, - 0x11, 0xe7, 0x89, 0x8e, 0x13, 0xc2, 0x46, 0x6e, 0x1c, 0x90, 0x87, 0x34, 0xd4, 0x79, 0x05, 0xda, - 0xf7, 0xea, 0xf0, 0x22, 0xf5, 0x0a, 0xaf, 0xf6, 0x9c, 0x9a, 0x3e, 0xc7, 0x8e, 0xae, 0x73, 0x71, - 0xf5, 0xea, 0x9a, 0xde, 0xe2, 0x65, 0xcf, 0xba, 0xa6, 0xef, 0xc5, 0x8d, 0x7d, 0x4d, 0xdf, 0x88, - 0x9b, 0xaa, 0x9c, 0x9a, 0x3b, 0xaf, 0xf6, 0x6b, 0x34, 0x71, 0x5e, 0x83, 0xb5, 0x31, 0xfa, 0x7e, - 0x08, 0xb3, 0xf2, 0x7d, 0x06, 0x7e, 0xda, 0xe1, 0x1d, 0xaf, 0x5f, 0x4e, 0x0f, 0x53, 0x61, 0x61, - 0xbd, 0xc3, 0xfd, 0x18, 0x12, 0x88, 0x7e, 0xb9, 0x9c, 0xec, 0xdd, 0xe8, 0xbf, 0xd8, 0x0e, 0xa2, - 0x81, 0x6d, 0x73, 0xdf, 0x49, 0x9e, 0xb2, 0xbd, 0x32, 0xab, 0x58, 0x95, 0xb2, 0x5f, 0x81, 0x7b, - 0x5d, 0x5f, 0x3c, 0x32, 0xc6, 0x93, 0x78, 0x58, 0xbe, 0xea, 0xd2, 0x5b, 0xfa, 0x9e, 0xbe, 0xa1, - 0x3e, 0xe5, 0x34, 0xb9, 0xc6, 0xf6, 0x38, 0x8c, 0x92, 0x72, 0x19, 0x9e, 0x74, 0xe7, 0x88, 0x5f, - 0xd5, 0xaf, 0x2b, 0x09, 0x7c, 0x48, 0xa9, 0x7d, 0xeb, 0x5c, 0x19, 0x86, 0xf1, 0xe8, 0xba, 0xf3, - 0x76, 0x0d, 0xaa, 0x86, 0x50, 0x35, 0x05, 0x75, 0x8e, 0x1a, 0xf0, 0x05, 0x8c, 0x03, 0x7d, 0xee, - 0xbc, 0x55, 0x1b, 0xa7, 0x9f, 0x1c, 0x93, 0x1e, 0x23, 0xc1, 0x90, 0x30, 0x72, 0x67, 0x66, 0x87, - 0x1f, 0x3e, 0xef, 0x70, 0xf0, 0x93, 0x73, 0x69, 0xa7, 0xde, 0x5e, 0xf1, 0x6b, 0x10, 0xb7, 0x04, - 0x44, 0x11, 0x1c, 0x6b, 0x72, 0x05, 0x54, 0x09, 0xe1, 0x02, 0x34, 0x99, 0xc0, 0xa5, 0x7a, 0x2d, - 0x75, 0xab, 0x8f, 0x66, 0x07, 0xb6, 0x19, 0xe9, 0xf0, 0xf1, 0xe5, 0xd0, 0x04, 0x8a, 0x7f, 0x71, - 0xb8, 0x4e, 0x61, 0xb2, 0x8a, 0x95, 0x9b, 0x0a, 0x88, 0xda, 0xc1, 0xa9, 0x40, 0x6f, 0x1f, 0x3f, - 0xc6, 0xc9, 0x1c, 0xc7, 0xc3, 0x1b, 0x1b, 0x6e, 0x42, 0xd0, 0xc9, 0xbe, 0x03, 0x20, 0x30, 0xe5, - 0x17, 0xc7, 0x01, 0x35, 0x0e, 0x9e, 0x69, 0x40, 0xc5, 0xf3, 0x67, 0x1c, 0xa4, 0x4a, 0x6b, 0x6b, - 0x5a, 0xfb, 0x0b, 0xde, 0xec, 0xf5, 0xf1, 0x53, 0x5f, 0x08, 0xd2, 0x66, 0x03, 0xf6, 0x2c, 0xc7, - 0xe9, 0x7f, 0x7f, 0x88, 0x20, 0xbc, 0xe8, 0x06, 0xf4, 0xce, 0x11, 0x3d, 0xc0, 0x11, 0x50, 0x17, - 0x5c, 0x9b, 0x1c, 0xda, 0xf5, 0x3a, 0xb4, 0x8f, 0xd1, 0x72, 0xd0, 0xfe, 0xd1, 0x12, 0x6d, 0x26, - 0x66, 0xf0, 0xc4, 0x67, 0x88, 0xa0, 0xb1, 0x3e, 0x17, 0xc6, 0xf1, 0x8a, 0x03, 0x87, 0x82, 0x6b, - 0xe7, 0x8a, 0x51, 0x8f, 0x86, 0xd7, 0x68, 0xd0, 0xb5, 0x3d, 0xd5, 0x68, 0x8c, 0xd8, 0xb8, 0xcc, - 0x81, 0x0d, 0x46, 0x12, 0x5e, 0x80, 0x38, 0x04, 0x83, 0x32, 0x28, 0x91, 0x31, 0x66, 0xee, 0x05, - 0xbe, 0xae, 0x54, 0xb6, 0xa9, 0x66, 0x6a, 0xba, 0x6e, 0x7c, 0x09, 0xbd, 0xa0, 0xac, 0xc1, 0x6e, - 0xce, 0xf7, 0x1c, 0x77, 0xaf, 0xb7, 0x97, 0xec, 0x0d, 0x97, 0x9e, 0xe6, 0x7c, 0x2f, 0x6d, 0xfa, - 0xb4, 0xe7, 0x58, 0xf4, 0xd3, 0x2f, 0x3e, 0xc8, 0xcf, 0xb7, 0x6f, 0xdc, 0x71, 0x80, 0xaa, 0xcf, - 0xca, 0xc7, 0x52, 0x5c, 0xce, 0x75, 0x8a, 0xdc, 0xd5, 0xdb, 0x30, 0x05, 0xe0, 0x28, 0xb8, 0xbc, - 0x58, 0x60, 0xd3, 0x1a, 0x5f, 0x8f, 0x53, 0x81, 0xcf, 0xd8, 0xeb, 0xdf, 0xd7, 0x99, 0x29, 0x27, - 0xf6, 0x68, 0x7e, 0x0c, 0x62, 0xb1, 0xb8, 0x5e, 0x2c, 0x3e, 0x77, 0x32, 0x27, 0x29, 0xb1, 0xf1, - 0x53, 0x67, 0xf4, 0x19, 0xd3, 0x08, 0x52, 0xf9, 0x93, 0xbc, 0x7b, 0x7b, 0xf1, 0x9e, 0x88, 0x6c, - 0x0b, 0x92, 0xad, 0x47, 0x73, 0xcc, 0x33, 0xd4, 0xec, 0xfb, 0x5f, 0x62, 0x48, 0xc1, 0xe3, 0x04, - 0xbf, 0x24, 0x47, 0x2a, 0x2e, 0x79, 0xf2, 0x68, 0xee, 0x2f, 0x9e, 0x90, 0xca, 0x29, 0xd1, 0x4e, - 0x64, 0xa5, 0xb0, 0xf2, 0x1e, 0x1c, 0x77, 0x9b, 0xe4, 0x33, 0x76, 0x1c, 0xa3, 0x7d, 0xee, 0xf0, - 0x23, 0x14, 0x32, 0xdc, 0xf2, 0xbf, 0x02, 0x8d, 0x4e, 0xe0, 0x4a, 0x1e, 0x3f, 0x26, 0x60, 0x1a, - 0xa1, 0xc9, 0xc7, 0xe7, 0x60, 0xe1, 0x3a, 0x9f, 0x1f, 0x7e, 0x08, 0x20, 0xaf, 0x93, 0x85, 0xdd, - 0x3e, 0x9a, 0x1c, 0x02, 0xe9, 0xf2, 0x93, 0x04, 0x12, 0x7c, 0x1f, 0x53, 0xe7, 0x19, 0x19, 0xb2, - 0x29, 0xda, 0x25, 0x0e, 0xa2, 0xe4, 0xf2, 0x3e, 0x44, 0xc1, 0x2e, 0xf1, 0x02, 0x69, 0x9b, 0x64, - 0x71, 0x10, 0xec, 0x92, 0x8c, 0x10, 0xc2, 0xbe, 0x6c, 0x06, 0xd6, 0xf7, 0x3d, 0xd8, 0x84, 0xc0, - 0xc6, 0x98, 0xb1, 0x91, 0x4f, 0xfe, 0x15, 0x3c, 0xac, 0x10, 0x7c, 0xc9, 0x12, 0x33, 0x89, 0x36, - 0xc1, 0x15, 0x59, 0xe0, 0x7e, 0xc2, 0xb7, 0xd3, 0xa0, 0x8f, 0x90, 0x87, 0x72, 0x2a, 0x1e, 0xb7, - 0xc5, 0x23, 0x21, 0x8f, 0xe6, 0x22, 0x8d, 0x50, 0x64, 0x50, 0x8d, 0x84, 0xf4, 0x23, 0x0f, 0x72, - 0x62, 0x7f, 0xf6, 0x49, 0x94, 0xd3, 0x05, 0xd4, 0x9b, 0x0d, 0xa0, 0x89, 0x38, 0x2e, 0xf9, 0xe4, - 0xb9, 0x12, 0xe0, 0xc3, 0x06, 0x40, 0xba, 0x7c, 0x18, 0xb4, 0xc9, 0x51, 0xd6, 0x8a, 0x8b, 0x4e, - 0x0a, 0x80, 0xfa, 0xfd, 0x55, 0xa8, 0x1f, 0xe0, 0x9a, 0x14, 0xa1, 0x3e, 0x03, 0xed, 0xda, 0x91, - 0x7b, 0x98, 0xfd, 0x19, 0xf9, 0x17, 0x1d, 0xc0, 0x0c, 0x3c, 0x3b, 0x6f, 0xcb, 0xf7, 0x16, 0xf0, - 0x7e, 0xd2, 0xc6, 0xf7, 0x13, 0xf0, 0xce, 0x6d, 0x6b, 0x2f, 0xce, 0xcf, 0xdf, 0x9e, 0x3f, 0xd8, - 0x0f, 0x84, 0x12, 0x12, 0x70, 0x21, 0x2c, 0x00, 0x2a, 0x7c, 0x0d, 0xc2, 0x9b, 0x40, 0xbd, 0x38, - 0x60, 0x68, 0x99, 0xd2, 0x80, 0x20, 0x80, 0x58, 0x6a, 0x42, 0x08, 0x4f, 0x1c, 0x4c, 0x8f, 0xe8, - 0xa9, 0xb8, 0x74, 0xc6, 0x20, 0x2f, 0xfd, 0x3d, 0xe1, 0xaf, 0x0e, 0xbb, 0x47, 0x7f, 0x1c, 0x9f, - 0xbf, 0x79, 0xf5, 0xe6, 0xb7, 0x07, 0x87, 0xfb, 0xdd, 0x23, 0xf2, 0x3e, 0x7b, 0x57, 0xad, 0x37, - 0x23, 0x98, 0x42, 0x81, 0x30, 0x24, 0x22, 0x34, 0x41, 0x69, 0x10, 0xc9, 0x90, 0xb1, 0x0a, 0x54, - 0x66, 0xfe, 0x78, 0xc8, 0x74, 0x90, 0x9f, 0x98, 0x74, 0x21, 0xdc, 0x27, 0xde, 0x20, 0x08, 0x21, - 0xc6, 0x07, 0xb0, 0x90, 0xf0, 0x40, 0xb8, 0x3b, 0x14, 0x37, 0x3c, 0x5a, 0x00, 0xf1, 0x22, 0x90, - 0xf4, 0x4d, 0xfc, 0x44, 0x4a, 0x20, 0x8f, 0x3d, 0xfc, 0x9a, 0xe8, 0x04, 0x64, 0x0e, 0x6b, 0x37, - 0xea, 0xd5, 0x46, 0x79, 0x34, 0x9a, 0x49, 0x9f, 0x5c, 0x54, 0xb8, 0x43, 0x9d, 0x9e, 0x18, 0x5e, - 0x00, 0x09, 0xda, 0xe9, 0xfb, 0xd7, 0x67, 0x4e, 0x9f, 0x9e, 0xae, 0x06, 0x8b, 0x8e, 0x26, 0x5e, - 0xaf, 0x84, 0x28, 0x07, 0x7c, 0xe6, 0xaf, 0xe1, 0x2d, 0xc4, 0xae, 0x8f, 0x84, 0x47, 0x5c, 0x2c, - 0x7e, 0x24, 0x12, 0x5e, 0xce, 0x92, 0x80, 0xfb, 0x61, 0xd2, 0x31, 0x7a, 0x69, 0xc6, 0x17, 0x38, - 0x32, 0x22, 0xda, 0x39, 0x16, 0xea, 0x78, 0x0a, 0x77, 0x11, 0x14, 0x1c, 0xaa, 0x27, 0x11, 0x30, - 0x3c, 0x53, 0x53, 0xc9, 0xb0, 0x22, 0xe7, 0x4d, 0x8d, 0x83, 0xd6, 0xd3, 0x95, 0x61, 0x7a, 0x7b, - 0x07, 0x50, 0x31, 0xa7, 0xb4, 0x3e, 0x7e, 0x1e, 0x24, 0x3f, 0x74, 0x1f, 0x8c, 0xfe, 0xd0, 0x29, - 0xe7, 0x47, 0x54, 0xf8, 0x53, 0x5f, 0xdf, 0xb7, 0x3b, 0x0a, 0x4c, 0x45, 0x36, 0x3e, 0x38, 0x67, - 0xcb, 0xcc, 0x0c, 0xa8, 0x4c, 0x29, 0x99, 0x48, 0x20, 0xd3, 0x36, 0x06, 0x6d, 0xec, 0x10, 0x62, - 0xe1, 0xd4, 0x9a, 0x0e, 0xc1, 0x21, 0x7a, 0x4f, 0xf9, 0x1e, 0xbb, 0xa6, 0x90, 0xe6, 0x45, 0x83, - 0x6e, 0x59, 0xdb, 0x1b, 0x82, 0xb3, 0xc3, 0x98, 0x08, 0xef, 0xac, 0xec, 0xce, 0x86, 0x3b, 0x5d, - 0x84, 0xa5, 0x08, 0x65, 0xd9, 0xf8, 0xca, 0xae, 0xf8, 0xd3, 0xb5, 0x4e, 0x60, 0x60, 0x8c, 0x77, - 0x21, 0x2a, 0x41, 0x11, 0x95, 0x4f, 0xe7, 0x20, 0x8b, 0x65, 0xf6, 0xd4, 0xa7, 0x1e, 0xfc, 0xc1, - 0x3f, 0x1d, 0xda, 0xb1, 0x4e, 0xf5, 0x95, 0x4b, 0x38, 0xed, 0x61, 0x4b, 0xfc, 0xa7, 0x41, 0x3b, - 0x5a, 0x1d, 0xb1, 0x31, 0xf0, 0x18, 0x29, 0x54, 0xd1, 0x78, 0x7c, 0xc3, 0xd5, 0xd1, 0xf0, 0x0d, - 0x6c, 0x22, 0xde, 0x7e, 0xd5, 0x68, 0x7e, 0x65, 0x17, 0x9e, 0x90, 0xb9, 0xc7, 0x58, 0xf4, 0x75, - 0x34, 0x55, 0xf5, 0x55, 0x8d, 0xbf, 0x32, 0x88, 0xdc, 0x61, 0x19, 0x47, 0x53, 0xa7, 0x07, 0x6a, - 0x28, 0xe6, 0xc5, 0xe5, 0x21, 0xc4, 0x1c, 0xe0, 0x92, 0x61, 0xb5, 0x3d, 0x7f, 0xdf, 0xc6, 0x15, - 0xf1, 0x2a, 0xdf, 0x93, 0x8c, 0x9c, 0x60, 0x33, 0x78, 0xcb, 0xf3, 0x87, 0xae, 0x70, 0x41, 0x07, - 0x62, 0xf4, 0x7c, 0xce, 0x22, 0x81, 0xff, 0x1d, 0xb0, 0x2b, 0x7d, 0x4e, 0x9e, 0xc3, 0x80, 0xdd, - 0x78, 0x92, 0x5b, 0x34, 0xa2, 0x43, 0x6a, 0xea, 0xf7, 0x51, 0x0e, 0xe4, 0xae, 0xcb, 0xa7, 0xaf, - 0x43, 0x97, 0x43, 0x8e, 0xd0, 0x59, 0x1a, 0x43, 0x07, 0x34, 0x4f, 0x3a, 0x02, 0x3c, 0x06, 0x55, - 0x39, 0x13, 0xf4, 0xbe, 0x63, 0x11, 0x1b, 0xc5, 0x22, 0x0b, 0xf8, 0x70, 0x7e, 0x76, 0x01, 0x5b, - 0xe8, 0x0d, 0x65, 0x5b, 0x59, 0x2a, 0x92, 0x91, 0x0d, 0x8c, 0x45, 0x27, 0x04, 0xa7, 0xcb, 0x54, - 0x14, 0x53, 0x03, 0x8c, 0x19, 0xb3, 0x18, 0x1f, 0x7d, 0x5d, 0x16, 0xe4, 0x1f, 0x41, 0x08, 0xa0, - 0x89, 0xd2, 0xa0, 0xe3, 0x88, 0xf2, 0xdb, 0xaa, 0x39, 0x80, 0xb0, 0x7d, 0x89, 0x9f, 0xf2, 0xf8, - 0x38, 0x5e, 0x0e, 0x79, 0xe0, 0x8c, 0xa3, 0x9b, 0xb5, 0x01, 0x2a, 0x0d, 0x11, 0x1d, 0x51, 0x0f, - 0x23, 0x1c, 0x0f, 0x6b, 0x35, 0x9e, 0xfb, 0xab, 0xa8, 0x87, 0xff, 0x06, 0x0d, 0x5c, 0xd7, 0xbd, - 0x91, 0x4a, 0x64, 0x8a, 0x52, 0x65, 0x51, 0x70, 0xda, 0x62, 0x96, 0xba, 0x9b, 0x3d, 0x9a, 0x8a, - 0x81, 0x45, 0x7c, 0x55, 0x64, 0x90, 0x5f, 0xe2, 0x29, 0x87, 0x1b, 0x42, 0x9a, 0x10, 0x84, 0x09, - 0x91, 0xdf, 0x4c, 0xc3, 0x63, 0x90, 0x2e, 0x27, 0x8c, 0x88, 0x2f, 0xd6, 0x4b, 0x03, 0x29, 0xec, - 0x63, 0x07, 0xcd, 0x7b, 0xce, 0x42, 0x26, 0xa2, 0x2a, 0xb6, 0x05, 0x9b, 0x22, 0x44, 0x05, 0x65, - 0xf2, 0x3e, 0x09, 0x54, 0x53, 0x72, 0xfb, 0xf1, 0x63, 0x64, 0x69, 0x08, 0xc0, 0x7e, 0x38, 0x28, - 0x6b, 0xef, 0xc1, 0x92, 0xc7, 0x22, 0x9a, 0x23, 0x4f, 0xb4, 0x3d, 0x88, 0x31, 0x9f, 0xa0, 0x3b, - 0x12, 0x28, 0x2a, 0xac, 0xe4, 0x11, 0x82, 0xb2, 0xde, 0x10, 0xd6, 0x2d, 0x80, 0x78, 0x05, 0xec, - 0xd0, 0x65, 0x49, 0xed, 0x62, 0xa0, 0xe9, 0x20, 0x00, 0x1b, 0x09, 0x1e, 0xcd, 0xe5, 0x70, 0x2a, - 0x5f, 0xd8, 0x69, 0x40, 0x56, 0x98, 0xd2, 0x55, 0xa2, 0x92, 0x5c, 0x0c, 0x3a, 0xbc, 0x78, 0xbb, - 0x3c, 0x47, 0x31, 0xd8, 0x30, 0xd6, 0x19, 0xd6, 0xe0, 0x44, 0x75, 0x62, 0xb1, 0x60, 0xf1, 0x2c, - 0xe8, 0x91, 0x4c, 0x3c, 0xc7, 0x20, 0xe8, 0x82, 0xff, 0x71, 0x96, 0xc0, 0xaa, 0xc2, 0x6e, 0xe0, - 0x5e, 0x4c, 0x07, 0xef, 0x20, 0x99, 0xe6, 0x85, 0x28, 0xca, 0x22, 0x99, 0xae, 0xea, 0x1f, 0x0f, - 0xac, 0x65, 0x74, 0x8a, 0xb1, 0x55, 0x16, 0x46, 0xea, 0x49, 0x34, 0x9b, 0x17, 0x92, 0x1f, 0xc4, - 0xac, 0xb8, 0x5d, 0x91, 0x55, 0x57, 0xfa, 0x07, 0x21, 0xfb, 0x0d, 0xf3, 0x12, 0xd2, 0xe7, 0x10, - 0x74, 0x95, 0xd3, 0x18, 0x46, 0xdb, 0x5b, 0x2d, 0x6e, 0x4b, 0x8e, 0xec, 0x69, 0xf9, 0x70, 0x86, - 0xce, 0x47, 0x3c, 0x19, 0x86, 0x10, 0x73, 0x60, 0xf8, 0xa3, 0x51, 0x7c, 0x81, 0x9b, 0x47, 0x31, - 0xc4, 0xbf, 0xf9, 0x88, 0x06, 0xf2, 0x8a, 0x8d, 0x90, 0x66, 0x41, 0xf1, 0xf5, 0xee, 0x36, 0x87, - 0xe4, 0x3f, 0x50, 0xcb, 0x27, 0x06, 0xf6, 0x94, 0xf5, 0x4e, 0x21, 0xd2, 0x81, 0xbe, 0xe8, 0x61, - 0x26, 0x8c, 0x75, 0xa6, 0xb4, 0x9d, 0x47, 0x11, 0xe6, 0x92, 0x3a, 0xe4, 0x96, 0xe0, 0x3a, 0x93, - 0x67, 0xe5, 0x62, 0x42, 0xa6, 0xa5, 0x44, 0xac, 0x7d, 0x27, 0xef, 0xbd, 0x11, 0x0f, 0x27, 0x90, - 0xf6, 0xe5, 0xca, 0x0a, 0x7c, 0x27, 0x11, 0x01, 0x54, 0x2d, 0x5e, 0xd5, 0xf5, 0xf6, 0x96, 0x65, - 0x96, 0x65, 0xcc, 0x1f, 0x5a, 0x68, 0x75, 0x91, 0xc5, 0x86, 0x12, 0x1c, 0x5a, 0x10, 0x8f, 0xe5, - 0x2c, 0xa9, 0xf6, 0xda, 0x13, 0x75, 0xf1, 0x4f, 0xa7, 0x20, 0x60, 0xb2, 0x76, 0x8f, 0x15, 0xd9, - 0x17, 0x53, 0x98, 0x0b, 0xcb, 0xb3, 0x1c, 0x84, 0x15, 0xd8, 0x87, 0x07, 0xa2, 0xb0, 0x04, 0xca, - 0x64, 0x19, 0xd2, 0x5c, 0x25, 0x81, 0xa0, 0xbb, 0x42, 0xea, 0xb0, 0x9e, 0x04, 0x14, 0x47, 0x11, - 0x92, 0x4c, 0x08, 0xd8, 0xd4, 0x1b, 0xb0, 0x24, 0x8c, 0xc0, 0x91, 0x78, 0xe3, 0x6e, 0xc8, 0x22, - 0xd7, 0xb8, 0x89, 0xbc, 0x84, 0x0b, 0x5f, 0xa5, 0x62, 0xe7, 0x1c, 0x2b, 0x96, 0x23, 0x5d, 0x83, - 0xdf, 0xf2, 0xde, 0x89, 0x8c, 0x93, 0xe5, 0x09, 0x82, 0xb6, 0x95, 0x67, 0xda, 0x4b, 0xe6, 0x61, - 0x2d, 0x03, 0x4c, 0x14, 0x02, 0x12, 0x74, 0x21, 0x6d, 0x02, 0x4a, 0x06, 0x16, 0x60, 0x21, 0x2a, - 0xf8, 0x45, 0x7b, 0x19, 0x8a, 0x17, 0xd4, 0xc0, 0xa0, 0x06, 0xe2, 0x64, 0xe5, 0x6e, 0x90, 0x3f, - 0xef, 0x02, 0xc1, 0x9a, 0xdb, 0x1d, 0x20, 0xec, 0x4e, 0x08, 0x91, 0xff, 0xdd, 0xb5, 0xd0, 0xd9, - 0x9b, 0xbb, 0x40, 0x64, 0x8a, 0x73, 0x27, 0xd0, 0x87, 0x1d, 0x60, 0xde, 0xdc, 0x09, 0x23, 0x04, - 0xe9, 0x2e, 0xfa, 0x81, 0x89, 0xbb, 0x03, 0x04, 0x7d, 0xe0, 0x26, 0x08, 0x96, 0xed, 0x14, 0x00, - 0x16, 0x66, 0xb7, 0xcf, 0x21, 0x24, 0x32, 0x0e, 0xc7, 0xa2, 0xa2, 0x9b, 0x96, 0x25, 0x45, 0x75, - 0x37, 0x5f, 0xe9, 0xbc, 0xa6, 0x99, 0x63, 0x77, 0x00, 0x58, 0x14, 0xae, 0x40, 0x8f, 0x8c, 0x5b, - 0x9a, 0xf9, 0xf8, 0x95, 0xf6, 0x19, 0x15, 0x21, 0x01, 0xc8, 0x51, 0x66, 0x68, 0xd7, 0xce, 0xb2, - 0x76, 0x51, 0x14, 0x75, 0xde, 0x09, 0x41, 0x83, 0xb3, 0x1e, 0x82, 0x8c, 0xa3, 0x30, 0x09, 0x21, - 0xff, 0x78, 0xc6, 0x7c, 0x1e, 0x41, 0x3c, 0xff, 0x07, 0xa8, 0xb1, 0x4c, 0x4d, 0xd0, 0xdf, 0x4e, - 0x41, 0xb4, 0xc5, 0x2b, 0x41, 0x37, 0x43, 0xc8, 0x73, 0x62, 0x1e, 0x4d, 0x41, 0xd0, 0xf1, 0x5b, - 0x45, 0xc2, 0x66, 0x93, 0x72, 0x18, 0xc9, 0x6f, 0x59, 0x80, 0x27, 0x8c, 0x26, 0xc1, 0xb2, 0x27, - 0xd6, 0x35, 0xbd, 0x9d, 0xf7, 0x16, 0x0b, 0x25, 0x5a, 0x61, 0x20, 0x5e, 0x52, 0x70, 0x04, 0x5a, - 0x78, 0x50, 0x24, 0x82, 0x4a, 0x65, 0x61, 0x9d, 0x65, 0xf5, 0x41, 0xf9, 0x30, 0xcb, 0x34, 0x9f, - 0x66, 0x35, 0xef, 0x65, 0x2f, 0xc4, 0xec, 0xf5, 0xba, 0x28, 0x09, 0x26, 0xce, 0xe7, 0xf5, 0x1f, - 0x00, 0x38, 0x30, 0x5d, 0x3e, 0xa0, 0x44, 0x7c, 0xfd, 0xff, 0xd1, 0x9c, 0x2f, 0x7e, 0xa1, 0xe2, - 0xab, 0x63, 0xf2, 0x5e, 0xff, 0xdc, 0x11, 0xd3, 0x48, 0x77, 0xb7, 0xfc, 0xe2, 0x92, 0x88, 0x10, - 0x9d, 0x64, 0x21, 0x84, 0x7b, 0x05, 0x49, 0x89, 0x08, 0x34, 0x77, 0x7a, 0x67, 0xab, 0xd8, 0xf2, - 0x1c, 0xaa, 0xc9, 0x2a, 0xaa, 0xa9, 0x71, 0xd9, 0xaf, 0x5b, 0xb6, 0xc0, 0x33, 0xb8, 0x0b, 0xcf, - 0x24, 0x87, 0x67, 0x22, 0xf0, 0xe4, 0x5b, 0x90, 0x0c, 0x16, 0x78, 0x7c, 0x79, 0x97, 0x24, 0xa6, - 0xf5, 0x4e, 0x59, 0xfe, 0x29, 0x3a, 0x10, 0xe3, 0xeb, 0x07, 0x62, 0x3c, 0x7f, 0x20, 0x96, 0x88, - 0xf3, 0x1f, 0x75, 0x26, 0x46, 0x31, 0x23, 0x7f, 0xe0, 0x88, 0x03, 0x04, 0x65, 0x35, 0x53, 0x87, - 0x8b, 0xaf, 0xb3, 0xfc, 0x13, 0x82, 0x0a, 0x19, 0x08, 0x2c, 0x5f, 0x6e, 0xd1, 0x45, 0x56, 0xfe, - 0x4e, 0xbc, 0x76, 0xa2, 0x8e, 0x5a, 0x73, 0xef, 0xa1, 0xa0, 0xb6, 0x89, 0xe3, 0x61, 0x8c, 0x3c, - 0x97, 0xe1, 0x2f, 0x8e, 0x14, 0xaf, 0xbd, 0x70, 0xf1, 0x15, 0x2d, 0x6e, 0x20, 0x14, 0xec, 0xf1, - 0x39, 0xef, 0x33, 0x48, 0xa1, 0xcb, 0xf9, 0x49, 0x0d, 0x21, 0xe5, 0xe5, 0xdc, 0xb7, 0xb5, 0x20, - 0x7b, 0x1d, 0xbc, 0xc0, 0x5c, 0x65, 0xcb, 0x58, 0x2c, 0x41, 0xaf, 0x1f, 0xf9, 0xe1, 0x98, 0x0a, - 0x8a, 0xad, 0xb6, 0x36, 0xd1, 0xdb, 0xe9, 0xb6, 0x79, 0xf2, 0x70, 0x21, 0x44, 0xa7, 0xee, 0x6e, - 0xcb, 0x45, 0x7c, 0x04, 0xeb, 0xac, 0xac, 0xd8, 0x99, 0x8c, 0xf1, 0x47, 0xa2, 0xde, 0x49, 0x52, - 0x80, 0xd0, 0xa0, 0xd6, 0x8b, 0x52, 0x43, 0x1f, 0xf6, 0x87, 0x5b, 0x8d, 0x21, 0x85, 0xcc, 0x2d, - 0x98, 0xed, 0x5e, 0xac, 0xb9, 0x3e, 0x5a, 0x1e, 0x9d, 0x17, 0x8d, 0x5b, 0x83, 0x54, 0x35, 0x4c, - 0x10, 0x5a, 0x4c, 0x52, 0x30, 0xde, 0x3e, 0x17, 0xc1, 0x4e, 0x27, 0x49, 0xcf, 0x29, 0x84, 0x08, - 0x29, 0x16, 0x89, 0xd0, 0x1f, 0xf1, 0xc7, 0x2a, 0x06, 0xdd, 0x48, 0x21, 0x20, 0x80, 0x5c, 0x50, - 0xec, 0x66, 0xee, 0x71, 0x8c, 0x39, 0x16, 0x24, 0x3d, 0x2b, 0x5f, 0xa2, 0x2b, 0x48, 0x28, 0xd4, - 0x57, 0xea, 0x20, 0xd0, 0x49, 0xc5, 0xa7, 0x40, 0x9c, 0x91, 0x50, 0x2a, 0xf5, 0xcc, 0x38, 0x0b, - 0x51, 0xe0, 0xf7, 0x07, 0x08, 0xc2, 0xd2, 0x94, 0x81, 0x77, 0x80, 0x87, 0x63, 0x8d, 0x2a, 0x1e, - 0x7e, 0x17, 0x52, 0xd9, 0xd3, 0x9c, 0x74, 0xae, 0x08, 0xe2, 0x76, 0x4d, 0x5c, 0xf2, 0x6b, 0x79, - 0x00, 0xf1, 0x9f, 0x3e, 0xcd, 0xce, 0xf8, 0xb0, 0xf2, 0xc2, 0xe3, 0x2e, 0xc7, 0x4f, 0x14, 0x4d, - 0x5c, 0xe1, 0x11, 0x54, 0x80, 0x69, 0x5c, 0x02, 0xde, 0x24, 0x17, 0xee, 0x3d, 0x2b, 0x27, 0xce, - 0x5a, 0x98, 0x09, 0x70, 0x6b, 0xe7, 0xdc, 0xb4, 0x20, 0x69, 0x55, 0x49, 0x09, 0xc4, 0xa2, 0x49, - 0x7e, 0xbe, 0xb5, 0xc1, 0xc1, 0x96, 0xb1, 0x80, 0x4d, 0x71, 0x24, 0x9a, 0x6c, 0x76, 0x80, 0x23, - 0xc7, 0x70, 0x41, 0x38, 0xd4, 0x7c, 0xca, 0xcd, 0x23, 0xd0, 0x0e, 0x75, 0x94, 0xfc, 0x56, 0x7a, - 0x6e, 0x11, 0x0f, 0x82, 0xf3, 0xce, 0xe7, 0x49, 0x19, 0x0b, 0xc5, 0x09, 0xee, 0x61, 0x1a, 0xcc, - 0x76, 0x12, 0x2c, 0x02, 0x49, 0x23, 0x8f, 0xc7, 0x86, 0xd2, 0xf7, 0x6b, 0x58, 0xc0, 0x90, 0xfe, - 0x9c, 0x5f, 0x25, 0xea, 0x74, 0x52, 0xd5, 0x50, 0x64, 0x0b, 0xde, 0x41, 0x43, 0x16, 0x01, 0xc8, - 0xd6, 0xdb, 0x5c, 0xd3, 0x4c, 0x36, 0xcd, 0x64, 0xe4, 0x01, 0x62, 0x1a, 0xb8, 0x27, 0xc8, 0x1e, - 0x48, 0x20, 0xa8, 0x09, 0xd4, 0x4f, 0xf0, 0xb4, 0x33, 0x8b, 0x2f, 0x20, 0x6f, 0xc8, 0x05, 0x17, - 0x41, 0x61, 0x68, 0x91, 0x9b, 0x5b, 0xdf, 0xc8, 0xee, 0x72, 0xe7, 0xe9, 0xb2, 0x08, 0xd1, 0x9b, - 0x3a, 0xcb, 0x20, 0x9d, 0xf6, 0xa6, 0xcb, 0x14, 0x16, 0x43, 0x65, 0xe9, 0x5d, 0xae, 0xae, 0x95, - 0x23, 0x08, 0xb6, 0x64, 0x5e, 0xbd, 0xe9, 0x6a, 0x9e, 0x95, 0x56, 0xe9, 0xca, 0x2a, 0x48, 0x57, - 0x99, 0x12, 0xa6, 0xb6, 0x83, 0xf4, 0xe4, 0xa4, 0x3c, 0xf7, 0xdc, 0x36, 0x24, 0xa9, 0x2e, 0x0d, - 0xe0, 0x12, 0xd0, 0xdb, 0xb8, 0x8d, 0xde, 0x90, 0x45, 0x09, 0xbd, 0xe5, 0xe2, 0x36, 0x1c, 0xd3, - 0x59, 0xd6, 0xf8, 0x91, 0xce, 0xd2, 0xd6, 0x8f, 0x0b, 0x5d, 0x5f, 0xe3, 0x93, 0x9f, 0xe7, 0x13, - 0x97, 0x27, 0x15, 0x73, 0x79, 0xc0, 0xee, 0x23, 0x79, 0x61, 0x15, 0x11, 0xb2, 0x8b, 0x87, 0x00, - 0x4f, 0x2d, 0x3d, 0x8c, 0xd4, 0xf0, 0x0c, 0x53, 0xf5, 0x8b, 0x82, 0xdd, 0xad, 0x04, 0xb8, 0xe5, - 0x15, 0x79, 0x8d, 0xe9, 0x4c, 0xb6, 0xcc, 0x54, 0xcb, 0x2c, 0x06, 0xa7, 0xb8, 0x55, 0x9a, 0xe8, - 0xc6, 0x41, 0xbf, 0x4a, 0xb2, 0x8b, 0xb2, 0x6f, 0x99, 0xa5, 0xdf, 0x91, 0xf6, 0xef, 0x90, 0xa3, - 0xdd, 0xa3, 0xd2, 0xa0, 0x92, 0xb5, 0xef, 0x24, 0xa6, 0x77, 0x4c, 0x76, 0x67, 0x66, 0x7a, 0x7f, - 0x64, 0x8a, 0x68, 0x26, 0x49, 0xb3, 0xb5, 0x62, 0x21, 0x0e, 0x06, 0xff, 0x23, 0x98, 0x6e, 0x24, - 0xd3, 0x3f, 0x80, 0xed, 0x36, 0x23, 0x24, 0x8a, 0x21, 0xc8, 0x84, 0xa5, 0x24, 0x5f, 0x5d, 0x83, - 0x41, 0x34, 0x3b, 0xc1, 0x21, 0xef, 0x04, 0x20, 0xc7, 0xc9, 0x8a, 0x1c, 0x07, 0x52, 0x82, 0xb5, - 0x8b, 0xf4, 0x8b, 0x0c, 0x28, 0xc0, 0x20, 0xbf, 0x01, 0x48, 0xa4, 0xfa, 0xf6, 0x7a, 0xb2, 0xf8, - 0x7f, 0x11, 0x34, 0xe2, 0xec, 0xea, 0xeb, 0x08, 0x18, 0x2b, 0x38, 0x85, 0x1b, 0xb7, 0xcc, 0xad, - 0x8a, 0x94, 0x1b, 0xab, 0x5e, 0xff, 0xcb, 0x99, 0xe8, 0x27, 0xe2, 0x5b, 0x01, 0x9e, 0xeb, 0xac, - 0xbe, 0x19, 0x44, 0xbe, 0xff, 0xcd, 0xf7, 0xd5, 0x9f, 0x8b, 0xb9, 0xe3, 0x5b, 0x03, 0x2b, 0x36, - 0x32, 0xfd, 0x8e, 0x00, 0xac, 0x08, 0xd2, 0xb2, 0xf5, 0x87, 0x42, 0x1a, 0x46, 0x9d, 0xd8, 0xe6, - 0xef, 0x35, 0xc3, 0xb6, 0xe1, 0x4a, 0x6c, 0xa3, 0x81, 0xbf, 0xd4, 0x21, 0x7e, 0x6f, 0x83, 0x58, - 0x0d, 0xa3, 0x55, 0xc7, 0x6b, 0xcd, 0xa8, 0xb7, 0xf0, 0x0a, 0xbd, 0x55, 0x00, 0xb1, 0x9a, 0xc4, - 0xb2, 0x0c, 0x8b, 0x54, 0x8d, 0x6a, 0x9d, 0x1c, 0xe0, 0x8f, 0x88, 0xd4, 0x0d, 0x1b, 0xef, 0xac, - 0x3a, 0xdc, 0x35, 0x5a, 0xa4, 0x89, 0x1d, 0xf0, 0xd1, 0x82, 0xc7, 0x66, 0x15, 0x3a, 0x4c, 0xfc, - 0x9d, 0x11, 0x98, 0xc0, 0x52, 0x17, 0xa3, 0x55, 0x95, 0x77, 0xb6, 0x51, 0xc3, 0xb6, 0xc6, 0x01, - 0xb1, 0xc4, 0xef, 0x8f, 0xb4, 0xf0, 0xda, 0x30, 0xac, 0x4b, 0xe8, 0xb1, 0xea, 0x67, 0xb0, 0x72, - 0x83, 0x58, 0xa6, 0xd1, 0x38, 0xb3, 0xe0, 0x6a, 0x9f, 0x59, 0x36, 0x20, 0x75, 0xd6, 0xc2, 0xdb, - 0x03, 0xa3, 0xa6, 0x7a, 0xc4, 0x34, 0x56, 0xfd, 0x12, 0x86, 0xfd, 0x0e, 0x38, 0xc0, 0xf0, 0x5a, - 0x9d, 0xb4, 0x0c, 0x13, 0x51, 0x38, 0xa8, 0x91, 0x26, 0xac, 0x0f, 0xdb, 0x41, 0x9c, 0x4f, 0x61, - 0xb7, 0xbf, 0xd7, 0xb1, 0x47, 0x60, 0x62, 0x56, 0x71, 0xa4, 0x89, 0xdf, 0x5d, 0xb0, 0xaa, 0xd8, - 0x5a, 0x15, 0x5b, 0xc5, 0x4b, 0xdd, 0x38, 0xa8, 0x2b, 0x08, 0xdc, 0x1d, 0x8e, 0x68, 0x11, 0xa4, - 0x95, 0xd5, 0x3a, 0x05, 0xf2, 0xd4, 0x7f, 0xc7, 0x5f, 0x23, 0x11, 0x8d, 0xb6, 0x69, 0xd8, 0x30, - 0x77, 0x13, 0x3f, 0x6d, 0x41, 0x33, 0x68, 0xc7, 0x9b, 0xba, 0x21, 0xaf, 0x35, 0x44, 0x47, 0x41, - 0x55, 0x91, 0x1c, 0x6a, 0x68, 0x15, 0xe9, 0x8c, 0xd7, 0x53, 0xab, 0x79, 0x69, 0x59, 0xbf, 0x5b, - 0x88, 0x68, 0x0b, 0x27, 0x10, 0xe8, 0x37, 0x1b, 0x02, 0x0b, 0xd8, 0x03, 0x0e, 0x81, 0xbd, 0x5c, - 0x02, 0x2d, 0x5a, 0xbf, 0x4b, 0x9e, 0xd4, 0xc5, 0x0c, 0xb0, 0x3d, 0xd8, 0x97, 0x61, 0x03, 0xe4, - 0x01, 0x39, 0xc0, 0x0f, 0x0b, 0xdf, 0x4c, 0x13, 0x03, 0x2c, 0x03, 0xf8, 0x09, 0x74, 0x46, 0xb2, - 0x21, 0x22, 0x62, 0x8b, 0xcd, 0x96, 0xb8, 0xa9, 0xab, 0x06, 0xc1, 0x21, 0x00, 0x42, 0xea, 0xb7, - 0xf0, 0x13, 0xc6, 0x62, 0x8b, 0x29, 0x31, 0xb3, 0xcd, 0xd7, 0x48, 0x6f, 0x0b, 0x76, 0x9f, 0xff, - 0x99, 0x15, 0x51, 0x00, 0x5b, 0x97, 0xeb, 0xf4, 0x6b, 0x0c, 0xea, 0x57, 0x81, 0x34, 0x72, 0xff, - 0x6f, 0xbf, 0x1c, 0xdd, 0xf5, 0x93, 0x36, 0x07, 0xd4, 0xb6, 0x4e, 0x5b, 0x97, 0xcd, 0x53, 0xeb, - 0x00, 0x1f, 0xea, 0xa7, 0xad, 0x63, 0x9b, 0xda, 0xea, 0x25, 0xbe, 0x06, 0x6d, 0x5e, 0xda, 0x56, - 0xae, 0xa1, 0x45, 0x6d, 0xa0, 0xec, 0x41, 0xae, 0x05, 0x7f, 0x15, 0xc4, 0xba, 0x6c, 0xe6, 0x5a, - 0x70, 0x96, 0xd7, 0x56, 0x83, 0x5a, 0xa7, 0xb5, 0x3c, 0x1c, 0xad, 0x5e, 0x5a, 0xcd, 0xd3, 0xda, - 0x25, 0x8c, 0x6f, 0x5c, 0x5a, 0x62, 0xef, 0x44, 0x6e, 0x5e, 0xbd, 0xab, 0x7d, 0x22, 0x4a, 0x69, - 0x21, 0xc9, 0x4a, 0x77, 0x4f, 0xb6, 0x57, 0x40, 0xfe, 0x46, 0x4a, 0xa1, 0x6a, 0xab, 0xe2, 0xf6, - 0x7f, 0x50, 0xbf, 0x5b, 0xa8, 0x08, 0x2d, 0x54, 0xae, 0x26, 0x3e, 0xd6, 0x50, 0xbf, 0x61, 0x18, - 0x68, 0xa3, 0x8d, 0x1f, 0x35, 0x14, 0xca, 0x1a, 0xce, 0x7d, 0xd0, 0x00, 0x40, 0xfc, 0xf9, 0x9f, - 0x03, 0xd4, 0xc6, 0xe6, 0xdf, 0x20, 0x9f, 0xa7, 0x56, 0xf5, 0x77, 0xd4, 0x7d, 0xd9, 0x66, 0x19, - 0x75, 0x54, 0x02, 0xb4, 0x28, 0xe2, 0xe7, 0x86, 0xd0, 0xc8, 0x88, 0x1b, 0x34, 0x26, 0xad, 0xba, - 0xb4, 0x18, 0xa0, 0x8d, 0x68, 0x3f, 0xaa, 0x68, 0x4a, 0x0e, 0x84, 0x55, 0xa9, 0x2a, 0x2b, 0x83, - 0x3d, 0x96, 0xb0, 0x08, 0xad, 0xfa, 0xe5, 0xdf, 0xaa, 0xe6, 0x2d, 0x24, 0x11, 0x0e, 0x04, 0xe3, - 0x64, 0xd4, 0xc4, 0xd2, 0x26, 0x10, 0x15, 0x09, 0xd8, 0x00, 0x62, 0x42, 0x67, 0x03, 0x60, 0xa0, - 0x43, 0xf4, 0x2a, 0xf8, 0x9f, 0x67, 0xbf, 0x0e, 0x2e, 0x95, 0x66, 0x57, 0x0b, 0x44, 0xfb, 0x02, - 0x04, 0x0a, 0x45, 0xdb, 0x15, 0xdf, 0xa3, 0x7c, 0x42, 0x0b, 0x8f, 0xec, 0xee, 0x11, 0x2d, 0xad, - 0xfc, 0xee, 0x8c, 0xfa, 0xa5, 0x19, 0x79, 0x3d, 0xdc, 0x17, 0xbf, 0x6d, 0xfd, 0xbf, 0xe8, 0xc4, - 0x80, 0x4e, 0xf2, 0x5a, 0x00, 0x00 + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0x13, 0xd5, 0x3c, 0x6b, 0x7b, 0xda, 0x38, + 0xb3, 0xdf, 0xf3, 0x2b, 0x54, 0x77, 0xb7, 0xc5, 0x8b, 0x31, 0xb6, 0xb9, 0x06, 0xe2, 0xf4, 0x21, + 0xe4, 0x42, 0xb6, 0xb9, 0x93, 0xa4, 0x4d, 0xf3, 0xe6, 0xe9, 0x1a, 0x2c, 0xb0, 0x13, 0x63, 0x53, + 0xdb, 0x40, 0x08, 0xe5, 0xbf, 0x9f, 0x19, 0xc9, 0x06, 0x73, 0x49, 0x93, 0xf6, 0x74, 0xdf, 0xf3, + 0x9c, 0xed, 0x06, 0xdb, 0xd2, 0x48, 0x1a, 0xcd, 0x8c, 0xe6, 0x26, 0xd9, 0x5b, 0x6f, 0x76, 0x4f, + 0xeb, 0x97, 0x37, 0x67, 0x7b, 0xc4, 0x0a, 0x7b, 0xce, 0x36, 0xd9, 0x8a, 0x2f, 0xd4, 0x30, 0xe1, + 0xd2, 0xa3, 0xa1, 0x01, 0x35, 0x61, 0x3f, 0x43, 0xbf, 0x0d, 0xec, 0xa1, 0x2e, 0xd4, 0x8d, 0xb6, + 0x45, 0x33, 0x75, 0xcf, 0x0d, 0x7d, 0xcf, 0x11, 0xc8, 0x46, 0x1b, 0xee, 0xa8, 0x1b, 0xea, 0x82, + 0xeb, 0x65, 0xda, 0x58, 0x27, 0x11, 0xb8, 0x0b, 0x42, 0xcf, 0x87, 0xbb, 0xde, 0x20, 0x08, 0x33, + 0x3e, 0x1d, 0x1a, 0x8e, 0x6d, 0x1a, 0x21, 0x15, 0xd6, 0x75, 0x78, 0xe6, 0x1b, 0xdd, 0x9e, 0xb1, + 0xae, 0xa7, 0xb5, 0xe0, 0x7b, 0x8f, 0x7d, 0xdb, 0xa7, 0x81, 0x40, 0x66, 0xe0, 0x0a, 0xc2, 0x85, + 0x76, 0xe8, 0xd0, 0xed, 0x8d, 0x4f, 0x47, 0x7b, 0xbb, 0xe4, 0xcc, 0x7e, 0xa4, 0x0e, 0xa9, 0xf9, + 0x21, 0x01, 0x34, 0x87, 0xd4, 0x0f, 0xa9, 0xbf, 0x95, 0xe5, 0x00, 0x64, 0x2b, 0x08, 0xc7, 0x08, + 0x28, 0xb7, 0xbc, 0xc7, 0x49, 0xcb, 0xf3, 0x4d, 0xea, 0x57, 0xb4, 0xfe, 0x23, 0x09, 0x3c, 0x40, + 0x91, 0xbc, 0xed, 0x74, 0x3a, 0xd3, 0x96, 0x67, 0x8e, 0x27, 0x1d, 0xe8, 0x3d, 0xd3, 0x31, 0x7a, + 0xb6, 0x33, 0xae, 0xd4, 0x7c, 0xdb, 0x70, 0xa4, 0xc0, 0x70, 0x83, 0x4c, 0x40, 0x7d, 0xbb, 0x53, + 0x6d, 0x19, 0xed, 0x87, 0xae, 0xef, 0x0d, 0x5c, 0x33, 0xd3, 0xf6, 0x1c, 0xcf, 0xaf, 0xbc, 0x55, + 0x55, 0x75, 0x2a, 0x87, 0x5e, 0x3f, 0xd3, 0x37, 0xfc, 0x70, 0x32, 0xb2, 0xcd, 0xd0, 0xaa, 0x14, + 0x15, 0xa5, 0xff, 0x58, 0xed, 0x19, 0x7e, 0xd7, 0x76, 0x2b, 0x0a, 0x31, 0x06, 0xa1, 0x37, 0x95, + 0x11, 0x6b, 0xc3, 0x76, 0xa9, 0x3f, 0xe9, 0x19, 0x8f, 0x19, 0x0e, 0xa8, 0x2a, 0xca, 0x9f, 0x24, + 0x93, 0x47, 0x68, 0x8e, 0x51, 0xc6, 0x37, 0x4c, 0x7b, 0x10, 0x54, 0x94, 0x6a, 0xdf, 0x30, 0x4d, + 0xdb, 0xed, 0x56, 0x34, 0xac, 0x0c, 0xe9, 0x63, 0x98, 0x01, 0x52, 0x76, 0xdd, 0x4a, 0x1b, 0x66, + 0x4e, 0xfd, 0xa9, 0xa5, 0x72, 0x44, 0x03, 0xfb, 0x89, 0x56, 0x34, 0x39, 0x47, 0x7b, 0xd5, 0x08, + 0x21, 0xd3, 0x34, 0xe3, 0xa1, 0x55, 0x98, 0x9e, 0x52, 0xfd, 0xe1, 0x84, 0x1c, 0xc0, 0x28, 0x63, + 0x51, 0xbb, 0x6b, 0x85, 0x15, 0xb9, 0x30, 0xb5, 0xb4, 0x44, 0xb7, 0xaa, 0xac, 0xce, 0xba, 0xf5, + 0xbb, 0x2d, 0x23, 0xa5, 0x69, 0xaa, 0x14, 0xff, 0xc9, 0x45, 0x55, 0xfc, 0xe5, 0x71, 0xd6, 0x4d, + 0x28, 0x97, 0x18, 0x59, 0x2e, 0xfd, 0x2b, 0x03, 0xab, 0x72, 0x7e, 0x75, 0xe4, 0x2a, 0x7b, 0xc8, + 0xd8, 0x21, 0xed, 0x05, 0x71, 0xd1, 0x3d, 0x48, 0xaf, 0xdd, 0x19, 0x67, 0x22, 0x49, 0x8b, 0x8b, + 0x4d, 0x3b, 0xe8, 0x3b, 0xc6, 0xb8, 0xd2, 0x71, 0xe8, 0xe3, 0xb4, 0x9f, 0xa4, 0xd4, 0x9c, 0xfc, + 0xa5, 0x52, 0x69, 0x69, 0xcc, 0xc2, 0x0f, 0x11, 0x9c, 0xbe, 0xed, 0xd8, 0xd4, 0x31, 0x2f, 0x8d, + 0x96, 0x43, 0x93, 0x3d, 0x92, 0x1f, 0x74, 0xf9, 0x42, 0x87, 0x41, 0xdb, 0x70, 0xe8, 0xef, 0xec, + 0xd0, 0xf4, 0x41, 0xbe, 0x9f, 0x3c, 0x97, 0x4e, 0x62, 0x0a, 0xb4, 0x1c, 0xaf, 0xfd, 0x50, 0x9d, + 0x0b, 0x71, 0x52, 0x86, 0x2b, 0x39, 0xe0, 0x8a, 0x69, 0x04, 0x16, 0x85, 0x65, 0x85, 0xd2, 0xb8, + 0x2c, 0xda, 0xab, 0x2c, 0x58, 0x10, 0xf6, 0x78, 0xdd, 0x54, 0xdb, 0x03, 0x3f, 0x00, 0x74, 0xfb, + 0x9e, 0xcd, 0x80, 0x7e, 0xc8, 0xe6, 0xc4, 0x44, 0x0b, 0xd0, 0xc7, 0x7c, 0xa2, 0x48, 0x5f, 0x87, + 0x66, 0xfa, 0x76, 0xfb, 0x01, 0x96, 0x5e, 0x8c, 0xbf, 0x0b, 0x93, 0x99, 0xca, 0x86, 0x69, 0xf4, + 0x43, 0x7b, 0x48, 0x2f, 0x77, 0x27, 0x49, 0xd6, 0x56, 0xf1, 0x27, 0x63, 0x82, 0xb2, 0x69, 0x87, + 0xb6, 0xe7, 0x56, 0x7c, 0x6f, 0xc4, 0x8b, 0x46, 0xbe, 0xd1, 0x87, 0xa6, 0x78, 0x59, 0x23, 0x35, + 0x53, 0xb9, 0x07, 0xeb, 0xbb, 0x49, 0x1d, 0x68, 0xe6, 0xf9, 0x93, 0x55, 0x55, 0xa1, 0x69, 0x5a, + 0x72, 0x91, 0x46, 0xd4, 0x52, 0xe7, 0x3a, 0x28, 0x97, 0xcb, 0x45, 0xb3, 0xcf, 0x80, 0x46, 0xa9, + 0xe4, 0x67, 0xc4, 0xc8, 0xb4, 0xbc, 0x30, 0xf4, 0x7a, 0xac, 0x24, 0xa6, 0x95, 0x42, 0xca, 0xf0, + 0x14, 0x71, 0x50, 0xc3, 0xfb, 0x25, 0x1a, 0x2c, 0x92, 0xbd, 0xd4, 0x8f, 0xe6, 0x05, 0x38, 0x8d, + 0x80, 0xe3, 0x0b, 0x13, 0x7e, 0xf5, 0x12, 0x98, 0xd3, 0xec, 0xff, 0xdb, 0x3c, 0x39, 0xc7, 0x03, + 0xda, 0xed, 0xc1, 0x44, 0x82, 0x5d, 0x7b, 0x18, 0xe9, 0xea, 0x5c, 0x71, 0x3e, 0x56, 0xc6, 0xa1, + 0x9d, 0xb0, 0x02, 0x7d, 0x4e, 0xff, 0x22, 0xb6, 0xdb, 0x1f, 0x84, 0xb7, 0xe1, 0xb8, 0x4f, 0x75, + 0xdf, 0x70, 0xbb, 0xf4, 0x6e, 0x62, 0xf4, 0xfb, 0xd4, 0x80, 0xfb, 0x36, 0x65, 0x9d, 0x55, 0x33, + 0x3d, 0xef, 0x29, 0xb3, 0x52, 0x38, 0xa2, 0xad, 0x07, 0x3b, 0x5c, 0x29, 0x4f, 0xa2, 0x34, 0x9b, + 0x59, 0x2c, 0xea, 0x30, 0x5d, 0x9c, 0x24, 0xc9, 0x33, 0x75, 0xb6, 0x42, 0xd0, 0x10, 0xfa, 0x09, + 0xc0, 0xbc, 0x00, 0xe2, 0xcb, 0x6b, 0x62, 0x0e, 0x5b, 0xc1, 0x05, 0x6d, 0xf8, 0x30, 0x06, 0xd0, + 0x01, 0x20, 0x53, 0xa1, 0x47, 0x7c, 0xa4, 0x99, 0xf4, 0xb6, 0xd5, 0x6a, 0x91, 0x82, 0xf2, 0xa7, + 0x84, 0x74, 0xc7, 0x1b, 0x71, 0x95, 0x64, 0xd3, 0x95, 0xe9, 0x56, 0x3a, 0x5e, 0x7b, 0x10, 0x4c, + 0xbc, 0x41, 0x88, 0x1d, 0x57, 0x94, 0x35, 0x10, 0x95, 0x78, 0xb2, 0x01, 0x70, 0x15, 0xbb, 0x1b, + 0xb8, 0x2e, 0x6a, 0x9d, 0x0c, 0x20, 0xdc, 0x7e, 0x98, 0x24, 0x59, 0xf6, 0x3c, 0xda, 0x0a, 0xce, + 0xf8, 0x15, 0xe8, 0x2c, 0x0f, 0x16, 0x5a, 0x83, 0x5e, 0x2b, 0x1e, 0x43, 0x45, 0x26, 0x46, 0xda, + 0xa8, 0xb8, 0x22, 0x12, 0x30, 0xe5, 0xe4, 0x88, 0x68, 0xea, 0x97, 0x11, 0x7a, 0x8e, 0x6d, 0x4b, + 0x52, 0xfa, 0x3a, 0x44, 0x51, 0x2e, 0xd8, 0xc3, 0x1a, 0x42, 0xac, 0x30, 0x97, 0xd9, 0x37, 0x45, + 0x62, 0xff, 0xc4, 0x9f, 0x1f, 0x80, 0x51, 0x21, 0x5a, 0x61, 0x4a, 0xb4, 0xbe, 0x92, 0xf2, 0xf2, + 0x2a, 0x02, 0x95, 0x16, 0x10, 0x63, 0x04, 0x9a, 0xca, 0x6c, 0x80, 0x13, 0xe8, 0x1e, 0xd4, 0x26, + 0x6f, 0xc9, 0xb4, 0x33, 0x7a, 0x55, 0x36, 0x18, 0x98, 0x48, 0x81, 0xf7, 0x6c, 0xd3, 0x74, 0x60, + 0x61, 0x75, 0x06, 0x8e, 0x73, 0x09, 0x7a, 0x7d, 0x1f, 0x8d, 0x19, 0x47, 0x17, 0xd5, 0xfc, 0xdd, + 0x33, 0xea, 0x61, 0xbd, 0x4e, 0x88, 0x97, 0xa1, 0xed, 0x32, 0xeb, 0x14, 0x84, 0xe0, 0x52, 0xe1, + 0x72, 0x7c, 0x59, 0x59, 0xc4, 0x24, 0xce, 0xaf, 0xf1, 0xa4, 0x7e, 0xc1, 0x6e, 0xac, 0x5a, 0xad, + 0xdf, 0xa5, 0x3e, 0x3b, 0xce, 0xe3, 0xe5, 0xbe, 0x63, 0xfe, 0x1e, 0xb2, 0xfc, 0x7f, 0x99, 0xf5, + 0x82, 0x36, 0x0d, 0x06, 0xad, 0x9e, 0xfd, 0x6b, 0x82, 0x01, 0x9e, 0x23, 0x38, 0x31, 0x73, 0xaf, + 0x63, 0x09, 0x5b, 0x46, 0x87, 0xd7, 0xce, 0x7b, 0xc9, 0x65, 0x06, 0x1c, 0x5b, 0x03, 0x10, 0x27, + 0xf7, 0x7f, 0xc1, 0x19, 0xc6, 0x93, 0xdf, 0x83, 0xdd, 0xa2, 0x3b, 0xff, 0x6b, 0x64, 0x5f, 0xd2, + 0x71, 0x91, 0x5f, 0x88, 0x96, 0xef, 0xa5, 0xfe, 0xd6, 0xaf, 0x71, 0x5c, 0xcf, 0xa0, 0x54, 0x8c, + 0x49, 0xd7, 0xb7, 0xcd, 0x0c, 0x13, 0x88, 0xac, 0x96, 0x9c, 0x6f, 0x2c, 0x8e, 0x2c, 0xfa, 0xf9, + 0x19, 0x32, 0x26, 0xd8, 0x20, 0x5b, 0xa0, 0xdd, 0x97, 0xdc, 0xb4, 0x60, 0x08, 0x14, 0x86, 0xb9, + 0x4d, 0xd6, 0xe3, 0xf5, 0xd6, 0xee, 0x19, 0xa0, 0x0a, 0xe7, 0xf1, 0x55, 0xdc, 0x1a, 0xf1, 0xac, + 0x32, 0x64, 0x61, 0x72, 0x50, 0x12, 0x52, 0xc4, 0x3a, 0xa8, 0xa8, 0x1d, 0x9f, 0xc0, 0xdf, 0xf4, + 0x2d, 0xe7, 0xf8, 0x9a, 0x96, 0x8c, 0x30, 0x31, 0x73, 0x23, 0x35, 0xa3, 0x2a, 0x09, 0x47, 0x01, + 0x35, 0x11, 0x16, 0x4c, 0x65, 0xde, 0x47, 0xdb, 0x31, 0x82, 0x60, 0x82, 0xcd, 0xe6, 0xf6, 0x9d, + 0x01, 0x15, 0xfa, 0x2b, 0x1d, 0xa1, 0x7f, 0x21, 0x77, 0x8d, 0xfe, 0x24, 0x26, 0x1d, 0x3c, 0xbf, + 0xe5, 0xab, 0x22, 0x8a, 0x5a, 0x2b, 0x95, 0x16, 0xed, 0x40, 0x18, 0x3d, 0x89, 0x19, 0x2a, 0x08, + 0x33, 0x19, 0x88, 0x94, 0x00, 0x77, 0xc0, 0x13, 0x44, 0x66, 0x44, 0xa8, 0x0c, 0x7c, 0x27, 0xf5, + 0x1e, 0x02, 0x6e, 0xa3, 0xc2, 0x9e, 0xb3, 0x40, 0xba, 0xf4, 0x63, 0xcf, 0xa9, 0x0e, 0xc2, 0x4e, + 0x59, 0x82, 0x10, 0x78, 0xd8, 0x25, 0x2c, 0x0c, 0xd6, 0x85, 0x48, 0xa5, 0x2f, 0x29, 0x4f, 0x81, + 0x0c, 0x6d, 0x3a, 0xda, 0xf1, 0x1e, 0x21, 0xb8, 0x26, 0x0a, 0xd1, 0xf2, 0xf0, 0xbf, 0x40, 0xb6, + 0xfa, 0x46, 0x68, 0x11, 0xf0, 0xa3, 0x1d, 0x5d, 0x00, 0xa1, 0x42, 0xc3, 0x52, 0x47, 0x96, 0x09, + 0xc4, 0xd4, 0x85, 0x63, 0x55, 0x93, 0x8a, 0xd7, 0x9b, 0x47, 0x6a, 0x51, 0x2a, 0x1c, 0xc1, 0xbd, + 0x7a, 0x9d, 0xaf, 0x95, 0xa5, 0x32, 0xb4, 0x06, 0x8b, 0x46, 0xf2, 0x92, 0xaa, 0xd5, 0xe1, 0x27, + 0x27, 0x17, 0x4a, 0x24, 0x2f, 0xe7, 0x8b, 0x92, 0x5a, 0x90, 0x15, 0x70, 0x43, 0x64, 0x0d, 0x4a, + 0x8b, 0xb2, 0x56, 0x3c, 0x2a, 0xca, 0x25, 0x49, 0xcd, 0xcb, 0xe5, 0x3a, 0x3c, 0x15, 0x10, 0x72, + 0xb3, 0x44, 0x00, 0x2c, 0x87, 0x3f, 0x5a, 0xad, 0x28, 0x15, 0x59, 0x57, 0x2a, 0xc1, 0x71, 0x8e, + 0xd5, 0xb2, 0x5c, 0x2a, 0x4a, 0x25, 0xb9, 0x94, 0x3f, 0x52, 0x4b, 0x72, 0x4e, 0xda, 0x94, 0xb5, + 0xba, 0x8a, 0x8f, 0x92, 0xaa, 0xc8, 0x4a, 0x9e, 0xa8, 0x65, 0x49, 0x55, 0xd9, 0xef, 0x52, 0x53, + 0xb5, 0x7c, 0xad, 0x16, 0x8e, 0xa0, 0x7c, 0x13, 0x91, 0xd4, 0x72, 0xd7, 0x9a, 0x92, 0x40, 0x53, + 0x53, 0x10, 0x4f, 0xfc, 0x55, 0xe4, 0x7c, 0x8e, 0xa8, 0x9b, 0x72, 0x21, 0x2f, 0x95, 0x11, 0x93, + 0xf9, 0x80, 0x5f, 0x04, 0x92, 0xdd, 0xde, 0x42, 0x92, 0x6e, 0xbf, 0x17, 0xab, 0x09, 0xef, 0x31, + 0xa2, 0x1f, 0xde, 0x03, 0x23, 0x61, 0xfd, 0xc2, 0x1a, 0x23, 0x7f, 0x4d, 0xd6, 0x71, 0x0c, 0x84, + 0x19, 0xea, 0x0f, 0x51, 0x1b, 0x32, 0x4b, 0x19, 0x44, 0x42, 0x50, 0xf8, 0xd9, 0x25, 0xf3, 0x1a, + 0x53, 0x99, 0xf9, 0xb1, 0x8d, 0x28, 0xfd, 0x84, 0x3e, 0x5a, 0xb4, 0x12, 0x53, 0x03, 0xbd, 0xcd, + 0x87, 0xc9, 0x8f, 0x22, 0xf4, 0x1f, 0x7a, 0xb1, 0x2c, 0x02, 0x34, 0x69, 0xdb, 0xf3, 0x0d, 0x16, + 0x61, 0xb1, 0x75, 0x6e, 0x54, 0x86, 0x76, 0x00, 0x7a, 0xc8, 0xfc, 0xed, 0xfd, 0x5a, 0x1e, 0xac, + 0xaa, 0x49, 0xd2, 0xca, 0xfd, 0x42, 0x27, 0x46, 0x1b, 0xc3, 0x9e, 0xdf, 0x8c, 0xdb, 0x06, 0xc8, + 0x13, 0x4b, 0x4b, 0x91, 0x2d, 0xa4, 0x28, 0xf1, 0x29, 0x2c, 0xb1, 0xc0, 0xf2, 0xfc, 0xb0, 0x3d, + 0x08, 0x09, 0x2a, 0x3d, 0x81, 0x6c, 0x58, 0x3e, 0xed, 0xe8, 0x42, 0x62, 0x55, 0xf7, 0xdd, 0x2e, + 0x8c, 0x15, 0xd0, 0x62, 0x5e, 0xb2, 0xaf, 0x77, 0x4e, 0x2f, 0x46, 0xca, 0xc7, 0x83, 0xae, 0x57, + 0x83, 0xff, 0x4e, 0x9a, 0x57, 0xd6, 0xde, 0x55, 0x17, 0xee, 0x76, 0xf0, 0xb1, 0x76, 0x5e, 0xaf, + 0xdd, 0xe0, 0xb5, 0x53, 0xce, 0x6e, 0x5a, 0xac, 0xe4, 0xf3, 0x49, 0xf3, 0x42, 0x39, 0xac, 0xf9, + 0x41, 0xbe, 0x5d, 0x3c, 0x87, 0xe7, 0x87, 0x93, 0xbf, 0x2f, 0xf6, 0xf6, 0xaf, 0x4e, 0xf7, 0xd2, + 0xce, 0x55, 0x10, 0x9e, 0x6a, 0x6a, 0xed, 0xca, 0x6d, 0x9c, 0x04, 0xfb, 0xca, 0x75, 0x5a, 0xd9, + 0xfb, 0x7c, 0x6d, 0x0f, 0x6b, 0x9f, 0x3b, 0x35, 0x5a, 0xfa, 0xe6, 0x1c, 0x95, 0xf6, 0xbe, 0xec, + 0xb5, 0xcf, 0x0b, 0xed, 0xf3, 0xb2, 0x5b, 0x3f, 0xac, 0xb7, 0x76, 0xff, 0xde, 0x2f, 0x5d, 0xfa, + 0x43, 0xcb, 0x08, 0x8a, 0x37, 0xad, 0xf1, 0xae, 0xb9, 0x33, 0xd0, 0xac, 0xe6, 0x43, 0xe9, 0xc1, + 0xb6, 0x82, 0xf6, 0x47, 0xb5, 0x73, 0xb5, 0xa9, 0x36, 0x2e, 0x3e, 0x7e, 0x34, 0xf6, 0x3b, 0xea, + 0xa3, 0xe5, 0x9f, 0x95, 0xe9, 0xfd, 0xb1, 0x5b, 0x6f, 0x94, 0x0b, 0xca, 0x59, 0x36, 0x3d, 0xcc, + 0xb6, 0xeb, 0xda, 0xb7, 0xf6, 0xb7, 0x51, 0xbe, 0x1b, 0x1c, 0xec, 0xe6, 0x1a, 0x0f, 0xd9, 0x03, + 0x2d, 0x97, 0x6e, 0x0d, 0x9b, 0xe6, 0xa8, 0xe4, 0x3e, 0xa8, 0x1f, 0xcb, 0xe5, 0xd2, 0x0e, 0xad, + 0x9f, 0xe7, 0x6b, 0x07, 0xc7, 0x35, 0x7b, 0xef, 0xbe, 0x7d, 0x60, 0xec, 0x94, 0xba, 0xae, 0xb9, + 0xd7, 0xb1, 0x2e, 0xbe, 0x99, 0x17, 0xe7, 0xcd, 0xfa, 0xa6, 0xdb, 0x3e, 0xb7, 0x1f, 0x6a, 0xd7, + 0x76, 0x50, 0xfb, 0x74, 0xb0, 0xb3, 0xdf, 0xed, 0x5e, 0x14, 0xce, 0x87, 0xe7, 0xa5, 0xab, 0xf6, + 0xe5, 0x89, 0xb9, 0xd9, 0x3b, 0x1a, 0xee, 0x9a, 0x75, 0xad, 0xaf, 0xf9, 0xd6, 0xe1, 0x89, 0x76, + 0x90, 0xbf, 0xca, 0x0e, 0x2f, 0x5a, 0x2e, 0x1d, 0x8f, 0xdd, 0x27, 0xab, 0x1f, 0x94, 0x14, 0xaf, + 0x76, 0xe6, 0x58, 0x27, 0x67, 0x47, 0xf7, 0x5f, 0x5c, 0x43, 0x1d, 0xe6, 0xb3, 0x8f, 0xd7, 0xbd, + 0xf0, 0xbc, 0x71, 0x55, 0x0e, 0x9f, 0xce, 0x3f, 0x9f, 0xe6, 0xea, 0xf5, 0x87, 0xbc, 0xeb, 0x9f, + 0xed, 0x96, 0x8f, 0x8f, 0x4e, 0xd2, 0xc5, 0x6f, 0x66, 0x99, 0x76, 0xca, 0xd4, 0x1f, 0xed, 0x7c, + 0x1c, 0x36, 0x4a, 0x05, 0xe5, 0xf3, 0x47, 0xf5, 0xf3, 0x38, 0xef, 0xd8, 0x9b, 0xd9, 0xce, 0xf9, + 0xbe, 0x3f, 0xda, 0x3c, 0xab, 0x1d, 0x34, 0x77, 0xbb, 0x65, 0xe3, 0x69, 0x30, 0xfa, 0x7b, 0xf7, + 0xa4, 0x78, 0xdf, 0x1a, 0xd0, 0x7e, 0xc9, 0x48, 0x1f, 0xec, 0xef, 0xe7, 0xe8, 0xd3, 0x89, 0x42, + 0xdd, 0x42, 0x67, 0xf7, 0x5b, 0xf9, 0xbc, 0xe3, 0xa6, 0xaf, 0xbe, 0x5d, 0x77, 0xef, 0xad, 0x4f, + 0x85, 0x16, 0x3d, 0xeb, 0x8f, 0xea, 0x1f, 0x47, 0x57, 0x8d, 0xfb, 0xa2, 0xa1, 0xd5, 0xea, 0x37, + 0xa5, 0x27, 0xbf, 0x6e, 0xd6, 0xeb, 0xb9, 0xfc, 0xd5, 0xbd, 0xff, 0x34, 0x08, 0xef, 0x8f, 0xbe, + 0xd8, 0xe7, 0xf5, 0xec, 0x83, 0xa5, 0x34, 0x9c, 0xf1, 0xd9, 0x78, 0xb0, 0x19, 0x7e, 0x7c, 0x3a, + 0xce, 0xdb, 0x07, 0x67, 0x9d, 0xd2, 0xe0, 0xa0, 0x10, 0xec, 0xee, 0x8d, 0x3e, 0xf5, 0x6f, 0x3e, + 0x0d, 0x7d, 0xab, 0x5c, 0xb8, 0xf8, 0x72, 0x03, 0xdc, 0x3d, 0xec, 0x97, 0xd2, 0x9f, 0x8d, 0xf1, + 0x49, 0xf8, 0x6d, 0x1c, 0x7e, 0xa6, 0x47, 0xdf, 0x3e, 0xb5, 0xee, 0xaf, 0xae, 0x4e, 0xda, 0x47, + 0xf5, 0x74, 0x67, 0x70, 0xa0, 0xf5, 0xfa, 0x47, 0x83, 0x52, 0x78, 0xe6, 0x14, 0x82, 0x2f, 0xbb, + 0x35, 0xb7, 0x7f, 0xf4, 0xa0, 0xf4, 0x9e, 0xf6, 0x77, 0x6d, 0x3f, 0xbd, 0xb3, 0xff, 0xb7, 0xf3, + 0x50, 0xdf, 0xab, 0x1b, 0x1f, 0xf7, 0x07, 0xcd, 0x9d, 0x9b, 0xa6, 0x53, 0xcb, 0xf7, 0x8f, 0x3e, + 0x85, 0xf6, 0xc5, 0xfd, 0xde, 0xb8, 0x7b, 0x38, 0xde, 0xf3, 0xf7, 0x9f, 0xc6, 0x87, 0x1f, 0xef, + 0x7d, 0x7a, 0x73, 0xe9, 0xb4, 0xbe, 0x7c, 0xec, 0x1a, 0x0d, 0xff, 0xc2, 0x79, 0xf2, 0x1a, 0x5e, + 0x38, 0xa2, 0x9f, 0x69, 0xcd, 0xda, 0xb3, 0x0e, 0x1f, 0xcf, 0x76, 0x2e, 0x77, 0x77, 0xac, 0xf3, + 0x9b, 0xee, 0xde, 0x8d, 0x75, 0xd2, 0x1a, 0xb7, 0x0e, 0x4f, 0xac, 0xc7, 0x1b, 0x35, 0x68, 0x35, + 0x47, 0xa3, 0x87, 0x56, 0xe3, 0xf4, 0x8b, 0xff, 0x14, 0xe4, 0xae, 0x2f, 0x7a, 0xf7, 0x3d, 0xf7, + 0xf4, 0xa1, 0xd8, 0x3a, 0x7d, 0xf0, 0xbf, 0x3d, 0x1e, 0x37, 0x2e, 0x37, 0xc7, 0xf5, 0x6f, 0xe3, + 0xc7, 0x93, 0x71, 0xab, 0xb6, 0x7f, 0xdc, 0x55, 0x7b, 0x9f, 0x2e, 0x76, 0x0e, 0x6e, 0x9c, 0xae, + 0x46, 0x5b, 0xde, 0x69, 0x73, 0xff, 0xc0, 0xbc, 0x4c, 0x1f, 0x8e, 0x8e, 0x73, 0x7b, 0xb6, 0x53, + 0x7c, 0xda, 0x19, 0x7d, 0xfe, 0xb2, 0xaf, 0x3e, 0x3e, 0x34, 0x3f, 0x3d, 0x9c, 0x1a, 0xc5, 0x6f, + 0x61, 0xc3, 0xa1, 0x6d, 0x3a, 0x38, 0x1f, 0xd6, 0xd3, 0xdd, 0x7c, 0xff, 0xcb, 0x67, 0xdb, 0x38, + 0x0d, 0x37, 0xef, 0xc7, 0xbb, 0x2d, 0x2d, 0x7f, 0xae, 0x7d, 0xfb, 0x58, 0x2f, 0x7c, 0xbe, 0x6c, + 0x0e, 0x7d, 0xe7, 0x63, 0xee, 0x4b, 0xe3, 0xf8, 0x93, 0x92, 0x77, 0x8f, 0xcc, 0xe3, 0xb3, 0x8f, + 0xe1, 0xf9, 0xe9, 0xf1, 0x93, 0x77, 0x70, 0xf9, 0x74, 0xf6, 0x54, 0xdc, 0xbc, 0x39, 0x39, 0xd3, + 0x86, 0x76, 0x69, 0x57, 0x55, 0x3b, 0xe1, 0xf0, 0xfc, 0xd3, 0x4d, 0xfd, 0x69, 0x1c, 0x96, 0xee, + 0x3b, 0xa3, 0x53, 0x55, 0xb9, 0x3c, 0xef, 0x1e, 0x15, 0xac, 0x4b, 0xb6, 0x26, 0x6a, 0x3b, 0x7f, + 0x5f, 0x5c, 0x15, 0xf6, 0xfc, 0x87, 0xbf, 0xbb, 0xdd, 0xae, 0xae, 0x0b, 0xdb, 0x1b, 0x60, 0x3a, + 0xdb, 0xbe, 0xdd, 0x0f, 0x09, 0x73, 0x61, 0x05, 0x5c, 0xcb, 0xd9, 0x7b, 0x63, 0x68, 0xf0, 0x52, + 0x00, 0xe8, 0x0c, 0x5c, 0x96, 0x2c, 0x22, 0xdd, 0x43, 0x33, 0x45, 0xc5, 0x89, 0x4f, 0xc3, 0x81, + 0xef, 0x12, 0x53, 0xee, 0xd2, 0x70, 0xcf, 0xa1, 0x98, 0x74, 0xd8, 0x19, 0xb3, 0xaa, 0xe9, 0x0c, + 0xb4, 0xbd, 0xb7, 0x00, 0xd9, 0x06, 0xdf, 0x2a, 0xa4, 0x11, 0x30, 0x02, 0x0e, 0x0d, 0x1f, 0x0c, + 0xac, 0x09, 0x71, 0x38, 0x96, 0xa0, 0xaa, 0x60, 0xa3, 0x81, 0xae, 0xc8, 0x46, 0x39, 0x7a, 0x4c, + 0x58, 0xcf, 0x2f, 0x26, 0x98, 0x1d, 0xe6, 0x88, 0x00, 0x82, 0x51, 0x42, 0x5a, 0x88, 0x8a, 0x37, + 0x22, 0xab, 0xbf, 0xe0, 0xe0, 0xac, 0x77, 0x1b, 0xb1, 0x89, 0xa5, 0xae, 0x6f, 0xb1, 0xea, 0x2b, + 0x22, 0x34, 0x7a, 0x15, 0x1b, 0x0b, 0x6e, 0xc5, 0xb2, 0x59, 0x8c, 0xad, 0x12, 0x4b, 0x48, 0x54, + 0x8a, 0x2b, 0x7e, 0x46, 0x4e, 0x83, 0xff, 0x85, 0x6d, 0xee, 0x67, 0x6c, 0x70, 0x47, 0xe3, 0xad, + 0xa2, 0xe4, 0x20, 0x10, 0xe5, 0x3e, 0x46, 0x91, 0x68, 0x9a, 0x55, 0x1e, 0xe6, 0x1b, 0xc5, 0xa7, + 0x63, 0x15, 0xac, 0x7c, 0xde, 0xca, 0x0f, 0xcb, 0x56, 0x26, 0x0f, 0x4f, 0x65, 0xa2, 0x2a, 0xb3, + 0x27, 0x4d, 0x23, 0x45, 0x84, 0xb3, 0x32, 0xe5, 0x27, 0x21, 0xb6, 0xd6, 0x1b, 0xe4, 0xb9, 0xcd, + 0x01, 0xa4, 0xa4, 0x8a, 0xf4, 0x04, 0x1a, 0xe1, 0xb4, 0xb5, 0xed, 0x8d, 0xa8, 0x8e, 0x30, 0x4d, + 0x4b, 0x42, 0x8f, 0xb7, 0xfd, 0xbb, 0x79, 0x7a, 0x42, 0x52, 0x7d, 0xd6, 0x03, 0x90, 0x95, 0x00, + 0xf7, 0x58, 0x79, 0xcf, 0x08, 0x7d, 0xfb, 0x51, 0x84, 0x6e, 0x34, 0x68, 0xdf, 0xc7, 0xed, 0x08, + 0xcc, 0x80, 0x90, 0x0d, 0x1b, 0xb0, 0x9e, 0x27, 0x76, 0x85, 0x45, 0xaf, 0x8b, 0x79, 0xcb, 0x0c, + 0x30, 0x03, 0xa4, 0xf5, 0x06, 0x61, 0xa5, 0x03, 0x3d, 0x9b, 0x11, 0x79, 0x57, 0xd9, 0x11, 0xfa, + 0x28, 0x81, 0xa1, 0x19, 0xf7, 0xb2, 0xd6, 0x0f, 0x46, 0x40, 0xc7, 0x68, 0x01, 0x82, 0xe0, 0x3a, + 0xea, 0x82, 0x43, 0xcd, 0x26, 0x48, 0x56, 0x3f, 0xce, 0xd3, 0x09, 0xdb, 0x47, 0x14, 0x3a, 0xc0, + 0xa2, 0x0a, 0x88, 0x12, 0x83, 0xc4, 0x99, 0x87, 0x28, 0x47, 0xd0, 0x75, 0x24, 0x38, 0xf3, 0x94, + 0x28, 0xe3, 0x2c, 0x6b, 0x4c, 0x70, 0x32, 0x2b, 0xfd, 0x91, 0x8d, 0xa8, 0x49, 0x32, 0xeb, 0x89, + 0x8d, 0xbc, 0x3e, 0x93, 0xee, 0xa1, 0xe1, 0x0c, 0x28, 0xd6, 0x22, 0x85, 0x80, 0x00, 0x0c, 0x82, + 0x42, 0x4f, 0xf1, 0x9d, 0xb0, 0xad, 0xed, 0x92, 0x63, 0x56, 0x0d, 0x08, 0xf1, 0x56, 0x2b, 0xcd, + 0x7d, 0xcd, 0x11, 0xb6, 0x9b, 0xd4, 0xef, 0x03, 0x31, 0xc0, 0xd1, 0x91, 0xc0, 0x0b, 0xf5, 0x83, + 0x90, 0x80, 0x1f, 0xcf, 0xb3, 0x5b, 0xc8, 0x21, 0xcc, 0xda, 0x91, 0x77, 0x4e, 0x58, 0xcd, 0xcc, + 0xba, 0xd9, 0x58, 0xee, 0xc7, 0xd1, 0xfc, 0xe7, 0xfa, 0x61, 0xcd, 0xe3, 0x6c, 0x19, 0xc9, 0xbc, + 0xeb, 0x86, 0xd5, 0x39, 0x3a, 0xb8, 0xea, 0x18, 0xbe, 0x33, 0x5a, 0x65, 0x81, 0x1b, 0x8c, 0x25, + 0x3f, 0xc1, 0x91, 0x0d, 0xc6, 0x12, 0xf8, 0x01, 0x6a, 0xcc, 0x49, 0x75, 0x3a, 0x08, 0xc1, 0x0f, + 0x24, 0xbc, 0xb8, 0xf2, 0x4a, 0x9e, 0x6c, 0x24, 0x99, 0xb2, 0xd4, 0x23, 0x79, 0x15, 0x47, 0x46, + 0xc0, 0x4a, 0xe0, 0xde, 0x3a, 0x86, 0xcc, 0x64, 0xfd, 0x59, 0x7e, 0x80, 0xfb, 0x0f, 0x0c, 0xa9, + 0x5f, 0x5d, 0x1c, 0x25, 0x69, 0xb4, 0x08, 0x63, 0x19, 0xc2, 0x76, 0xc3, 0xeb, 0x51, 0x52, 0x0b, + 0x02, 0x1b, 0x3c, 0x53, 0x37, 0x24, 0x37, 0xb5, 0xe3, 0x44, 0x83, 0x17, 0x68, 0xba, 0xf1, 0x13, + 0x62, 0xce, 0xfc, 0xac, 0xfd, 0x25, 0xc2, 0x6e, 0xb0, 0xe8, 0x84, 0xb4, 0x3d, 0x93, 0xfe, 0x24, + 0x75, 0x63, 0xe2, 0xb2, 0xf5, 0xbb, 0xae, 0xef, 0xd7, 0x91, 0xd8, 0xa2, 0x8f, 0xcf, 0x50, 0xb8, + 0xb1, 0xf7, 0x99, 0xa4, 0xde, 0x7d, 0x1b, 0x78, 0x61, 0xb5, 0x93, 0xc7, 0x7f, 0xfc, 0x5e, 0x7c, + 0x96, 0xe0, 0xe0, 0x31, 0xc2, 0x84, 0x76, 0xf7, 0xea, 0x24, 0xa5, 0xe5, 0xf3, 0x52, 0xf4, 0x27, + 0xfe, 0x2b, 0xc4, 0x84, 0x98, 0xc2, 0xa7, 0xc0, 0x33, 0xb7, 0x3b, 0x9f, 0x5a, 0x6d, 0x56, 0xf6, + 0x4b, 0x6a, 0x63, 0x4d, 0x97, 0xaf, 0x54, 0x1c, 0xd6, 0xb8, 0x05, 0xa1, 0xfb, 0x7a, 0xc5, 0xb1, + 0xd1, 0x60, 0x95, 0x33, 0x4a, 0x2a, 0xf8, 0x8f, 0xdf, 0x43, 0x04, 0x27, 0x11, 0xb5, 0x24, 0x91, + 0x57, 0x11, 0x79, 0x23, 0x56, 0x33, 0x98, 0xec, 0x14, 0xb6, 0x2f, 0xf0, 0x42, 0x52, 0xbf, 0xd4, + 0x05, 0xce, 0x11, 0x29, 0xda, 0x64, 0xd7, 0x97, 0x98, 0xfc, 0x3c, 0xd3, 0x36, 0x7e, 0x52, 0xd1, + 0xb7, 0x98, 0xde, 0x72, 0x81, 0xc8, 0x3c, 0x59, 0x2b, 0x6c, 0xef, 0xcc, 0x4a, 0xd6, 0xb2, 0xec, + 0x87, 0x12, 0x51, 0x7d, 0x85, 0xbd, 0x67, 0xc9, 0x3c, 0xb2, 0xc1, 0x5d, 0x21, 0x4e, 0x39, 0xc6, + 0xeb, 0x15, 0x4c, 0x48, 0xcf, 0x76, 0x75, 0x41, 0x85, 0xab, 0x01, 0x86, 0x5e, 0x2b, 0x14, 0x84, + 0x98, 0xb9, 0xaa, 0x56, 0x66, 0x82, 0xd2, 0x37, 0x5c, 0xbe, 0xd6, 0xe6, 0x6d, 0xaf, 0x11, 0x42, + 0xd8, 0x06, 0x08, 0x20, 0x12, 0xd4, 0xff, 0x2e, 0x25, 0x71, 0x64, 0xf7, 0xec, 0x30, 0x26, 0xd1, + 0xc6, 0xb1, 0xf1, 0x48, 0x5c, 0x8f, 0x78, 0x1d, 0xc2, 0x2a, 0x83, 0x2c, 0x6a, 0xbd, 0xca, 0x7f, + 0x93, 0x5a, 0x2b, 0x48, 0x2d, 0x52, 0xab, 0xa0, 0x6a, 0x33, 0x6a, 0x69, 0x85, 0xe2, 0x22, 0xb5, + 0xe6, 0x6d, 0x23, 0x6a, 0x01, 0xc4, 0x33, 0xd4, 0x8a, 0x57, 0xa8, 0x65, 0x64, 0x30, 0xb5, 0x26, + 0xfc, 0x3c, 0xf5, 0x2c, 0xe3, 0x10, 0x56, 0x75, 0xa3, 0x46, 0x76, 0xe9, 0xd0, 0x6e, 0x53, 0x72, + 0xb8, 0xbb, 0x86, 0x4e, 0x1b, 0xeb, 0x35, 0x01, 0x9f, 0x7c, 0x54, 0xb5, 0xb0, 0x47, 0x20, 0x24, + 0x5c, 0x69, 0x4e, 0x10, 0x36, 0xce, 0x6c, 0x39, 0x31, 0x5f, 0xeb, 0x2b, 0xf8, 0x5a, 0x5f, 0xdb, + 0xfc, 0xc4, 0x89, 0x43, 0xfd, 0xaf, 0x8a, 0xa2, 0x0a, 0xff, 0xca, 0x0c, 0xaf, 0x16, 0xa7, 0x78, + 0xe5, 0xda, 0xdf, 0x06, 0x8b, 0x33, 0xdd, 0x78, 0x41, 0xe7, 0xbd, 0x76, 0xa6, 0x1b, 0x7c, 0xaa, + 0x38, 0x20, 0x79, 0x61, 0xaa, 0xc6, 0x6b, 0xe6, 0xfa, 0xb3, 0xea, 0xc2, 0x32, 0x4e, 0x8c, 0x1e, + 0x4d, 0x4e, 0x16, 0x9f, 0xff, 0xb5, 0x79, 0xb2, 0xc1, 0xe2, 0x89, 0xce, 0x3d, 0xf0, 0x8f, 0x76, + 0xd8, 0xb6, 0xa8, 0x2b, 0xfc, 0x8e, 0xc5, 0x0d, 0x1e, 0xc9, 0x15, 0x3a, 0x25, 0xb1, 0x78, 0x9e, + 0x65, 0x2d, 0x0f, 0x5c, 0x3b, 0x37, 0x39, 0xad, 0x0d, 0xf2, 0x3b, 0xa7, 0x15, 0x0f, 0xc9, 0xe7, + 0xf5, 0x1b, 0x3c, 0xc3, 0x10, 0xc2, 0x23, 0x0a, 0x4e, 0x06, 0xdb, 0x9c, 0x16, 0xb6, 0x2f, 0xd9, + 0x23, 0x89, 0x36, 0xab, 0x61, 0x71, 0xbc, 0xde, 0x39, 0x5c, 0x9c, 0x07, 0xdf, 0x6c, 0x8a, 0x67, + 0xe0, 0x46, 0x7a, 0xc6, 0x66, 0xb6, 0xb4, 0x9b, 0x90, 0x40, 0x25, 0x52, 0x3e, 0x4a, 0xa4, 0x7c, + 0x8a, 0xb9, 0x65, 0x4f, 0x73, 0x11, 0xc3, 0xe5, 0xc1, 0x93, 0x56, 0x7c, 0x6e, 0xd9, 0x58, 0xe0, + 0x89, 0x8d, 0xe7, 0x2d, 0x71, 0xe3, 0x7d, 0xd6, 0x3a, 0xb1, 0x19, 0x0f, 0xb1, 0x5f, 0x14, 0x83, + 0x25, 0x49, 0x99, 0x65, 0x31, 0xd2, 0x3c, 0xa8, 0x8a, 0xdb, 0xcd, 0xce, 0xb7, 0xd4, 0xb1, 0x20, + 0x9a, 0xd0, 0xac, 0x50, 0x58, 0x0a, 0x46, 0x7f, 0x21, 0xda, 0x7a, 0x9d, 0x10, 0xe2, 0xfc, 0x66, + 0x43, 0xb3, 0x49, 0xbc, 0x26, 0x16, 0x5e, 0x9f, 0x62, 0xc7, 0x2d, 0x04, 0xbb, 0xfd, 0x00, 0x9d, + 0x8d, 0x70, 0x69, 0x34, 0xb1, 0xcb, 0x94, 0x88, 0xbe, 0x12, 0xdb, 0xc4, 0x01, 0x25, 0xc1, 0x77, + 0x71, 0xe2, 0x20, 0x79, 0x5d, 0x32, 0x7e, 0x83, 0x65, 0xe3, 0x4b, 0xa4, 0xd4, 0x28, 0x19, 0x05, + 0x52, 0xc0, 0xd4, 0x36, 0x51, 0x32, 0x78, 0x37, 0x7b, 0xc2, 0x3b, 0x4b, 0x55, 0x8c, 0x44, 0x41, + 0x26, 0x51, 0x9d, 0x81, 0xa7, 0xe3, 0x12, 0x51, 0x0b, 0x46, 0x8e, 0xe4, 0x58, 0x91, 0x9a, 0xc9, + 0x65, 0xf0, 0x3e, 0x7a, 0x22, 0x4b, 0x4f, 0x24, 0xf1, 0x84, 0x35, 0x18, 0x74, 0x6f, 0xf0, 0xa8, + 0x9b, 0xbc, 0x73, 0x5b, 0x41, 0xbf, 0xca, 0x66, 0x12, 0x45, 0xd3, 0x8b, 0x3c, 0x7e, 0xc5, 0x1a, + 0x99, 0x49, 0x50, 0x94, 0x55, 0x9f, 0xc5, 0xd1, 0xc9, 0x0d, 0xa2, 0x25, 0x7d, 0x80, 0xa0, 0x9f, + 0x21, 0x94, 0x21, 0x15, 0x32, 0x5b, 0x35, 0x1c, 0x95, 0xd8, 0x14, 0xc7, 0x62, 0xb4, 0x98, 0x89, + 0x5f, 0xbb, 0x4a, 0x58, 0x5f, 0x33, 0xc3, 0x1c, 0x3b, 0x2f, 0x45, 0xcc, 0x08, 0xf1, 0x3e, 0x93, + 0xbf, 0x2b, 0x68, 0xdc, 0x80, 0x9a, 0xfd, 0x5d, 0x68, 0xdc, 0xac, 0x45, 0x23, 0x26, 0xe9, 0xc6, + 0xfa, 0x75, 0x93, 0xed, 0x47, 0x59, 0x89, 0x04, 0x62, 0x89, 0xe3, 0x50, 0x49, 0x21, 0x9e, 0x9d, + 0xf1, 0xc2, 0xb9, 0xed, 0xc2, 0x43, 0xc4, 0x33, 0x8b, 0xfa, 0xc0, 0xb8, 0x96, 0xbf, 0x0d, 0x01, + 0x15, 0x5e, 0x48, 0x1d, 0xe5, 0x14, 0xe3, 0xe5, 0x48, 0x3b, 0x18, 0x28, 0x8b, 0x09, 0xde, 0xce, + 0x14, 0x55, 0x34, 0x76, 0xac, 0x93, 0xf8, 0xb4, 0x10, 0x96, 0x4f, 0x2a, 0x89, 0xc7, 0x73, 0x6c, + 0x85, 0x3e, 0x16, 0xd2, 0x57, 0xc9, 0x05, 0xbd, 0x7c, 0x88, 0x8c, 0x69, 0xf1, 0x5e, 0x97, 0xf5, + 0xdd, 0xf7, 0x29, 0x2e, 0x32, 0x61, 0x25, 0x8b, 0x95, 0x38, 0xd4, 0x11, 0x1d, 0xcc, 0x84, 0xb1, + 0xfd, 0x76, 0x94, 0x5d, 0x67, 0x69, 0x3d, 0x3c, 0x05, 0x1b, 0x67, 0xd7, 0xe7, 0x04, 0x9e, 0x8b, + 0xa2, 0x6f, 0x8c, 0x32, 0x4b, 0x3b, 0x8e, 0xcf, 0xe2, 0x1f, 0xe3, 0xc3, 0xe0, 0x11, 0x9b, 0x1f, + 0x0c, 0x45, 0x0c, 0x27, 0xd4, 0x85, 0x0b, 0x63, 0x74, 0xc8, 0xe8, 0xce, 0x9b, 0xcc, 0xc7, 0x07, + 0x4a, 0x30, 0x8a, 0xce, 0xf0, 0x78, 0x2d, 0x0e, 0x31, 0x83, 0x39, 0xbc, 0xed, 0x76, 0xbc, 0xf5, + 0x64, 0x99, 0xab, 0xe0, 0x78, 0xa3, 0x97, 0x35, 0x43, 0xbf, 0x98, 0x25, 0x0c, 0xa0, 0xc0, 0xf4, + 0x5c, 0x67, 0x0c, 0x14, 0x88, 0xee, 0x04, 0x5c, 0xea, 0x31, 0xf0, 0x22, 0xa5, 0x98, 0x4b, 0xbf, + 0xb4, 0xbb, 0xfa, 0x2c, 0x86, 0x1c, 0x30, 0xf6, 0x6c, 0xfb, 0xe3, 0x68, 0x48, 0x5e, 0x3c, 0xb3, + 0x16, 0x89, 0x8d, 0x56, 0x44, 0x95, 0x3f, 0x26, 0x86, 0xeb, 0x1a, 0x7d, 0x75, 0x06, 0x0c, 0x0f, + 0x0c, 0x3b, 0x8e, 0x51, 0x34, 0x00, 0xb7, 0x7b, 0xae, 0xf9, 0x73, 0xfd, 0xcf, 0x67, 0x85, 0x5e, + 0x84, 0x95, 0xdb, 0x9e, 0x8d, 0x08, 0x6a, 0x2b, 0x80, 0x68, 0x4e, 0xd8, 0xbe, 0xe6, 0x37, 0x44, + 0x95, 0x15, 0xb9, 0xcc, 0x1b, 0xf0, 0xa5, 0x9e, 0x89, 0x15, 0x83, 0x11, 0xef, 0xe2, 0xe0, 0x81, + 0xe6, 0xa0, 0x92, 0xcd, 0x76, 0xed, 0xd0, 0x1a, 0xb4, 0xe4, 0xb6, 0xd7, 0xcb, 0x8e, 0xa8, 0xff, + 0x10, 0x80, 0xdb, 0xd7, 0xcb, 0x62, 0xfa, 0x25, 0xc3, 0x9c, 0x24, 0xf0, 0x91, 0x66, 0x49, 0xca, + 0x6c, 0xcb, 0xf1, 0x5a, 0x59, 0x0c, 0x96, 0xb3, 0x17, 0x7b, 0xb5, 0xdd, 0xe3, 0x3d, 0xb9, 0x87, + 0xf9, 0x1b, 0x6e, 0x91, 0x75, 0xe1, 0x6b, 0xcb, 0x31, 0xdc, 0x07, 0xd0, 0x34, 0xd4, 0xe9, 0x67, + 0x6b, 0x2d, 0xb0, 0x6f, 0x5b, 0x59, 0x03, 0x26, 0x00, 0x98, 0xce, 0x17, 0xe5, 0x12, 0x67, 0xd8, + 0x46, 0x34, 0x4f, 0x10, 0xaf, 0x97, 0x85, 0x19, 0x51, 0x12, 0x90, 0x33, 0xf9, 0x68, 0x1b, 0xee, + 0xd0, 0x08, 0xf8, 0x42, 0x43, 0x64, 0xeb, 0xec, 0x99, 0xd1, 0x9b, 0x57, 0x6d, 0xbf, 0x9c, 0x2e, + 0xf7, 0xfc, 0x14, 0xa6, 0xb7, 0xbb, 0xe0, 0x49, 0xe9, 0x98, 0x32, 0x9f, 0xf9, 0x54, 0xa2, 0x14, + 0x3c, 0x7d, 0xe6, 0x45, 0x5c, 0xfb, 0x62, 0xc1, 0xcd, 0xbc, 0xe0, 0x86, 0x15, 0x80, 0x2d, 0x98, + 0x17, 0xa1, 0x61, 0x10, 0xa5, 0xbe, 0x3f, 0xe2, 0x45, 0xf1, 0xe2, 0x07, 0xb8, 0xc3, 0xdd, 0x08, + 0x8a, 0x79, 0x3b, 0xa2, 0xf4, 0xf7, 0x51, 0x54, 0x10, 0x4b, 0xb5, 0x28, 0x85, 0xcd, 0x2e, 0x2f, + 0x5a, 0xf4, 0x70, 0x44, 0xa9, 0xe5, 0x77, 0x2d, 0x5e, 0xb3, 0x12, 0xd7, 0x42, 0xcf, 0x74, 0x86, + 0xc1, 0x92, 0x73, 0x23, 0x4a, 0xed, 0xfb, 0x56, 0x34, 0xa5, 0x15, 0x59, 0x16, 0xa5, 0x8e, 0xdf, + 0xe3, 0x95, 0x4b, 0xa9, 0x3b, 0x68, 0x76, 0x74, 0x12, 0x37, 0x5b, 0x0a, 0x0c, 0x45, 0x09, 0x43, + 0x23, 0xca, 0x6b, 0x59, 0x94, 0x84, 0x25, 0x57, 0xb3, 0x82, 0xab, 0xa8, 0xe4, 0x64, 0x56, 0xc2, + 0xbc, 0x6e, 0x51, 0x32, 0x9a, 0xbc, 0x60, 0x4d, 0x12, 0x06, 0xc6, 0xdb, 0x6f, 0x26, 0xc6, 0xdb, + 0x5f, 0x46, 0xc7, 0x69, 0x46, 0xd5, 0x2b, 0x89, 0x5f, 0x51, 0xb2, 0xd1, 0x12, 0xb1, 0xca, 0x84, + 0x52, 0xc1, 0xe2, 0xf6, 0x42, 0xf1, 0x7c, 0xe5, 0x03, 0x35, 0xe3, 0xaa, 0x15, 0xad, 0x80, 0xed, + 0x12, 0xad, 0x90, 0xb8, 0xed, 0x39, 0x7b, 0x63, 0xd7, 0x4a, 0x94, 0x46, 0xfa, 0xc8, 0x76, 0x4d, + 0x6f, 0x24, 0x71, 0x19, 0x8b, 0x78, 0x9d, 0x90, 0x3f, 0xc6, 0xb2, 0xeb, 0x65, 0x96, 0xf1, 0x00, + 0x19, 0xc9, 0x7b, 0xbd, 0x4c, 0xde, 0xb8, 0x0a, 0xd7, 0x64, 0xcd, 0xf7, 0x8d, 0xb1, 0x7e, 0x7b, + 0x27, 0xa1, 0x59, 0x42, 0xa6, 0xe9, 0x82, 0x20, 0x61, 0x88, 0x85, 0x96, 0xf4, 0xc2, 0x1b, 0x05, + 0xba, 0x29, 0x43, 0x48, 0xe8, 0x8f, 0x63, 0x32, 0xd4, 0x1c, 0x27, 0x25, 0xc8, 0x71, 0x1c, 0x06, + 0x93, 0xd0, 0x95, 0xaa, 0xbd, 0x95, 0x6c, 0x21, 0x3b, 0xd4, 0xed, 0x86, 0x56, 0xd5, 0x4e, 0xa7, + 0xc5, 0x64, 0xf9, 0xad, 0x7d, 0x27, 0xb3, 0xe5, 0x75, 0x64, 0x07, 0xa1, 0x0c, 0xbc, 0x01, 0x8e, + 0xb1, 0x3e, 0xaa, 0xb8, 0x22, 0x8c, 0x76, 0x3b, 0xf6, 0xe8, 0x74, 0xe1, 0x2d, 0xa5, 0x54, 0x90, + 0x78, 0x11, 0x06, 0x24, 0x71, 0x71, 0xa9, 0x54, 0x12, 0x40, 0xe0, 0x03, 0x78, 0x86, 0xa7, 0x76, + 0xbb, 0x2d, 0x48, 0x5d, 0x9f, 0x52, 0x37, 0xae, 0x57, 0x0a, 0xc5, 0x96, 0x62, 0x08, 0x92, 0x4f, + 0xcd, 0xb8, 0x08, 0x0a, 0x0a, 0x0a, 0xc0, 0x71, 0x3f, 0xd9, 0xeb, 0x76, 0x1d, 0x7a, 0xda, 0xe9, + 0x70, 0x8f, 0x51, 0x02, 0x8f, 0xb1, 0x56, 0x90, 0x0a, 0xf1, 0x61, 0x08, 0x3c, 0x3c, 0x31, 0x7f, + 0x2c, 0x49, 0x6a, 0xa9, 0xa1, 0x2e, 0x00, 0x2c, 0x41, 0x60, 0x0f, 0xc7, 0x00, 0x56, 0xa8, 0xe5, + 0xa4, 0x5c, 0x74, 0xe4, 0x02, 0x0f, 0x7e, 0x24, 0x1e, 0x4b, 0xd2, 0x66, 0xe2, 0x49, 0x55, 0x96, + 0x6b, 0xd5, 0xc2, 0x97, 0x45, 0xdc, 0xdc, 0xdf, 0x88, 0x9a, 0xba, 0x84, 0x9b, 0xba, 0x84, 0x9c, + 0xba, 0x88, 0x9d, 0xa6, 0xac, 0x54, 0x73, 0xf4, 0x62, 0x55, 0x91, 0x58, 0xf2, 0xcd, 0xeb, 0x03, + 0xf4, 0xc7, 0x05, 0x31, 0xb9, 0x3d, 0xf7, 0xea, 0xbd, 0x42, 0x1a, 0x32, 0x6d, 0x7f, 0x71, 0xb0, + 0xc3, 0x64, 0x31, 0xc0, 0xfd, 0xc0, 0xf5, 0xd2, 0xf8, 0xcf, 0x44, 0x00, 0xfd, 0x51, 0x09, 0xfd, + 0x01, 0x95, 0x50, 0xba, 0x85, 0xca, 0x1f, 0x13, 0xd4, 0x50, 0x32, 0x73, 0x06, 0xa7, 0x12, 0xaa, + 0x38, 0xa1, 0x32, 0x11, 0x6c, 0x13, 0x6b, 0x40, 0xa9, 0xcd, 0x2a, 0x00, 0xf4, 0xf6, 0x9f, 0xaa, + 0x03, 0xf1, 0x64, 0x08, 0x22, 0x1a, 0x62, 0x54, 0x48, 0x1f, 0x05, 0x5d, 0x47, 0x18, 0xa6, 0xfa, + 0xe5, 0x48, 0xf3, 0x7f, 0x98, 0xb5, 0xaa, 0x80, 0xe2, 0xe4, 0x77, 0x55, 0x58, 0xa7, 0x10, 0x4b, + 0x3b, 0x3a, 0x58, 0x80, 0x00, 0xdc, 0xd4, 0x30, 0x05, 0x6a, 0x8a, 0x57, 0x89, 0xac, 0x4f, 0x57, + 0x7f, 0xa3, 0x4a, 0x86, 0x9e, 0x51, 0xab, 0x86, 0x0e, 0xba, 0x4d, 0x8e, 0x73, 0xb4, 0x87, 0xae, + 0x49, 0x1f, 0xa3, 0xd6, 0x36, 0xab, 0xe1, 0xa9, 0xcf, 0xe0, 0xd6, 0xb8, 0x8b, 0xba, 0x36, 0x74, + 0xd0, 0x31, 0x6b, 0x1b, 0x78, 0xac, 0x66, 0x4d, 0x03, 0xd0, 0x59, 0x4b, 0x0d, 0x10, 0x87, 0x40, + 0x7f, 0xa3, 0x54, 0x59, 0xa2, 0x5c, 0x67, 0x10, 0xcb, 0x0d, 0xdf, 0xbd, 0x4b, 0x01, 0x88, 0x0a, + 0xfa, 0x50, 0x37, 0xd6, 0xb5, 0xf7, 0x59, 0xfb, 0x28, 0x7f, 0xab, 0x23, 0xcc, 0x72, 0x0f, 0x1f, + 0x00, 0x44, 0xad, 0xc4, 0x29, 0xe9, 0xb5, 0x20, 0x30, 0x08, 0xd0, 0x42, 0xe1, 0x54, 0x19, 0xa0, + 0xf6, 0x30, 0xf1, 0xa7, 0xad, 0xbf, 0x17, 0xde, 0x4b, 0x16, 0xfe, 0x56, 0x83, 0xef, 0xdf, 0x53, + 0xe0, 0xff, 0xdd, 0x82, 0x62, 0xd1, 0x85, 0x3b, 0x81, 0x83, 0xf6, 0x91, 0x80, 0xe0, 0x18, 0x08, + 0x6c, 0xf5, 0x77, 0xf5, 0xf6, 0x1e, 0xa8, 0xa8, 0x58, 0xa1, 0x81, 0x62, 0xc4, 0x0d, 0x64, 0x7c, + 0xe7, 0x0a, 0xa4, 0x28, 0x25, 0x68, 0xa6, 0x20, 0x4d, 0x46, 0x10, 0xfa, 0x5d, 0x80, 0x0b, 0xb6, + 0xef, 0x53, 0xd0, 0x48, 0x6e, 0xe8, 0x8c, 0x2b, 0x6f, 0x94, 0xa9, 0x28, 0x0d, 0x75, 0x97, 0x8e, + 0x08, 0xf3, 0x1e, 0xab, 0x43, 0x19, 0x5d, 0x4d, 0x2a, 0x0d, 0x65, 0x70, 0xd4, 0x3c, 0xc3, 0xd4, + 0x63, 0x99, 0x4b, 0x89, 0x13, 0x1c, 0x95, 0xea, 0x4c, 0xc9, 0xca, 0x6d, 0xcb, 0x76, 0xc0, 0x36, + 0xb8, 0xb7, 0xca, 0xdd, 0xc2, 0x3d, 0x0c, 0x5a, 0x0b, 0x43, 0xdf, 0x06, 0x6d, 0x4d, 0x53, 0xe8, + 0xaa, 0xa3, 0x61, 0x36, 0x74, 0x30, 0xcd, 0x7c, 0xb6, 0xd2, 0x18, 0xee, 0x6f, 0x22, 0xbe, 0xa4, + 0xe8, 0x1b, 0x3d, 0xa1, 0xb6, 0xbe, 0x7f, 0x37, 0xb6, 0xd4, 0xef, 0xdf, 0xc7, 0x5b, 0xaa, 0x08, + 0x44, 0x31, 0xf4, 0xa1, 0xcc, 0xdc, 0x76, 0x68, 0x32, 0x94, 0x79, 0x1c, 0x2c, 0xa5, 0xa2, 0xb2, + 0xed, 0x82, 0xaa, 0x7d, 0xff, 0x1e, 0x17, 0xe3, 0x13, 0x6f, 0xa2, 0x16, 0x01, 0x5a, 0x2d, 0x8a, + 0xa2, 0xd4, 0xe5, 0x80, 0xba, 0x01, 0x77, 0x1c, 0x4a, 0x1f, 0x23, 0xb9, 0xc0, 0x1f, 0xfe, 0xc4, + 0x82, 0x01, 0x22, 0xa4, 0x8d, 0xb4, 0x20, 0x91, 0x06, 0x8f, 0xb0, 0xe1, 0x71, 0x9c, 0x16, 0x48, + 0xaa, 0x67, 0x3c, 0x50, 0x12, 0x0c, 0x20, 0x76, 0x09, 0x2d, 0x3b, 0xc0, 0x7d, 0xda, 0xb6, 0x45, + 0x03, 0x02, 0xe1, 0xbf, 0x4f, 0xc0, 0xa2, 0x45, 0x1b, 0xb7, 0x7c, 0x3f, 0x54, 0x44, 0xcf, 0x5a, + 0x90, 0x7a, 0xb2, 0xe9, 0x47, 0xde, 0x77, 0x6a, 0xc8, 0x0e, 0x64, 0x1b, 0xd2, 0x98, 0x2b, 0xe5, + 0xa6, 0xde, 0x43, 0x92, 0xb0, 0xba, 0x5d, 0x70, 0xdf, 0x53, 0x71, 0xad, 0x8c, 0xce, 0xbc, 0x74, + 0x08, 0x4b, 0x95, 0x31, 0xf3, 0x0f, 0x5d, 0xad, 0xb2, 0xad, 0x46, 0x5d, 0xf7, 0x60, 0x22, 0x7f, + 0xe8, 0x20, 0x0f, 0xb1, 0xab, 0x33, 0x82, 0xd5, 0x37, 0xda, 0x6a, 0xc6, 0x56, 0x61, 0x94, 0xd6, + 0xf3, 0xe2, 0x04, 0x2b, 0x5a, 0x7a, 0xf3, 0x76, 0x74, 0x27, 0x3d, 0xe2, 0x25, 0xad, 0xde, 0x49, + 0x27, 0xec, 0x46, 0xbb, 0x93, 0x2e, 0xd9, 0x4d, 0x8e, 0x77, 0x4d, 0xf5, 0x51, 0x36, 0x2f, 0x85, + 0xfa, 0x31, 0x68, 0x1b, 0xb9, 0xe3, 0x78, 0xd0, 0x2b, 0xcd, 0x1a, 0x60, 0xa7, 0x75, 0x5a, 0xb5, + 0x3b, 0xa9, 0x78, 0x9f, 0x15, 0x06, 0x16, 0xab, 0xd4, 0x09, 0x20, 0x80, 0xe8, 0xa4, 0x52, 0x61, + 0xfa, 0x0f, 0xf1, 0x4f, 0x4d, 0x47, 0x34, 0xb0, 0x6c, 0xe2, 0xe8, 0xe1, 0x5f, 0x46, 0x3a, 0x65, + 0x64, 0xd4, 0x4c, 0xca, 0xc9, 0xc0, 0xbd, 0x28, 0x4e, 0x0f, 0xe5, 0xfe, 0x20, 0xb0, 0x52, 0xb7, + 0x2d, 0xe9, 0x51, 0x3a, 0x91, 0x2e, 0x25, 0x47, 0xa2, 0x52, 0x78, 0x87, 0xe5, 0x81, 0xe7, 0x87, + 0xa9, 0x14, 0x3c, 0x89, 0xfa, 0x36, 0xbd, 0x2d, 0xdc, 0x65, 0x42, 0xf8, 0xe1, 0x52, 0x7b, 0xaa, + 0xdf, 0xca, 0xb2, 0x7c, 0x78, 0x57, 0x3d, 0x5d, 0x82, 0xca, 0x23, 0x54, 0x3e, 0x82, 0xaa, 0xe1, + 0x0a, 0xd8, 0x05, 0xe5, 0x20, 0x5d, 0xe8, 0xa7, 0xd1, 0xc4, 0xa5, 0x7b, 0x5d, 0x91, 0xea, 0x48, + 0x30, 0x24, 0x0c, 0x9f, 0x99, 0x52, 0xa5, 0x5b, 0x17, 0x55, 0x0a, 0x76, 0x72, 0xc2, 0xf5, 0xd4, + 0xe9, 0x2d, 0xbd, 0x03, 0x71, 0x0b, 0x41, 0x14, 0xc1, 0xb0, 0x86, 0xb7, 0x40, 0x15, 0x0f, 0x2e, + 0x40, 0x93, 0x01, 0x5c, 0x72, 0x77, 0x7c, 0x6d, 0x75, 0x50, 0xed, 0xc0, 0x34, 0x7d, 0x11, 0x7e, + 0x76, 0xb7, 0x14, 0xa0, 0xf8, 0xae, 0x4e, 0x45, 0x09, 0x3a, 0xcb, 0xa8, 0x89, 0xae, 0x80, 0xa8, + 0x55, 0xec, 0x0a, 0xd6, 0xed, 0xbb, 0x77, 0xd8, 0x99, 0xae, 0xdb, 0x78, 0xa3, 0xc1, 0x8d, 0x07, + 0x6b, 0xb2, 0xa3, 0x03, 0x08, 0x74, 0xb9, 0xab, 0xeb, 0xb0, 0x8c, 0xdd, 0x0f, 0x02, 0x50, 0xb1, + 0xf6, 0x81, 0x82, 0x54, 0x09, 0x15, 0x41, 0xa8, 0xec, 0xe2, 0x4d, 0xba, 0x83, 0xbf, 0xe2, 0x94, + 0x91, 0x76, 0xd6, 0x20, 0xad, 0xea, 0x7a, 0xe7, 0xc7, 0x4d, 0x18, 0xe1, 0x59, 0x35, 0xa0, 0x57, + 0x43, 0xf4, 0x00, 0x47, 0x40, 0x9d, 0x71, 0x6d, 0xb0, 0xa5, 0x15, 0x0a, 0x50, 0xde, 0x47, 0xcd, + 0x21, 0x75, 0xb6, 0xe7, 0x68, 0x1b, 0xac, 0x07, 0x9b, 0xfd, 0x7a, 0x08, 0x1a, 0x88, 0x13, 0xa6, + 0x1c, 0x6f, 0x29, 0x70, 0xc8, 0xbd, 0xd3, 0x6f, 0x0d, 0xc9, 0x96, 0xbc, 0x3b, 0x54, 0xe8, 0x42, + 0x3a, 0x2a, 0x94, 0x7b, 0x46, 0x3f, 0x45, 0x81, 0x0d, 0x72, 0xe8, 0x35, 0x41, 0x1c, 0xdc, 0x6e, + 0x0a, 0x16, 0x91, 0xdc, 0x37, 0xcc, 0x26, 0x9e, 0x0f, 0x4c, 0x69, 0x92, 0xa0, 0x08, 0xa2, 0x28, + 0xdf, 0x7b, 0xb6, 0x9b, 0x12, 0x60, 0x36, 0xb5, 0xb4, 0x6e, 0xa6, 0xdb, 0xe9, 0x30, 0x6d, 0xcd, + 0x2d, 0x4d, 0x2d, 0x1d, 0x17, 0xdd, 0xa7, 0x75, 0x55, 0xba, 0xff, 0xd3, 0x01, 0xf9, 0xf9, 0xfe, + 0x9d, 0xea, 0x3a, 0x50, 0xf5, 0x43, 0xaa, 0xce, 0xc5, 0xa5, 0x26, 0x4a, 0xc8, 0x5d, 0xb1, 0x02, + 0x5d, 0x00, 0x8e, 0x8c, 0xcb, 0xd3, 0x29, 0x16, 0x2d, 0xf1, 0xb5, 0x1e, 0x0b, 0xfc, 0x8c, 0xbd, + 0xce, 0xcf, 0x1a, 0xb3, 0xc8, 0x88, 0xfd, 0x31, 0xa9, 0x83, 0x58, 0x4c, 0xef, 0xa6, 0xd3, 0x7f, + 0xaa, 0x33, 0x23, 0xc9, 0xb1, 0x71, 0x62, 0x63, 0xf4, 0x0f, 0x86, 0x11, 0x24, 0xf3, 0x99, 0x9c, + 0x9d, 0x36, 0x2f, 0x09, 0x8b, 0xb6, 0x20, 0xd8, 0xfa, 0x63, 0x82, 0x71, 0x46, 0xd4, 0x7b, 0xf6, + 0x3e, 0xf0, 0xdc, 0x6c, 0x10, 0xe2, 0x5b, 0xa9, 0x24, 0x63, 0x92, 0xf7, 0x7f, 0x4c, 0x9c, 0xe9, + 0x7b, 0x92, 0x69, 0x10, 0xa1, 0xce, 0x73, 0x81, 0x99, 0x4b, 0x30, 0xdc, 0x15, 0x62, 0xf4, 0xfb, + 0x8e, 0xdd, 0x66, 0x87, 0xf5, 0x58, 0x1b, 0xe1, 0x9f, 0x2a, 0xdd, 0x46, 0x21, 0xc3, 0x29, 0xff, + 0xc7, 0xdd, 0x3a, 0xd9, 0xfb, 0x7c, 0x49, 0xea, 0xa7, 0xc7, 0xc7, 0xb5, 0x93, 0x5d, 0x50, 0x38, + 0x03, 0x27, 0xb4, 0xfb, 0x0e, 0x25, 0x10, 0xd2, 0xf5, 0x0c, 0xd7, 0x0c, 0x88, 0xeb, 0x81, 0x69, + 0x1a, 0xf4, 0xfb, 0xb0, 0x3e, 0x40, 0xe1, 0xd8, 0x2e, 0xa9, 0x9d, 0x1d, 0x66, 0x21, 0x38, 0x09, + 0x58, 0x6a, 0x17, 0xf5, 0xce, 0xf6, 0x7f, 0x5c, 0x41, 0x1a, 0x40, 0x6f, 0xe4, 0xdd, 0x3b, 0x02, + 0x0a, 0x16, 0x3a, 0x76, 0xf0, 0xd9, 0x9d, 0x9a, 0xfa, 0x3f, 0x6f, 0xaf, 0x5c, 0xec, 0x8a, 0x25, + 0x80, 0x3b, 0xa8, 0xb8, 0x08, 0x04, 0xdd, 0xef, 0x43, 0x62, 0x38, 0x0e, 0x06, 0xe0, 0x63, 0x62, + 0x19, 0x43, 0xd4, 0x6e, 0xd0, 0x1f, 0x31, 0x69, 0x07, 0x7c, 0x69, 0x36, 0x08, 0xd3, 0x70, 0x3c, + 0x89, 0x08, 0xa3, 0x70, 0x3f, 0xc3, 0xeb, 0xf0, 0x62, 0x10, 0xa0, 0x8e, 0x0d, 0xa4, 0x60, 0x73, + 0x92, 0xc7, 0x46, 0xcf, 0xf9, 0x8f, 0xfb, 0x36, 0x43, 0xf0, 0x68, 0x34, 0x86, 0x23, 0x95, 0x18, + 0xf7, 0xaf, 0x78, 0xa6, 0xf4, 0x3f, 0x2e, 0x21, 0x6f, 0x79, 0x47, 0x34, 0xa8, 0xe0, 0x13, 0x21, + 0x7f, 0x4c, 0x58, 0x24, 0x12, 0x51, 0x92, 0x97, 0x11, 0xd2, 0xf1, 0x6d, 0x88, 0xaa, 0x9d, 0xf1, + 0x57, 0x96, 0x72, 0x67, 0x40, 0x27, 0xcb, 0x30, 0x03, 0xb6, 0xa3, 0xf2, 0xd5, 0x36, 0x79, 0xfd, + 0xd5, 0x72, 0x7d, 0x3c, 0xb2, 0xe7, 0x56, 0xc8, 0x76, 0x5c, 0x88, 0x03, 0x0e, 0x56, 0x41, 0x3a, + 0x9d, 0x05, 0x98, 0x5f, 0x60, 0x39, 0x97, 0xbf, 0x8e, 0x01, 0x4b, 0xf3, 0x95, 0xac, 0xc7, 0xd0, + 0x51, 0x4e, 0x1e, 0xa0, 0x00, 0x1d, 0xf2, 0xa1, 0x56, 0xe1, 0xe7, 0x21, 0xf0, 0x7e, 0x50, 0xc1, + 0x73, 0x0f, 0x78, 0x67, 0x56, 0x84, 0xbd, 0x8b, 0x8b, 0xd3, 0x8b, 0x37, 0x59, 0x97, 0xad, 0x60, + 0x02, 0xf6, 0xc7, 0x70, 0x81, 0x02, 0x0f, 0xae, 0x37, 0x72, 0xa3, 0x03, 0x09, 0xb2, 0x30, 0x5b, + 0x71, 0xc0, 0x7f, 0x90, 0x69, 0x81, 0x49, 0xf0, 0x57, 0x1d, 0x63, 0x2b, 0xa9, 0xc1, 0x2e, 0xd5, + 0x3e, 0x08, 0x5b, 0x27, 0xcd, 0x8c, 0xdd, 0x56, 0x6b, 0xfb, 0x53, 0xed, 0xe2, 0xe4, 0xf0, 0xe4, + 0xe0, 0xcd, 0x56, 0xb6, 0xb5, 0x4d, 0x2e, 0x67, 0x27, 0x4b, 0xdb, 0x63, 0x82, 0xf1, 0x17, 0xc8, + 0x40, 0xc8, 0xfc, 0x1a, 0x14, 0x02, 0x16, 0x49, 0xc9, 0x8b, 0x40, 0x29, 0xc3, 0xe9, 0x5b, 0x86, + 0x08, 0x62, 0x13, 0x90, 0x16, 0xc4, 0x0a, 0xc4, 0xee, 0xba, 0x1e, 0x04, 0x08, 0x00, 0xe6, 0x11, + 0xea, 0x32, 0x5b, 0x89, 0x52, 0x86, 0x3b, 0x0f, 0x20, 0x55, 0x04, 0x04, 0x15, 0x44, 0x9a, 0x0b, + 0x1e, 0x0d, 0x6c, 0x7c, 0xa9, 0x7b, 0x00, 0xa2, 0x86, 0x89, 0x9f, 0xe8, 0x20, 0x32, 0xdf, 0x39, + 0x9d, 0x09, 0x1d, 0x1f, 0x94, 0xd9, 0x52, 0x51, 0xfa, 0x2a, 0xdb, 0x2e, 0x44, 0x77, 0x8d, 0xcb, + 0xe3, 0x23, 0xbd, 0x23, 0x35, 0x16, 0x3d, 0x4d, 0x5d, 0x60, 0x87, 0xa1, 0xc1, 0x45, 0x02, 0x83, + 0xbb, 0xe3, 0x3d, 0x82, 0xe3, 0x7b, 0xc8, 0xcc, 0xe9, 0x74, 0xfa, 0x2b, 0x6e, 0xf4, 0xbc, 0x97, + 0x10, 0x6c, 0x97, 0xc1, 0xad, 0xaa, 0x1d, 0x87, 0x8b, 0xae, 0xce, 0xdd, 0xa9, 0x57, 0x3b, 0x52, + 0x55, 0x3b, 0xc2, 0x9d, 0x79, 0x14, 0x5b, 0xd1, 0x13, 0xf3, 0x36, 0x3e, 0x44, 0x5d, 0x71, 0x9f, + 0x24, 0x61, 0x8a, 0xe5, 0xcd, 0xf2, 0x5f, 0x0b, 0xcd, 0xc4, 0xca, 0x2b, 0x40, 0x59, 0x9f, 0x5c, + 0x75, 0x39, 0x49, 0x90, 0x64, 0xd3, 0x2c, 0x58, 0x0c, 0x4b, 0x4f, 0x25, 0x5b, 0x64, 0xe8, 0x5f, + 0x8e, 0x98, 0xd5, 0xaa, 0x11, 0x58, 0xe4, 0x16, 0x39, 0x60, 0xd9, 0x55, 0x65, 0xa6, 0x7d, 0x79, + 0x3c, 0x6a, 0xb0, 0xe8, 0x33, 0x2e, 0x33, 0xa0, 0xcc, 0xd8, 0x02, 0x47, 0x3a, 0x56, 0xc5, 0x16, + 0x58, 0x53, 0xfb, 0x2f, 0x9a, 0x36, 0xee, 0x24, 0x88, 0x11, 0xfd, 0x6e, 0x2b, 0x25, 0xa4, 0x2d, + 0xb0, 0x94, 0xe8, 0x50, 0xe1, 0x9d, 0x3a, 0xbb, 0xd3, 0xe0, 0x4e, 0x64, 0x3e, 0x2d, 0x42, 0xa9, + 0x1a, 0x1e, 0xb0, 0x67, 0x7f, 0xa2, 0x50, 0x75, 0x65, 0x74, 0x10, 0x9b, 0x2c, 0x8d, 0xe4, 0x4b, + 0xfc, 0xe9, 0x02, 0x64, 0x31, 0x65, 0xfc, 0xe5, 0x48, 0x36, 0xfc, 0xc1, 0x3f, 0x11, 0xca, 0x31, + 0xc9, 0xf5, 0x40, 0x39, 0x9c, 0xf0, 0xb6, 0xcc, 0xfe, 0x13, 0xa0, 0x1c, 0xb5, 0x0d, 0x9b, 0x18, + 0x98, 0x9b, 0x18, 0x6a, 0x5d, 0x7b, 0x3c, 0x8f, 0xae, 0x0b, 0xf8, 0xbe, 0x04, 0x61, 0x67, 0xd5, + 0x05, 0x29, 0x39, 0xb2, 0x09, 0x4f, 0xc8, 0xdc, 0x1a, 0xe6, 0x84, 0x75, 0x21, 0x4a, 0x0a, 0x47, + 0x85, 0x3b, 0x06, 0xb8, 0xfd, 0x30, 0x8c, 0x2e, 0x44, 0x9b, 0x0b, 0x51, 0x53, 0x0c, 0xaa, 0x53, + 0x16, 0x38, 0x2c, 0x60, 0xcf, 0x61, 0xb4, 0xb4, 0x93, 0xd5, 0x70, 0x44, 0xbc, 0xf2, 0xf3, 0x97, + 0xbe, 0xee, 0xae, 0x7a, 0x7e, 0x49, 0xfe, 0x48, 0x0b, 0x5c, 0x10, 0x81, 0x18, 0x6d, 0x87, 0x1a, + 0x3e, 0xc3, 0xff, 0x05, 0xd8, 0x85, 0x3a, 0x3d, 0xc9, 0x61, 0xc0, 0xae, 0x3f, 0x48, 0x0c, 0xea, + 0x4b, 0x96, 0xa4, 0x88, 0x3f, 0xb3, 0x38, 0x90, 0xbb, 0x26, 0x1d, 0x1e, 0x7b, 0x26, 0x85, 0x00, + 0xa3, 0x3a, 0x57, 0x86, 0x3a, 0xac, 0x3c, 0xae, 0xff, 0x71, 0x97, 0x34, 0x0a, 0xb8, 0xa0, 0xf6, + 0xcc, 0xf0, 0x8d, 0x5e, 0xc0, 0x42, 0x88, 0xab, 0x8b, 0xa3, 0x26, 0x4c, 0xa1, 0x6d, 0xf1, 0xb2, + 0x14, 0x5f, 0x48, 0xf2, 0xac, 0x61, 0xc0, 0x2a, 0xc1, 0xb3, 0x9d, 0xc7, 0xb1, 0x18, 0x57, 0xa0, + 0xc3, 0x39, 0x0b, 0x10, 0xd0, 0x50, 0xce, 0x22, 0x84, 0x6d, 0xf0, 0x1f, 0x04, 0x96, 0x57, 0xd4, + 0x75, 0x96, 0xbb, 0x5b, 0x54, 0x07, 0xe0, 0xf3, 0xcf, 0xf1, 0x8b, 0xdc, 0x05, 0x6c, 0xcf, 0x9b, + 0xbc, 0xd1, 0xfb, 0xfe, 0x68, 0xa9, 0x41, 0x14, 0xc3, 0xb0, 0x0a, 0xbf, 0x8d, 0xee, 0x91, 0x8d, + 0x89, 0x1e, 0xdb, 0xdc, 0x61, 0xc9, 0xf4, 0x03, 0x28, 0xa0, 0xa2, 0x68, 0xf7, 0xa2, 0x28, 0x68, + 0x5d, 0x9c, 0xcd, 0xb2, 0x55, 0xcf, 0xa8, 0xa5, 0xd6, 0x6a, 0x8d, 0x10, 0x39, 0xd0, 0xcc, 0x39, + 0x5b, 0xa7, 0x90, 0xf7, 0x71, 0x13, 0xc4, 0xf4, 0x28, 0xb7, 0xfb, 0xfc, 0x3d, 0x52, 0xdc, 0x25, + 0x69, 0x51, 0x62, 0x10, 0xf6, 0x19, 0x0c, 0xae, 0x20, 0x99, 0x7e, 0xac, 0xa2, 0x7a, 0x4f, 0x68, + 0xc8, 0x90, 0xa5, 0xd4, 0x9e, 0xc1, 0x66, 0x1d, 0xa2, 0x8c, 0x32, 0x49, 0x9b, 0x04, 0x4b, 0x93, + 0x73, 0xfb, 0xdd, 0x3b, 0x64, 0xa9, 0x07, 0xc0, 0x8e, 0xd7, 0x4d, 0x09, 0x97, 0xa0, 0xc9, 0x03, + 0xe6, 0x0a, 0x92, 0xf7, 0x42, 0x1a, 0x1c, 0xd4, 0xf7, 0x68, 0x8e, 0x18, 0x8a, 0x11, 0x56, 0x7c, + 0xff, 0x21, 0xd2, 0xde, 0xe0, 0x13, 0x4e, 0x81, 0x78, 0x6b, 0xd8, 0x21, 0xf2, 0x7c, 0x5c, 0xb3, + 0x2b, 0x88, 0x20, 0x00, 0x2b, 0xd1, 0xa1, 0x94, 0x08, 0x00, 0xa3, 0x60, 0xe3, 0x55, 0x0d, 0x66, + 0x59, 0x2d, 0x31, 0x8a, 0x72, 0xc2, 0x66, 0xb7, 0x4a, 0xd7, 0x4f, 0x97, 0x26, 0x28, 0x06, 0x13, + 0xc6, 0x24, 0xc5, 0x12, 0x1c, 0x4b, 0x6d, 0x4c, 0xa7, 0x46, 0x30, 0x76, 0xdb, 0x64, 0x26, 0x9e, + 0x7d, 0x10, 0x74, 0xc6, 0xff, 0x60, 0x16, 0xfd, 0x46, 0x59, 0x61, 0xd7, 0x6c, 0x0e, 0xbb, 0x67, + 0x10, 0x89, 0xd3, 0xb5, 0x28, 0xf2, 0x0c, 0x9b, 0x18, 0x25, 0x4f, 0xde, 0xa8, 0x73, 0xd7, 0x16, + 0x5d, 0xaa, 0x99, 0x0f, 0x2a, 0x86, 0xfe, 0x78, 0xb2, 0x96, 0xfc, 0x20, 0x66, 0xeb, 0xcb, 0x23, + 0xb2, 0x8a, 0xd1, 0xfa, 0x03, 0x7f, 0x7f, 0x64, 0xd8, 0x21, 0xe9, 0x50, 0xf0, 0xb6, 0x52, 0xb1, + 0x0f, 0x23, 0xa4, 0x17, 0x33, 0xe3, 0x9c, 0x23, 0x69, 0x21, 0xe9, 0xce, 0x48, 0x93, 0x1e, 0x0d, + 0x2d, 0x0f, 0x7c, 0x0e, 0x74, 0x7f, 0x04, 0x09, 0x0f, 0x86, 0x53, 0x3f, 0x00, 0xe7, 0x39, 0xe9, + 0xd1, 0x40, 0x50, 0xb2, 0xe2, 0xd2, 0x4c, 0x25, 0x3c, 0x36, 0x5e, 0xa1, 0x53, 0x50, 0xad, 0xd1, + 0xf0, 0xa1, 0x8c, 0x35, 0x29, 0xb1, 0xba, 0x16, 0x69, 0x57, 0x9c, 0xb6, 0x31, 0x8c, 0xc6, 0x24, + 0x55, 0x5c, 0x4e, 0x7d, 0x1f, 0x03, 0x51, 0x11, 0x02, 0x53, 0x30, 0x9d, 0xe1, 0x87, 0xd4, 0x7a, + 0x42, 0xc6, 0x79, 0x48, 0x4c, 0x9c, 0x87, 0x97, 0x76, 0x8f, 0x7a, 0x03, 0x88, 0x19, 0x13, 0x39, + 0x09, 0xfa, 0x2a, 0x11, 0x01, 0x54, 0x55, 0x9a, 0x13, 0xc5, 0xca, 0x33, 0xc3, 0xcc, 0x73, 0xa0, + 0xbf, 0x34, 0xd0, 0xe2, 0x20, 0xd3, 0x95, 0x45, 0xb0, 0xa5, 0x82, 0x3f, 0x96, 0xd0, 0xa4, 0xc2, + 0xb1, 0xcd, 0x92, 0xea, 0x5f, 0x1b, 0x20, 0x60, 0x3c, 0xf1, 0x8f, 0xe9, 0xdc, 0xbd, 0x21, 0xf4, + 0x85, 0xb9, 0x5d, 0x0a, 0xc2, 0x0a, 0xec, 0xc3, 0xfd, 0x52, 0x18, 0x02, 0x65, 0x32, 0x05, 0x31, + 0x72, 0x24, 0x81, 0xb0, 0x76, 0x99, 0xd4, 0x61, 0x32, 0x0a, 0x28, 0x8e, 0x22, 0xc4, 0x99, 0xe0, + 0x1a, 0x43, 0xbb, 0x6b, 0x84, 0x9e, 0x0f, 0x86, 0xc4, 0xee, 0xb7, 0x3c, 0xc3, 0x37, 0xe5, 0x91, + 0x6f, 0x87, 0x94, 0xd9, 0xaa, 0xc8, 0x6f, 0x4e, 0xb0, 0x62, 0xde, 0xd2, 0x94, 0xe9, 0x23, 0x6d, + 0xd7, 0xb9, 0x9b, 0xcc, 0xb7, 0x1f, 0x84, 0x67, 0x79, 0x26, 0xec, 0x1b, 0x36, 0x26, 0x42, 0x40, + 0x45, 0x21, 0x20, 0x41, 0x13, 0x52, 0x21, 0xb0, 0xc8, 0x40, 0x03, 0x4c, 0x59, 0xfa, 0x7f, 0xdd, + 0x5c, 0x2c, 0x76, 0x7e, 0x0d, 0x14, 0xaa, 0xcb, 0xb6, 0x65, 0x5e, 0x06, 0xf9, 0xfc, 0x12, 0x08, + 0x26, 0xec, 0x5e, 0x00, 0x31, 0x5e, 0x84, 0x60, 0xc1, 0xe3, 0x4b, 0x03, 0x1d, 0x9d, 0xbc, 0x04, + 0xc2, 0x83, 0x9b, 0x17, 0x81, 0xae, 0x5e, 0x01, 0x73, 0xf2, 0x22, 0x0c, 0x13, 0xa4, 0x97, 0xe8, + 0x07, 0x2a, 0xee, 0x05, 0x10, 0xb4, 0x81, 0xab, 0x20, 0x98, 0xf3, 0x8b, 0x00, 0x30, 0xab, 0xfb, + 0x7c, 0x1f, 0x4c, 0x22, 0x03, 0xaf, 0xcf, 0xd2, 0xc1, 0x71, 0x4e, 0x93, 0xa5, 0x86, 0x93, 0x69, + 0xd2, 0x3b, 0x69, 0x66, 0xd8, 0x75, 0x00, 0x66, 0x59, 0x2f, 0x58, 0x47, 0xf2, 0xa3, 0x34, 0xb3, + 0xf1, 0x0b, 0xe5, 0x63, 0x89, 0xb9, 0x04, 0x20, 0x47, 0x33, 0x45, 0xbb, 0xb4, 0x11, 0xf6, 0x9a, + 0x85, 0x12, 0x6d, 0x96, 0x82, 0xd3, 0xa0, 0x2f, 0xbb, 0x20, 0x7d, 0xdf, 0x0b, 0x3d, 0x88, 0x3f, + 0x3e, 0x18, 0x0e, 0xf5, 0xc1, 0x9f, 0xff, 0x04, 0xcb, 0x98, 0x87, 0x26, 0x68, 0x6f, 0x87, 0x20, + 0xda, 0xec, 0xc4, 0xd0, 0xc8, 0x82, 0x38, 0x27, 0xa0, 0xfe, 0x10, 0x04, 0x1d, 0xdf, 0x01, 0x64, + 0x3a, 0x9b, 0xa4, 0x3c, 0x9f, 0xbf, 0xbd, 0x01, 0x96, 0xd0, 0x1f, 0xb8, 0xf3, 0x9a, 0x40, 0x14, + 0xc4, 0x4a, 0xd2, 0x5a, 0x4c, 0x23, 0xd1, 0xf2, 0x5c, 0x76, 0x86, 0x41, 0x67, 0x68, 0xe1, 0x2e, + 0x13, 0x73, 0x2a, 0x23, 0x0d, 0xab, 0xcf, 0x53, 0x17, 0x91, 0x0d, 0x53, 0x15, 0xe5, 0xaf, 0x59, + 0xc2, 0x7c, 0x5e, 0x0b, 0x3e, 0x7b, 0xa1, 0xc0, 0xf2, 0x89, 0xa1, 0xfe, 0xcf, 0xf2, 0xe7, 0x3a, + 0x36, 0x15, 0x93, 0x76, 0x25, 0xc2, 0x3e, 0xd6, 0xf1, 0xc7, 0x84, 0x4e, 0xff, 0x94, 0xd8, 0x8b, + 0x9e, 0xfc, 0x5e, 0xfc, 0xa7, 0xca, 0xba, 0xe1, 0xe6, 0x6e, 0xfe, 0x9a, 0x21, 0xf3, 0x10, 0xf5, + 0x70, 0xca, 0x84, 0x7b, 0x01, 0x49, 0x8e, 0x08, 0x14, 0x57, 0xdb, 0x47, 0x8b, 0xd8, 0xd2, 0x04, + 0xaa, 0xe1, 0x22, 0xaa, 0xb1, 0x72, 0xc9, 0x16, 0x54, 0x8d, 0xe1, 0xe9, 0xbe, 0x84, 0x67, 0x98, + 0xc0, 0x33, 0x64, 0x78, 0xd2, 0x67, 0x90, 0x74, 0xa7, 0xb8, 0xf7, 0xf9, 0x92, 0x24, 0xc6, 0xc9, + 0x52, 0x9e, 0x3b, 0x5a, 0xb7, 0x9b, 0x46, 0x97, 0x77, 0xd3, 0x68, 0x72, 0x37, 0x2d, 0x64, 0x9b, + 0x47, 0xd1, 0x86, 0x9a, 0x84, 0x11, 0xf9, 0x1b, 0x9d, 0xed, 0x3e, 0xf0, 0x89, 0xc5, 0x62, 0x19, + 0x99, 0x5d, 0x3c, 0xf3, 0xf2, 0x05, 0x5c, 0x0b, 0xee, 0x0e, 0xcc, 0x4f, 0xc0, 0x88, 0x2c, 0x36, + 0x3f, 0x63, 0x67, 0x53, 0xa2, 0xdd, 0xda, 0xc4, 0x61, 0x15, 0x5c, 0x73, 0x6c, 0x87, 0x19, 0xfd, + 0xcf, 0xb9, 0x13, 0x8c, 0x2d, 0xd9, 0xd9, 0x18, 0xca, 0x5e, 0x00, 0xa3, 0x32, 0x42, 0xc1, 0x4c, + 0x77, 0x69, 0xc7, 0x80, 0x40, 0x3a, 0x95, 0xec, 0x54, 0x66, 0xb2, 0x9e, 0x4a, 0xbc, 0x0b, 0x06, + 0x31, 0x6c, 0x77, 0x0f, 0x23, 0x96, 0x67, 0xda, 0x62, 0x16, 0x7b, 0x79, 0xd7, 0x10, 0xdb, 0x64, + 0x50, 0x78, 0x85, 0xa5, 0x8e, 0x4e, 0x87, 0xcf, 0xf5, 0x93, 0x84, 0xf3, 0xc0, 0x47, 0x35, 0x5f, + 0x37, 0x9c, 0x4f, 0x7b, 0x30, 0xce, 0xc2, 0x88, 0xd5, 0x41, 0x1f, 0x3f, 0xec, 0x76, 0xc6, 0x49, + 0x01, 0xa2, 0x83, 0x6b, 0x9f, 0x25, 0x1c, 0x3a, 0x30, 0x3f, 0x9c, 0x6a, 0x00, 0x81, 0x64, 0x62, + 0xc0, 0xd9, 0xec, 0xd9, 0x98, 0xcb, 0xad, 0xf9, 0xee, 0xfb, 0xba, 0x76, 0x4b, 0x90, 0x51, 0x1a, + 0x14, 0x44, 0x17, 0x43, 0x15, 0xf4, 0xba, 0x2f, 0x98, 0xcb, 0x53, 0x0d, 0xe3, 0xad, 0x0e, 0x26, + 0x48, 0x11, 0x8b, 0x58, 0x00, 0x80, 0xf8, 0x63, 0x2e, 0x43, 0x5a, 0x09, 0x24, 0xc0, 0x8d, 0x9c, + 0x4a, 0x58, 0x6d, 0x98, 0xb5, 0x00, 0x23, 0x2d, 0x08, 0x7d, 0x16, 0x5e, 0xd1, 0x5b, 0x13, 0x56, + 0x44, 0x2f, 0xec, 0x81, 0xbb, 0x13, 0x8b, 0xcf, 0x1a, 0xa1, 0x46, 0x42, 0x45, 0x01, 0xe8, 0x8c, + 0xb3, 0xe0, 0x0b, 0xfe, 0xb8, 0x01, 0x23, 0xac, 0x14, 0x33, 0xf0, 0x05, 0x70, 0xaf, 0x2f, 0x48, + 0x11, 0x0f, 0x7f, 0x08, 0x19, 0x69, 0xd5, 0x84, 0x74, 0x2e, 0x08, 0xe2, 0xf3, 0xeb, 0x71, 0xce, + 0xaf, 0xf9, 0x1e, 0xc6, 0x7f, 0x7b, 0x43, 0x7c, 0xc6, 0x87, 0x85, 0x53, 0x91, 0xaf, 0xd9, 0xc1, + 0x92, 0x50, 0xd1, 0xad, 0xdd, 0xc5, 0x72, 0x31, 0x98, 0x0b, 0xc1, 0xa6, 0x24, 0x9c, 0xbe, 0x0f, + 0xa9, 0x50, 0x5f, 0x72, 0x36, 0x01, 0x6e, 0x69, 0xab, 0x5c, 0x5a, 0x13, 0xba, 0x46, 0xa1, 0x09, + 0x78, 0xa4, 0x61, 0xb2, 0xbf, 0xa5, 0xc6, 0xee, 0x33, 0x6d, 0x01, 0x9b, 0xf5, 0xfe, 0x68, 0xb8, + 0x5a, 0x01, 0xe6, 0xdc, 0x8d, 0xf5, 0x57, 0x32, 0xf0, 0xa6, 0x3e, 0xac, 0x8e, 0x68, 0x37, 0xfa, + 0x94, 0xdb, 0x6f, 0xe6, 0x15, 0x82, 0x09, 0x4f, 0x46, 0x4b, 0x33, 0x16, 0xb2, 0x4d, 0xe0, 0xad, + 0xd8, 0xa5, 0xad, 0x86, 0x98, 0x0a, 0xe2, 0xaa, 0x1e, 0x77, 0x1e, 0xb9, 0x07, 0x20, 0x60, 0x1a, + 0x83, 0x5b, 0x75, 0x7a, 0x1b, 0x46, 0x1b, 0x9c, 0x51, 0x26, 0x85, 0x97, 0xe0, 0x1d, 0x14, 0xcc, + 0xfc, 0x00, 0x5e, 0xfa, 0x98, 0x28, 0x1a, 0xf3, 0xa2, 0x31, 0xf7, 0x3f, 0x40, 0x4c, 0x5d, 0xb3, + 0x8e, 0xec, 0x81, 0x30, 0x42, 0x52, 0x80, 0xfa, 0x21, 0x6e, 0x98, 0xce, 0xbc, 0x0c, 0x88, 0x1e, + 0x12, 0x2e, 0x86, 0xbb, 0xd6, 0xc1, 0x48, 0xf4, 0x2d, 0xae, 0xc4, 0x78, 0x89, 0x2d, 0x79, 0x9e, + 0x8a, 0x68, 0x0f, 0xf5, 0xb9, 0xab, 0x2e, 0xb5, 0x87, 0xf3, 0x40, 0x16, 0x1d, 0x66, 0x6e, 0x63, + 0x6e, 0xef, 0x22, 0x43, 0xe0, 0x3e, 0x13, 0x7f, 0xb5, 0x87, 0x8b, 0xd1, 0x56, 0x9c, 0xab, 0x4b, + 0x45, 0xae, 0x7a, 0x14, 0x2f, 0x61, 0x80, 0xdb, 0x8d, 0x37, 0x5f, 0x52, 0x13, 0xdb, 0xac, 0x40, + 0xa8, 0x6a, 0x4a, 0x2e, 0x5c, 0x5c, 0xe9, 0x31, 0xa8, 0xa0, 0x4d, 0x34, 0xfc, 0x50, 0x7a, 0xa4, + 0xec, 0xd6, 0xeb, 0x4b, 0xe3, 0x59, 0xe1, 0x8d, 0x34, 0x8e, 0x4b, 0x6f, 0xa6, 0xa2, 0xb8, 0xc4, + 0x27, 0x27, 0xc9, 0x27, 0xca, 0x37, 0x3b, 0x26, 0x7c, 0x8f, 0xde, 0x41, 0xf2, 0xc2, 0x28, 0xcc, + 0x71, 0x67, 0x0f, 0x2e, 0x6e, 0x7c, 0xda, 0xe8, 0xaf, 0xe1, 0x36, 0x68, 0x54, 0xcf, 0xd2, 0x76, + 0x8f, 0x1c, 0xe0, 0x91, 0x66, 0xf8, 0x35, 0x90, 0xc6, 0xbc, 0x64, 0x1c, 0x95, 0x8c, 0x03, 0x30, + 0x8a, 0xcf, 0x4a, 0x93, 0xb4, 0x72, 0x56, 0x20, 0x0a, 0xb5, 0xd7, 0xc5, 0xe0, 0x3c, 0x56, 0x7f, + 0x21, 0xf8, 0x7f, 0x45, 0xa4, 0xf6, 0x13, 0xf9, 0x86, 0x28, 0x64, 0xfb, 0x41, 0x78, 0xfa, 0x42, + 0x67, 0x2f, 0xc6, 0xa7, 0x3f, 0x8f, 0xcc, 0x3a, 0x9a, 0x71, 0xd2, 0x3c, 0x9b, 0xb7, 0x60, 0x7b, + 0x8b, 0xff, 0x15, 0x4c, 0x57, 0x42, 0xea, 0x5f, 0xc0, 0xf6, 0x39, 0x25, 0xc4, 0x52, 0x22, 0xc8, + 0x84, 0xb9, 0x24, 0xdf, 0xde, 0x81, 0x42, 0x54, 0xaa, 0xee, 0x16, 0xad, 0xba, 0x20, 0xc7, 0xe1, + 0x82, 0x1c, 0xbb, 0x5c, 0x82, 0x85, 0x66, 0xfc, 0xb6, 0x03, 0x0a, 0x30, 0xc8, 0xaf, 0x0b, 0x12, + 0x19, 0xbd, 0x1b, 0x1f, 0x4e, 0xff, 0xef, 0x5d, 0xc7, 0x29, 0x3f, 0x09, 0x10, 0xbd, 0xb3, 0x80, + 0xbe, 0x82, 0xbe, 0x76, 0xe2, 0xaa, 0xf2, 0xec, 0x42, 0x4a, 0xb4, 0x8d, 0x4e, 0x10, 0x26, 0x54, + 0xf4, 0x7b, 0xf6, 0xea, 0x80, 0x6d, 0xea, 0x8b, 0x87, 0x8b, 0xc8, 0x8f, 0xdf, 0xab, 0x5f, 0xfc, + 0xc4, 0xd3, 0x0b, 0xaf, 0x16, 0x2c, 0xe8, 0xc8, 0xf8, 0x45, 0x02, 0x18, 0x11, 0xa4, 0xe5, 0xd9, + 0x8f, 0xfb, 0x14, 0xe5, 0x02, 0xd1, 0x94, 0xf3, 0xbc, 0xac, 0x69, 0x70, 0x25, 0x9a, 0x5c, 0xc4, + 0xaf, 0xeb, 0xb0, 0x6f, 0xe4, 0x10, 0xb5, 0x28, 0x97, 0x0b, 0x78, 0xcd, 0xcb, 0x85, 0x32, 0x5e, + 0xa1, 0x36, 0x07, 0x20, 0x6a, 0x89, 0xa8, 0xaa, 0xac, 0x92, 0x9c, 0x9c, 0x2b, 0x90, 0x4d, 0xfc, + 0xf0, 0x4f, 0x41, 0xd6, 0xf0, 0x4e, 0x2d, 0xc0, 0x5d, 0xb1, 0x4c, 0x4a, 0x58, 0x01, 0x3f, 0x65, + 0x78, 0x2c, 0xe5, 0xa0, 0x42, 0xc1, 0x6f, 0x03, 0x41, 0x07, 0x6a, 0x74, 0x91, 0xcb, 0x39, 0x7e, + 0xa7, 0xc9, 0x79, 0x2c, 0x2b, 0x6e, 0x12, 0x95, 0x7d, 0x33, 0xa8, 0x8c, 0xd7, 0xa2, 0xac, 0x5e, + 0x43, 0x8d, 0x5a, 0x38, 0x82, 0x91, 0x8b, 0x44, 0x55, 0xe4, 0xe2, 0x91, 0x0a, 0x57, 0xed, 0x48, + 0xd5, 0x00, 0xa9, 0xa3, 0x32, 0xde, 0x6e, 0xca, 0xf9, 0xa8, 0x86, 0x75, 0xa3, 0x16, 0xae, 0xa1, + 0xd9, 0x39, 0xe0, 0x00, 0xcd, 0xf3, 0x05, 0x52, 0x96, 0x15, 0x44, 0x61, 0x33, 0x4f, 0x4a, 0x30, + 0x3e, 0x4c, 0x07, 0x71, 0x6e, 0xc0, 0x6c, 0xcf, 0x0b, 0x58, 0xc3, 0x30, 0x51, 0x72, 0xd8, 0x52, + 0xc1, 0x17, 0x1c, 0xd4, 0x1c, 0x96, 0xe6, 0xd8, 0x54, 0xf1, 0x52, 0x90, 0x37, 0x0b, 0x11, 0x04, + 0xce, 0x0e, 0x5b, 0x94, 0x09, 0xd2, 0x4a, 0x2d, 0x37, 0x80, 0x3c, 0x85, 0x73, 0xfc, 0x82, 0x10, + 0x2b, 0xd4, 0x14, 0x59, 0x83, 0xbe, 0x4b, 0xf8, 0xab, 0x31, 0x9a, 0x41, 0x39, 0xde, 0x14, 0x64, + 0x7e, 0xcd, 0x23, 0x3a, 0x11, 0x54, 0x0e, 0xc9, 0x11, 0x35, 0xcd, 0x21, 0x9d, 0xf1, 0xda, 0x50, + 0x4b, 0xd7, 0xaa, 0x7a, 0xae, 0x22, 0xa2, 0x65, 0xec, 0x80, 0xa1, 0x5f, 0x2a, 0x32, 0x2c, 0x60, + 0x0e, 0xd8, 0x04, 0xe6, 0x72, 0x0d, 0xb4, 0x28, 0x9f, 0x73, 0x9e, 0x14, 0x58, 0x0f, 0x30, 0x3d, + 0x98, 0x97, 0xac, 0x01, 0xe4, 0x26, 0xd9, 0xc4, 0x1f, 0x15, 0x0f, 0xb7, 0xb1, 0x06, 0xaa, 0x0c, + 0xfc, 0x04, 0x3a, 0x23, 0xd9, 0x10, 0x11, 0x36, 0xc5, 0x52, 0x99, 0xdd, 0x14, 0xa2, 0x02, 0xc6, + 0x21, 0x00, 0x42, 0xea, 0x97, 0xf1, 0x17, 0xda, 0x62, 0x89, 0xc2, 0x31, 0xd3, 0x94, 0x63, 0xa4, + 0xb7, 0x0a, 0xb3, 0x4f, 0x7e, 0x1a, 0x89, 0xa5, 0xc1, 0x96, 0xe5, 0x3a, 0x7e, 0xd7, 0x21, 0xfa, + 0x92, 0x97, 0x40, 0x7e, 0xfe, 0x15, 0x99, 0xed, 0x97, 0x3e, 0x43, 0xb5, 0x29, 0x69, 0x6a, 0xa3, + 0x7c, 0x5d, 0x6a, 0xa8, 0x9b, 0xf8, 0x50, 0x68, 0x94, 0x6b, 0x9a, 0xa4, 0x45, 0xe7, 0x00, 0x8b, + 0x52, 0xe9, 0x5a, 0x53, 0x13, 0x05, 0x65, 0x49, 0x03, 0xca, 0x6e, 0x26, 0x4a, 0xf0, 0x4b, 0x3e, + 0xea, 0x75, 0x29, 0x51, 0x82, 0xbd, 0x1c, 0xab, 0x45, 0x49, 0x6d, 0xe4, 0x93, 0x70, 0x52, 0xee, + 0x5a, 0x2d, 0x35, 0xf2, 0xd7, 0xd0, 0xbe, 0x78, 0xad, 0xb2, 0xb9, 0x13, 0x3e, 0xf9, 0xe8, 0xb8, + 0x77, 0x9d, 0x25, 0xd4, 0x3c, 0x32, 0x4b, 0xe0, 0xbd, 0x7f, 0x3e, 0x0f, 0xf2, 0x2f, 0x52, 0x0a, + 0x97, 0x76, 0x94, 0xe2, 0xfe, 0x2f, 0xae, 0xef, 0x32, 0x2e, 0x84, 0x32, 0x2e, 0xae, 0x12, 0x3e, + 0xe6, 0x71, 0x7d, 0x43, 0x33, 0x58, 0x8d, 0x1a, 0xfe, 0xe4, 0x51, 0x28, 0xf3, 0xd8, 0xf7, 0x66, + 0x11, 0x00, 0xf1, 0x93, 0x5d, 0x9b, 0xb8, 0x1a, 0x4b, 0xff, 0x82, 0x7c, 0x36, 0xd4, 0xdc, 0x39, + 0xae, 0x7d, 0x5e, 0xa6, 0xca, 0x05, 0x5c, 0x04, 0xa8, 0x51, 0xd8, 0x27, 0xc2, 0x50, 0xc9, 0xb0, + 0x1b, 0x54, 0x26, 0xe5, 0x02, 0xd7, 0x18, 0xb0, 0x1a, 0x51, 0x7f, 0xe4, 0x50, 0x95, 0x6c, 0x32, + 0xad, 0x92, 0x8b, 0xb4, 0x0c, 0xd6, 0xa8, 0x4c, 0x23, 0x94, 0x0b, 0xd7, 0xff, 0xea, 0x32, 0x2f, + 0x23, 0x89, 0xb0, 0x21, 0x28, 0x27, 0x39, 0xcf, 0x86, 0x56, 0x80, 0xa8, 0x48, 0xc0, 0x22, 0x10, + 0x13, 0x2a, 0x8b, 0x00, 0x03, 0x15, 0xac, 0x36, 0x82, 0xff, 0x7d, 0xfa, 0x6b, 0xf3, 0x3a, 0x5a, + 0xd9, 0xb9, 0x35, 0xa2, 0xdd, 0x04, 0x81, 0x42, 0xd1, 0x36, 0xd9, 0xcb, 0x96, 0xef, 0xa5, 0xb5, + 0x1b, 0x77, 0x3f, 0xe1, 0x2d, 0x2d, 0x7c, 0xd5, 0x26, 0xfa, 0x8e, 0x0d, 0xbf, 0x6e, 0xb1, 0xd7, + 0x63, 0xb6, 0xff, 0x07, 0xa0, 0xe7, 0x12, 0xe4, 0xa6, 0x5e, 0x00, 0x00 };