This is an automated email from Gerrit.

"Erhan Kurubas <erhan.kuru...@espressif.com>" just uploaded a new patch set to 
Gerrit, which you can find at https://review.openocd.org/c/openocd/+/8027

-- gerrit

commit 5133b24fb1e4b563a6ac1ce5126eb6a9b43934cd
Author: Erhan Kurubas <erhan.kuru...@espressif.com>
Date:   Thu Nov 30 11:58:40 2023 +0100

    loaders/espressif: add esp32s2 stub flasher application code
    
    Special binary program running on the target (ESP32-S2) to perform
    flash operations and communicate to the OpenOCD host.
    
    Camelcase symbols comes from esp-idf
    
    Checkpatch-ignore: CAMELCASE
    
    Signed-off-by: Erhan Kurubas <erhan.kuru...@espressif.com>
    Change-Id: I7c066eb36d4d2a925e35a66af5dfbe001216125f

diff --git a/contrib/loaders/flash/espressif/esp32s2/Makefile 
b/contrib/loaders/flash/espressif/esp32s2/Makefile
new file mode 100644
index 0000000000..152dbde2c5
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/Makefile
@@ -0,0 +1,42 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+# Makefile to compile flasher stub program
+# Copyright (C) 2021 Espressif Systems Ltd.
+
+# Prefix for ESP32-S2 cross compilers (can include a directory path)
+CROSS ?= xtensa-esp32s2-elf-
+
+# Path to the esp-idf root dir
+IDF_PATH ?= ../..
+
+STUB_ARCH := xtensa
+STUB_CHIP_PATH := $(shell pwd)
+STUB_COMMON_PATH := $(STUB_CHIP_PATH)/..
+STUB_CHIP_ARCH_PATH := $(STUB_COMMON_PATH)/$(STUB_ARCH)
+STUB_OBJ_DEPS := sdkconfig.h
+STUB_LD_SCRIPT := stub.ld
+STUB_CHIP := ESP32S2
+
+SRCS := $(IDF_PATH)/components/app_trace/port/$(STUB_ARCH)/port.c \
+       $(IDF_PATH)/components/xtensa/eri.c \
+       $(IDF_PATH)/components/esp_hw_support/port/esp32s2/rtc_clk.c \
+       $(IDF_PATH)/components/esp_hw_support/port/esp32s2/rtc_clk_init.c \
+       $(IDF_PATH)/components/esp_hw_support/port/esp32s2/rtc_time.c \
+       $(IDF_PATH)/components/esp_rom/patches/esp_rom_regi2c.c
+
+CFLAGS := -std=gnu99 -mlongcalls -mtext-section-literals
+
+INCLUDES := -I$(IDF_PATH)/components/esp32s2/include 
-I$(IDF_PATH)/components/soc/esp32s2/include \
+       -I$(IDF_PATH)/components/esp_rom/include/esp32s2 
-I$(IDF_PATH)/components/xtensa/esp32s2/include \
+       -I$(IDF_PATH)/components/hal/esp32s2/include 
-I$(IDF_PATH)/components/esp_rom/esp32s2 \
+       -I$(IDF_PATH)/components/esp_hw_support/port/esp32s2/private_include \
+       -I$(IDF_PATH)/components/esp_hw_support/port/esp32s2 \
+
+DEFINES :=
+
+LDFLAGS := -L$(IDF_PATH)/components/esp32s2/ld 
-T$(IDF_PATH)/components/esp_rom/esp32s2/ld/esp32s2.rom.ld \
+       -T$(IDF_PATH)/components/esp_rom/esp32s2/ld/esp32s2.rom.newlib-funcs.ld 
\
+       -T$(IDF_PATH)/components/esp_rom/esp32s2/ld/esp32s2.rom.spiflash.ld 
-T$(IDF_PATH)/components/esp_rom/esp32s2/ld/esp32s2.rom.api.ld \
+       -T$(IDF_PATH)/components/esp_rom/esp32s2/ld/esp32s2.rom.libgcc.ld
+
+include ../stub_common.mk
\ No newline at end of file
diff --git a/contrib/loaders/flash/espressif/esp32s2/sdkconfig.h 
b/contrib/loaders/flash/espressif/esp32s2/sdkconfig.h
new file mode 100644
index 0000000000..fccaba9aa1
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/sdkconfig.h
@@ -0,0 +1,35 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#ifndef _STUB_SDKCONFIG_H_
+#define _STUB_SDKCONFIG_H_
+
+#define CONFIG_IDF_TARGET_ARCH_XTENSA 1
+#define CONFIG_IDF_TARGET_ESP32S2 1
+#define CONFIG_FREERTOS_UNICORE 1
+/* Use ROM flash driver patch
+ * #define CONFIG_SPI_FLASH_ROM_DRIVER_PATCH       1
+ * Disable application module multi-threading lock */
+#define CONFIG_APPTRACE_LOCK_ENABLE       0
+/* Enable apptarce module for flash data transfers */
+#define CONFIG_APPTRACE_DEST_JTAG 1
+#define CONFIG_APPTRACE_MEMBUFS_APPTRACE_PROTO_ENABLE 1
+#define CONFIG_APPTRACE_ENABLE 1
+#define CONFIG_APPTRACE_BUF_SIZE 0
+#define CONFIG_APPTRACE_PENDING_DATA_SIZE_MAX 0
+/* Debug UART number */
+#define CONFIG_CONSOLE_UART_NUM                 0
+/* Debug UART baudrate */
+#define CONFIG_CONSOLE_UART_BAUDRATE            115200
+/* alloc apptrace data buffers on stack */
+#define CONFIG_STUB_STACK_DATA_POOL_SIZE        (2 * CONFIG_APPTRACE_BUF_SIZE)
+
+/* needed due to apptrace sources usage */
+#define CONFIG_LOG_MAXIMUM_LEVEL                0
+/* needed due to various checks in IDF headers */
+#define CONFIG_FREERTOS_MAX_TASK_NAME_LEN       16
+/* TODO: use current clk, get it from PLL settings */
+#define CONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ       240
+/* Unused by stub, just for compilation of IDF */
+#define CONFIG_PARTITION_TABLE_OFFSET           0x8000
+
+#endif /*_STUB_SDKCONFIG_H_ */
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub.ld 
b/contrib/loaders/flash/espressif/esp32s2/stub.ld
new file mode 100644
index 0000000000..a4370a343a
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub.ld
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/***************************************************************************
+ *   LD script for ESP32-S2 flassher stub                                  *
+ *   Copyright (C) 2019 Espressif Systems Ltd.                             *
+ *   Author: Alexey Gerenkov <ale...@espressif.com>                        *
+ ***************************************************************************/
+
+MEMORY {
+  /* Place sections by starting from the Internal SRAM1. OpenOCD will fill the 
sections using data bus.
+     0x3FFB8000 - code (OpenOCD workarea address)
+        0x3FFBC000 - data
+  */
+  iram : org = 0x40028000, len = 0x4000
+  dram : org = 0x3FFBC000, len = 0x20000
+}
+
+INCLUDE stub_common.ld
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_chip.c 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_chip.c
new file mode 100644
index 0000000000..362f98340b
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_chip.c
@@ -0,0 +1,478 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+/***************************************************************************
+ *   ESP32-S2 specific flasher stub functions                              *
+ *   Copyright (C) 2021 Espressif Systems Ltd.                             *
+ *   Author: Alexey Gerenkov <ale...@espressif.com>                        *
+ ***************************************************************************/
+#include <string.h>
+#include "sdkconfig.h"
+#include "soc/rtc_cntl_reg.h"
+#include "soc/rtc.h"
+#include "soc/efuse_periph.h"
+#include "soc/gpio_reg.h"
+#include "soc/mmu.h"
+#include "soc/extmem_reg.h"
+#include "esp_spi_flash.h"
+#include "esp32s2/spiram.h"
+#include "soc/system_reg.h"
+#include "rtc_clk_common.h"
+#include "soc/dport_access.h"
+#include "stub_rom_chip.h"
+#include "stub_logger.h"
+#include "stub_flasher_int.h"
+#include "stub_flasher_chip.h"
+#include "stub_xtensa_chips.h"
+
+uint32_t g_stub_cpu_freq_hz = CONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ * MHZ;
+
+/* Cache MMU related definitions */
+#define STUB_CACHE_BUS                  EXTMEM_PRO_ICACHE_MASK_DROM0
+#define STUB_MMU_DROM_VADDR             SOC_MMU_VADDR0_START_ADDR
+#define STUB_MMU_DROM_PAGES_START       SOC_MMU_DROM0_PAGES_START      /* 128 
*/
+#define STUB_MMU_DROM_PAGES_END         SOC_MMU_DROM0_PAGES_END                
/* 192 */
+#define STUB_MMU_TABLE                  ((volatile uint32_t *)DR_REG_MMU_TABLE)
+#define STUB_MMU_INVALID_ENTRY_VAL      MMU_TABLE_INVALID_VAL  /* 0x400 */
+
+/* SPI Flash map request data */
+struct spiflash_map_req {
+       /* Request mapping SPI Flash base address */
+       uint32_t src_addr;
+       /* Request mapping SPI Flash size */
+       uint32_t size;
+       /* Mapped memory pointer */
+       void *ptr;
+       /* Mapped started MMU page index */
+       uint32_t start_page;
+       /* Mapped MMU page count */
+       uint32_t page_cnt;
+};
+
+extern esp_rom_spiflash_chip_t g_rom_spiflash_chip;
+
+void vPortEnterCritical(void *mux)
+{
+}
+
+void vPortExitCritical(void *mux)
+{
+}
+
+#if STUB_LOG_ENABLE == 1
+void stub_print_cache_mmu_registers(void)
+{
+       uint32_t icache_ctrl_reg = REG_READ(EXTMEM_PRO_ICACHE_CTRL_REG);
+       uint32_t icache_ctrl1_reg = REG_READ(EXTMEM_PRO_ICACHE_CTRL1_REG);
+       uint32_t dbg_status0_reg = REG_READ(EXTMEM_CACHE_DBG_STATUS0_REG);
+       uint32_t dbg_status1_reg = REG_READ(EXTMEM_CACHE_DBG_STATUS1_REG);
+
+       STUB_LOGD("icache_ctrl_reg: 0x%x icache_ctrl1_reg: 0x%x "
+               "dbg_status0_reg: 0x%x dbg_status1_reg: 0x%x\n",
+               icache_ctrl_reg,
+               icache_ctrl1_reg,
+               dbg_status0_reg,
+               dbg_status1_reg);
+}
+#endif
+
+uint32_t stub_flash_get_id(void)
+{
+       uint32_t ret;
+
+       STUB_LOGD("flash %x, cs %x, bs %x, ss %x, ps %x, sm %x\n",
+               g_rom_spiflash_chip.device_id,
+               g_rom_spiflash_chip.chip_size,
+               g_rom_spiflash_chip.block_size,
+               g_rom_spiflash_chip.sector_size,
+               g_rom_spiflash_chip.page_size,
+               g_rom_spiflash_chip.status_mask);
+
+       if (g_rom_spiflash_dummy_len_plus[1] == 0) {
+               REG_CLR_BIT(PERIPHS_SPI_FLASH_USRREG, SPI_MEM_USR_DUMMY);
+       } else {
+               REG_SET_BIT(PERIPHS_SPI_FLASH_USRREG, SPI_MEM_USR_DUMMY);
+               REG_WRITE(PERIPHS_SPI_FLASH_USRREG1,
+                       (g_rom_spiflash_dummy_len_plus[1] - 1) << 
SPI_MEM_USR_DUMMY_CYCLELEN_S);
+       }
+       WRITE_PERI_REG(PERIPHS_SPI_FLASH_C0, 0);/* clear regisrter */
+       WRITE_PERI_REG(PERIPHS_SPI_FLASH_CMD, SPI_MEM_FLASH_RDID);
+       while (READ_PERI_REG(PERIPHS_SPI_FLASH_CMD) != 0)
+               ;
+       ret = READ_PERI_REG(PERIPHS_SPI_FLASH_C0) & 0xffffff;
+       STUB_LOGD("Flash ID read %x\n", ret);
+       return ret >> 16;
+}
+
+void stub_flash_cache_flush(void)
+{
+       /* we do not know breakpoint program address here, so pass wrong addr 
to invalidate the
+        * whole ICache */
+       Cache_Invalidate_ICache_Items(0, 4 * 1024 * 1024);
+}
+
+void stub_cache_init(void)
+{
+       STUB_LOGD("%s\n", __func__);
+
+       Cache_Allocate_SRAM(CACHE_MEMORY_ICACHE_LOW,
+               CACHE_MEMORY_INVALID,
+               CACHE_MEMORY_INVALID,
+               CACHE_MEMORY_INVALID);
+       Cache_Suspend_ICache();
+       Cache_Set_ICache_Mode(CACHE_SIZE_8KB, CACHE_4WAYS_ASSOC, 
CACHE_LINE_SIZE_32B);
+       Cache_Invalidate_ICache_All();
+       Cache_MMU_Init();
+       REG_CLR_BIT(EXTMEM_PRO_ICACHE_CTRL1_REG, STUB_CACHE_BUS);
+       Cache_Resume_ICache(0);
+}
+
+bool stub_is_cache_enabled(void)
+{
+       bool is_enabled = REG_GET_BIT(EXTMEM_PRO_ICACHE_CTRL_REG, 
EXTMEM_PRO_ICACHE_ENABLE) != 0;
+       int cache_bus = REG_READ(EXTMEM_PRO_ICACHE_CTRL1_REG);
+       return is_enabled && !(cache_bus & STUB_CACHE_BUS);
+}
+
+void stub_flash_state_prepare(struct stub_flash_state *state)
+{
+       uint32_t spiconfig = ets_efuse_get_spiconfig();
+       uint32_t strapping = REG_READ(GPIO_STRAP_REG);
+       /*  If GPIO1 (U0TXD) is pulled low and flash pin configuration is not 
set in efuse, assume
+        * HSPI flash mode (same as normal boot) */
+       if (spiconfig == 0 && (strapping & 0x1c) == 0x08)
+               spiconfig = 1;  /* HSPI flash mode */
+
+       state->cache_enabled = stub_is_cache_enabled();
+       if (!state->cache_enabled) {
+               STUB_LOGI("Cache needs to be enabled\n");
+               stub_cache_init();
+       }
+
+       /* Attach flash only if it has not been attached yet. Re-attaching it 
breaks PSRAM operation. */
+       if ((READ_PERI_REG(SPI_MEM_CACHE_FCTRL_REG(0)) & 
SPI_MEM_CACHE_FLASH_USR_CMD) == 0) {
+               STUB_LOGI("Attach spi flash...\n");
+               esp_rom_spiflash_attach(spiconfig, 0);
+       }
+}
+
+void stub_flash_state_restore(struct stub_flash_state *state)
+{
+       /* we do not disable or store the cache settings. So, nothing to 
restore*/
+}
+
+#define RTC_PLL_FREQ_320M   320
+#define RTC_PLL_FREQ_480M   480
+
+rtc_xtal_freq_t stub_rtc_clk_xtal_freq_get(void)
+{
+       uint32_t xtal_freq_reg = READ_PERI_REG(RTC_XTAL_FREQ_REG);
+       if (!clk_val_is_valid(xtal_freq_reg)) {
+               /* invalid RTC_XTAL_FREQ_REG */
+               return RTC_XTAL_FREQ_40M;
+       }
+       return reg_val_to_clk_val(xtal_freq_reg);
+}
+
+/* Obviously we can call rtc_clk_cpu_freq_get_config() from esp-idf
+But this call may cause undesired locks due to ets_printf or abort
+*/
+int stub_rtc_clk_cpu_freq_get_config(rtc_cpu_freq_config_t *out_config)
+{
+       rtc_cpu_freq_src_t source;
+       uint32_t source_freq_mhz;
+       uint32_t div;
+       uint32_t freq_mhz;
+       uint32_t soc_clk_sel = REG_GET_FIELD(DPORT_SYSCLK_CONF_REG, 
DPORT_SOC_CLK_SEL);
+       switch (soc_clk_sel) {
+       case DPORT_SOC_CLK_SEL_XTAL: {
+               source = RTC_CPU_FREQ_SRC_XTAL;
+               div = REG_GET_FIELD(DPORT_SYSCLK_CONF_REG, DPORT_PRE_DIV_CNT) + 
1;
+               source_freq_mhz = (uint32_t)stub_rtc_clk_xtal_freq_get();
+               freq_mhz = source_freq_mhz / div;
+       }
+       break;
+       case DPORT_SOC_CLK_SEL_PLL: {
+               source = RTC_CPU_FREQ_SRC_PLL;
+               uint32_t cpuperiod_sel = 
DPORT_REG_GET_FIELD(DPORT_CPU_PER_CONF_REG,
+                               DPORT_CPUPERIOD_SEL);
+               uint32_t pllfreq_sel = 
DPORT_REG_GET_FIELD(DPORT_CPU_PER_CONF_REG,
+                               DPORT_PLL_FREQ_SEL);
+               source_freq_mhz = (pllfreq_sel) ? RTC_PLL_FREQ_480M : 
RTC_PLL_FREQ_320M;
+               if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_80) {
+                       div = (source_freq_mhz == RTC_PLL_FREQ_480M) ? 6 : 4;
+                       freq_mhz = 80;
+               } else if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_160) {
+                       div = (source_freq_mhz == RTC_PLL_FREQ_480M) ? 3 : 2;
+                       div = 3;
+                       freq_mhz = 160;
+               } else if (cpuperiod_sel == DPORT_CPUPERIOD_SEL_240) {
+                       div = 2;
+                       freq_mhz = 240;
+               } else {
+                       /* unsupported frequency configuration */
+                       return -1;
+               }
+               break;
+       }
+       case DPORT_SOC_CLK_SEL_8M:
+               source = RTC_CPU_FREQ_SRC_8M;
+               source_freq_mhz = 8;
+               div = 1;
+               freq_mhz = source_freq_mhz;
+               break;
+       case DPORT_SOC_CLK_SEL_APLL:
+       default:
+               /* unsupported frequency configuration */
+               return -2;
+       }
+       *out_config = (rtc_cpu_freq_config_t) {
+               .source = source,
+               .source_freq_mhz = source_freq_mhz,
+               .div = div,
+               .freq_mhz = freq_mhz
+       };
+
+       return 0;
+}
+
+int stub_cpu_clock_configure(int cpu_freq_mhz)
+{
+       rtc_cpu_freq_config_t old_config;
+       int ret = stub_rtc_clk_cpu_freq_get_config(&old_config);
+       if (ret < 0) {
+               /* this return value will avoid undesired restore requests for 
unsupported frequency
+                *configuration */
+               old_config.freq_mhz = 0;
+       }
+
+#if STUB_LOG_ENABLE == 1
+       if (stub_get_log_dest() == STUB_LOG_DEST_UART)
+               uart_tx_wait_idle(CONFIG_CONSOLE_UART_NUM);
+#endif
+
+       /* set to maximum possible value */
+       if (cpu_freq_mhz == -1)
+               cpu_freq_mhz = CONFIG_ESP32S2_DEFAULT_CPU_FREQ_MHZ;
+
+       /* Set CPU to configured value. Keep other clocks unmodified. */
+       if (cpu_freq_mhz > 0) {
+               rtc_clk_config_t clk_cfg = RTC_CLK_CONFIG_DEFAULT();
+               /* ESP32-S2 doesn't have XTAL_FREQ choice, always 40MHz.
+                  So using default value is fine */
+               clk_cfg.cpu_freq_mhz = cpu_freq_mhz;
+               clk_cfg.slow_freq = rtc_clk_slow_freq_get();
+               clk_cfg.fast_freq = rtc_clk_fast_freq_get();
+               rtc_clk_init(clk_cfg);
+
+               g_stub_cpu_freq_hz = cpu_freq_mhz * MHZ;
+       }
+
+       return old_config.freq_mhz;
+}
+
+#if STUB_LOG_ENABLE == 1
+void stub_uart_console_configure(int dest)
+{
+       uartAttach(NULL);
+       ets_install_uart_printf();
+       /* Set configured UART console baud rate */
+       uart_div_modify(CONFIG_CONSOLE_UART_NUM,
+               (rtc_clk_apb_freq_get() << 4) / CONFIG_CONSOLE_UART_BAUDRATE);
+}
+#endif
+
+uint32_t stub_esp_clk_cpu_freq(void)
+{
+       return g_stub_cpu_freq_hz;
+}
+
+esp_rom_spiflash_result_t esp_rom_spiflash_erase_area(uint32_t start_addr, 
uint32_t area_len)
+{
+       int32_t total_sector_num;
+       int32_t head_sector_num;
+       uint32_t sector_no;
+       uint32_t sector_num_per_block;
+
+       /* set read mode to Fastmode ,not QDIO mode for erase
+        *
+        * TODO: this is probably a bug as it doesn't re-enable QIO mode, not 
serious as this
+        * function is not used in IDF.
+        * esp_rom_spiflash_config_readmode(ESP_ROM_SPIFLASH_SLOWRD_MODE); */
+
+       /* check if area is oversize of flash */
+       if ((start_addr + area_len) > g_rom_spiflash_chip.chip_size)
+               return ESP_ROM_SPIFLASH_RESULT_ERR;
+
+       /* start_addr is aligned as sector boundary */
+       if (0 != (start_addr % g_rom_spiflash_chip.sector_size))
+               return ESP_ROM_SPIFLASH_RESULT_ERR;
+
+       /* Unlock flash to enable erase */
+       if (esp_rom_spiflash_unlock(/*&g_rom_spiflash_chip*/) != 
ESP_ROM_SPIFLASH_RESULT_OK)
+               return ESP_ROM_SPIFLASH_RESULT_ERR;
+
+       sector_no = start_addr / g_rom_spiflash_chip.sector_size;
+       sector_num_per_block = g_rom_spiflash_chip.block_size / 
g_rom_spiflash_chip.sector_size;
+       total_sector_num = (0 == (area_len % g_rom_spiflash_chip.sector_size)) 
? area_len /
+               g_rom_spiflash_chip.sector_size : 1 + (area_len / 
g_rom_spiflash_chip.sector_size);
+
+       /* check if erase area reach over block boundary */
+       head_sector_num = sector_num_per_block - (sector_no % 
sector_num_per_block);
+
+       head_sector_num =
+               (head_sector_num >= total_sector_num) ? total_sector_num : 
head_sector_num;
+
+       /* JJJ, BUG of 6.0 erase
+        * middle part of area is aligned by blocks */
+       total_sector_num -= head_sector_num;
+
+       /* head part of area is erased */
+       while (head_sector_num > 0) {
+               if (esp_rom_spiflash_erase_sector(sector_no) != 
ESP_ROM_SPIFLASH_RESULT_OK)
+                       return ESP_ROM_SPIFLASH_RESULT_ERR;
+               sector_no++;
+               head_sector_num--;
+       }
+       while (total_sector_num > sector_num_per_block) {
+               if (ESP_ROM_SPIFLASH_RESULT_OK !=
+                       esp_rom_spiflash_erase_block(sector_no / 
sector_num_per_block))
+                       return ESP_ROM_SPIFLASH_RESULT_ERR;
+               sector_no += sector_num_per_block;
+               total_sector_num -= sector_num_per_block;
+       }
+
+       /* tail part of area burn */
+       while (total_sector_num > 0) {
+               if (esp_rom_spiflash_erase_sector(sector_no) != 
ESP_ROM_SPIFLASH_RESULT_OK)
+                       return ESP_ROM_SPIFLASH_RESULT_ERR;
+               sector_no++;
+               total_sector_num--;
+       }
+
+       return ESP_ROM_SPIFLASH_RESULT_OK;
+}
+
+static inline bool esp_flash_encryption_enabled(void)
+{
+       uint32_t flash_crypt_cnt = REG_GET_FIELD(EFUSE_RD_REPEAT_DATA1_REG,
+               EFUSE_SPI_BOOT_CRYPT_CNT);
+
+       /* __builtin_parity is in flash, so we calculate parity inline */
+       bool enabled = false;
+       while (flash_crypt_cnt) {
+               if (flash_crypt_cnt & 1)
+                       enabled = !enabled;
+               flash_crypt_cnt >>= 1;
+       }
+       return enabled;
+}
+
+esp_flash_enc_mode_t stub_get_flash_encryption_mode(void)
+{
+       static esp_flash_enc_mode_t mode = ESP_FLASH_ENC_MODE_DEVELOPMENT;
+       static bool first = true;
+
+       if (first) {
+               if (esp_flash_encryption_enabled()) {
+                       /* Check if SPI_BOOT_CRYPT_CNT is write protected */
+                       bool flash_crypt_cnt_wr_dis = 
REG_READ(EFUSE_RD_WR_DIS_REG) &
+                               EFUSE_WR_DIS_SPI_BOOT_CRYPT_CNT;
+                       if (!flash_crypt_cnt_wr_dis) {
+                               uint8_t flash_crypt_cnt = 
REG_GET_FIELD(EFUSE_RD_REPEAT_DATA1_REG,
+                                       EFUSE_SPI_BOOT_CRYPT_CNT);
+                               /* Check if SPI_BOOT_CRYPT_CNT set for 
permanent encryption */
+                               if (flash_crypt_cnt == 
EFUSE_SPI_BOOT_CRYPT_CNT_V)
+                                       flash_crypt_cnt_wr_dis = true;
+                       }
+
+                       if (flash_crypt_cnt_wr_dis) {
+                               uint8_t dis_dl_enc = 
REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG,
+                                       EFUSE_DIS_DOWNLOAD_MANUAL_ENCRYPT);
+                               uint8_t dis_dl_icache = 
REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG,
+                                       EFUSE_DIS_DOWNLOAD_ICACHE);
+                               uint8_t dis_dl_dcache = 
REG_GET_FIELD(EFUSE_RD_REPEAT_DATA0_REG,
+                                       EFUSE_DIS_DOWNLOAD_DCACHE);
+                               if (dis_dl_enc && dis_dl_icache && 
dis_dl_dcache)
+                                       mode = ESP_FLASH_ENC_MODE_RELEASE;
+                       }
+               } else {
+                       mode = ESP_FLASH_ENC_MODE_DISABLED;
+               }
+               first = false;
+               STUB_LOGD("flash_encryption_mode: %d\n", mode);
+       }
+
+       return mode;
+}
+
+static int stub_flash_mmap(struct spiflash_map_req *req)
+{
+       uint32_t map_src = req->src_addr & (~(SPI_FLASH_MMU_PAGE_SIZE - 1));
+       uint32_t map_size = req->size + (req->src_addr - map_src);
+       uint32_t flash_page = map_src / SPI_FLASH_MMU_PAGE_SIZE;
+       uint32_t page_cnt = (map_size + SPI_FLASH_MMU_PAGE_SIZE - 1) / 
SPI_FLASH_MMU_PAGE_SIZE;
+       int start_page, ret = ESP_ROM_SPIFLASH_RESULT_ERR;
+       uint32_t saved_state = Cache_Suspend_ICache();
+
+       for (start_page = STUB_MMU_DROM_PAGES_START; start_page < 
STUB_MMU_DROM_PAGES_END;
+               ++start_page) {
+               if (STUB_MMU_TABLE[start_page] == STUB_MMU_INVALID_ENTRY_VAL)
+                       break;
+       }
+
+       if (start_page + page_cnt < STUB_MMU_DROM_PAGES_END) {
+               for (int i = 0; i < page_cnt; i++)
+                       STUB_MMU_TABLE[start_page + i] = 
SOC_MMU_PAGE_IN_FLASH(flash_page + i);
+
+               req->start_page = start_page;
+               req->page_cnt = page_cnt;
+               req->ptr = (void *)(STUB_MMU_DROM_VADDR +
+                       (start_page - STUB_MMU_DROM_PAGES_START) * 
SPI_FLASH_MMU_PAGE_SIZE +
+                       (req->src_addr - map_src));
+               Cache_Invalidate_Addr((uint32_t)(STUB_MMU_DROM_VADDR +
+                               (start_page - STUB_MMU_DROM_PAGES_START) * 
SPI_FLASH_MMU_PAGE_SIZE),
+                       page_cnt * SPI_FLASH_MMU_PAGE_SIZE);
+               ret = ESP_ROM_SPIFLASH_RESULT_OK;
+       }
+
+       STUB_LOGD("start_page: %d map_src: %x map_size: %x page_cnt: %d 
flash_page: %d map_ptr: %x\n",
+               start_page,
+               map_src,
+               map_size,
+               page_cnt,
+               flash_page,
+               req->ptr);
+
+       Cache_Resume_ICache(saved_state);
+
+       return ret;
+}
+
+static void stub_flash_ummap(const struct spiflash_map_req *req)
+{
+       uint32_t saved_state = Cache_Suspend_ICache();
+
+       for (int i = req->start_page; i < req->start_page + req->page_cnt; ++i)
+               STUB_MMU_TABLE[i] = STUB_MMU_INVALID_ENTRY_VAL;
+
+       Cache_Resume_ICache(saved_state);
+}
+
+int stub_flash_read_buff(uint32_t addr, void *buffer, uint32_t size)
+{
+       struct spiflash_map_req req = {
+               .src_addr = addr,
+               .size = size,
+       };
+
+       int ret = stub_flash_mmap(&req);
+
+       if (ret)
+               return ret;
+
+       memcpy(buffer, req.ptr, size);
+
+       stub_flash_ummap(&req);
+
+       return ESP_ROM_SPIFLASH_RESULT_OK;
+}
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_chip.h 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_chip.h
new file mode 100644
index 0000000000..4038924562
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_chip.h
@@ -0,0 +1,30 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/***************************************************************************
+ *   ESP32-S2 flasher stub definitions                                     *
+ *   Copyright (C) 2021 Espressif Systems Ltd.                             *
+ *   Author: Alexey Gerenkov <ale...@espressif.com>                        *
+ ***************************************************************************/
+#ifndef ESP32_S2_FLASHER_STUB_H
+#define ESP32_S2_FLASHER_STUB_H
+
+#include <stdint.h>
+
+#define STUB_FLASH_SECTOR_SIZE  4096
+/* Flash geometry constants */
+#define STUB_FLASH_BLOCK_SIZE   65536
+#define STUB_FLASH_PAGE_SIZE    256
+#define STUB_FLASH_STATUS_MASK  0xFFFF
+
+struct stub_flash_state {
+       uint32_t cache_flags[2];
+       bool cache_enabled;
+};
+void stub_flash_state_prepare(struct stub_flash_state *state);
+void stub_flash_state_restore(struct stub_flash_state *state);
+
+uint32_t stub_esp_clk_cpu_freq(void);
+
+#include "stub_xtensa_chips.h"
+
+#endif /*ESP32_S2_FLASHER_STUB_H */
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_code.inc 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_code.inc
new file mode 100644
index 0000000000..5aea6b7a57
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_code.inc
@@ -0,0 +1,491 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0x04,0xc3,0xfb,0x3f,0xec,0xc2,0xfb,0x3f,0x36,0x41,0x00,0x81,0xfd,0xff,0xbd,0x02,
+0x82,0x08,0x00,0xcd,0x03,0x8c,0xf8,0x91,0xfb,0xff,0x88,0x29,0x8c,0x88,0x88,0x58,
+0x8c,0x48,0xa2,0x29,0x03,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x00,0x74,0xc0,0xfb,0x3f,
+0x34,0xa0,0x41,0x3f,0x2c,0xa0,0x41,0x3f,0x30,0xa0,0x41,0x3f,0x70,0xc0,0xfb,0x3f,
+0x36,0x41,0x00,0xb1,0xfa,0xff,0x82,0x0b,0x00,0x16,0xe8,0x06,0x81,0xf9,0xff,0x0c,
+0x1a,0xc0,0x20,0x00,0x98,0x08,0x0c,0x08,0x90,0x92,0x25,0x46,0x03,0x00,0x00,0x00,
+0x07,0x69,0x05,0xa0,0x88,0x30,0x80,0x80,0x74,0x90,0x91,0x41,0x56,0x09,0xff,0xc1,
+0xf3,0xff,0xbc,0xe8,0x81,0xf0,0xff,0xc0,0x20,0x00,0x88,0x08,0x47,0xe8,0x0d,0x81,
+0xec,0xff,0xc0,0x20,0x00,0x88,0x08,0x80,0x82,0x25,0x66,0x78,0x28,0x91,0xea,0xff,
+0xc0,0x20,0x00,0x88,0x09,0xc0,0x20,0x00,0xa8,0x09,0xc0,0x20,0x00,0x92,0x29,0x00,
+0x80,0x83,0xc5,0xa0,0xaa,0x41,0xa0,0x88,0x10,0x90,0x9b,0x41,0x90,0x88,0x10,0x07,
+0x68,0x03,0x0c,0x28,0x89,0x0c,0x0c,0x08,0x82,0x4b,0x00,0x81,0xe0,0xff,0x28,0x08,
+0x1d,0xf0,0x00,0x00,0x54,0xfd,0xff,0x3f,0x18,0x20,0x40,0x3f,0xff,0xff,0xff,0xdf,
+0x00,0x00,0x00,0x20,0x1c,0x20,0x40,0x3f,0x58,0x20,0x40,0x3f,0x00,0x20,0x40,0x3f,
+0x00,0x00,0x00,0x10,0x36,0x41,0x00,0xa1,0xf7,0xff,0x81,0xf7,0xff,0x22,0x0a,0x01,
+0xc0,0x20,0x00,0x98,0x08,0xcc,0xc2,0x21,0xf5,0xff,0x20,0x99,0x10,0xc0,0x20,0x00,
+0x99,0x08,0xc6,0x05,0x00,0x21,0xf2,0xff,0x20,0x99,0x20,0xc0,0x20,0x00,0x99,0x08,
+0x82,0x0a,0x01,0x21,0xf0,0xff,0x0b,0x88,0xc0,0x20,0x00,0x89,0x02,0x81,0xee,0xff,
+0x0c,0x02,0xc0,0x20,0x00,0x22,0x68,0x00,0x91,0xed,0xff,0x21,0xed,0xff,0xc0,0x20,
+0x00,0x22,0x69,0x00,0xc0,0x20,0x00,0x28,0x09,0x56,0x72,0xff,0xc0,0x20,0x00,0x28,
+0x08,0x20,0x20,0x75,0x1d,0xf0,0x00,0x00,0x48,0xe0,0x00,0x60,0x0f,0x00,0xfe,0xff,
+0x00,0xc4,0x01,0x00,0x44,0xe0,0x00,0x60,0x00,0xff,0x7f,0x00,0x90,0x60,0x42,0x3f,
+0x00,0x00,0x04,0x00,0xff,0xbf,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfb,0xff,
+0xff,0xff,0xbf,0xff,0x36,0x41,0x00,0x91,0xf4,0xff,0xa1,0xf4,0xff,0xc0,0x20,0x00,
+0x88,0x09,0xb1,0xf7,0xff,0xa0,0x88,0x10,0xa1,0xf2,0xff,0xa0,0x88,0x20,0xc0,0x20,
+0x00,0x89,0x09,0x81,0xf0,0xff,0xa1,0xf0,0xff,0xc0,0x20,0x00,0x98,0x08,0xa0,0x99,
+0x20,0xa1,0xee,0xff,0xc0,0x20,0x00,0x99,0x08,0xc0,0x20,0x00,0x98,0x0a,0xb0,0x99,
+0x20,0xc0,0x20,0x00,0x99,0x0a,0x92,0xa0,0x66,0x97,0x12,0x23,0x27,0x39,0x08,0x92,
+0xa0,0x61,0x97,0x12,0x32,0xc6,0x0f,0x00,0x92,0xa0,0x69,0x97,0x12,0x1d,0x92,0xa0,
+0x6d,0x97,0x92,0x33,0xc0,0x20,0x00,0x28,0x08,0x91,0xe2,0xff,0x06,0x08,0x00,0x00,
+0xc0,0x20,0x00,0x28,0x08,0x91,0xe0,0xff,0x06,0x05,0x00,0x00,0xc0,0x20,0x00,0x28,
+0x08,0x91,0xde,0xff,0x06,0x02,0x00,0x00,0xc0,0x20,0x00,0x28,0x08,0x91,0xdc,0xff,
+0x90,0x22,0x10,0xc0,0x20,0x00,0x29,0x08,0x1d,0xf0,0x00,0x00,0x00,0xe0,0x00,0x60,
+0x00,0x00,0x00,0x02,0x00,0x00,0xff,0x00,0x00,0x00,0x00,0x01,0x36,0x41,0x00,0x50,
+0x74,0xc0,0xa6,0x87,0x02,0x06,0xff,0xff,0xad,0x02,0x10,0x11,0x20,0x65,0xf4,0xff,
+0x80,0x83,0x11,0xb1,0xf6,0xff,0x20,0x28,0x20,0x31,0xf5,0xff,0xc0,0x20,0x00,0x29,
+0x0b,0xc0,0x20,0x00,0x88,0x0b,0x37,0x88,0xf7,0x7c,0xf8,0xc0,0x20,0x00,0xa8,0x0b,
+0x00,0x15,0x40,0x00,0x98,0xa1,0x1b,0x44,0x1b,0x77,0x00,0x14,0x40,0x00,0x48,0xa1,
+0x90,0x98,0x30,0x00,0x17,0x40,0x00,0x78,0xa1,0x40,0x99,0x20,0xa0,0xa0,0xf5,0x70,
+0x88,0x30,0xa0,0x99,0x10,0x60,0x88,0x10,0x90,0x90,0x74,0x00,0x15,0x40,0x00,0x88,
+0xa1,0x90,0x88,0x20,0x31,0xe4,0xff,0x00,0x88,0x11,0x30,0x88,0x10,0x20,0x88,0x20,
+0x21,0xe2,0xff,0x41,0xde,0xff,0x20,0x88,0x20,0x21,0xdd,0xff,0xc0,0x20,0x00,0x89,
+0x0b,0xc0,0x20,0x00,0x38,0x04,0x27,0x83,0xf7,0x1d,0xf0,0x00,0x36,0x41,0x00,0xad,
+0x02,0x80,0x33,0x11,0xe5,0xeb,0xff,0x20,0x33,0x20,0x00,0x44,0x11,0x21,0xd6,0xff,
+0x40,0x33,0x20,0x41,0xd2,0xff,0x20,0x33,0x20,0x21,0xd1,0xff,0xc0,0x20,0x00,0x39,
+0x04,0xc0,0x20,0x00,0x38,0x04,0x27,0x83,0xf7,0x1d,0xf0,0x00,0x8c,0x00,0x4c,0x3f,
+0xff,0xf3,0xff,0xff,0x40,0x42,0x0f,0x00,0xc0,0x80,0x40,0x3f,0x84,0x80,0x40,0x3f,
+0xff,0xc7,0xff,0xff,0x00,0x10,0x00,0x00,0x00,0x20,0x00,0x00,0x36,0x41,0x00,0x81,
+0xf7,0xff,0xb2,0xac,0x00,0xc0,0x20,0x00,0xa8,0x08,0x0b,0x33,0xb0,0xaa,0x10,0xc0,
+0x20,0x00,0xa9,0x08,0xc0,0x20,0x00,0x98,0x08,0x30,0x30,0x94,0xb0,0x99,0x10,0x90,
+0x33,0x20,0xc0,0x20,0x00,0x39,0x08,0xc0,0x20,0x00,0x38,0x08,0x91,0xed,0xff,0x90,
+0x33,0x10,0xc0,0x20,0x00,0x39,0x08,0x81,0xeb,0xff,0x91,0xed,0xff,0x80,0x82,0x82,
+0x80,0x8c,0x41,0x80,0x30,0xf4,0x00,0x88,0x11,0x80,0x83,0x20,0x31,0xe7,0xff,0xc0,
+0x20,0x00,0x89,0x03,0x31,0xe6,0xff,0xc0,0x20,0x00,0x88,0x03,0x90,0x88,0x10,0xe6,
+0x32,0x05,0x21,0xe4,0xff,0x86,0x00,0x00,0x21,0xe4,0xff,0x20,0x88,0x20,0xc0,0x20,
+0x00,0x89,0x03,0x1d,0xf0,0x00,0x00,0x00,0x1c,0x00,0x10,0x00,0x36,0x41,0x00,0x21,
+0xfe,0xff,0x20,0x62,0x40,0x20,0x26,0x05,0x1d,0xf0,0x00,0x00,0x00,0x80,0x00,0x00,
+0x00,0x00,0x01,0x00,0xe0,0x10,0x4c,0x3f,0x36,0x41,0x00,0x81,0xfc,0xff,0x56,0x22,
+0x00,0x81,0xfb,0xff,0x91,0xfc,0xff,0x0c,0x02,0xc0,0x20,0x00,0x89,0x09,0x1d,0xf0,
+0x14,0x00,0x10,0x00,0x36,0x41,0x00,0x0c,0x08,0x91,0xfd,0xff,0x80,0x79,0x40,0x1d,
+0xf0,0x00,0x00,0x00,0x00,0x80,0x3f,0x00,0x00,0x00,0x80,0x00,0x36,0x41,0x00,0x91,
+0xea,0xff,0x80,0x69,0x40,0xa1,0xfb,0xff,0x10,0x22,0x11,0xa0,0x22,0x10,0x30,0x30,
+0xe4,0x30,0x22,0x20,0x31,0xf9,0xff,0x30,0x88,0x10,0x80,0x22,0x20,0x20,0x79,0x40,
+0x25,0xfc,0xff,0x0c,0x02,0x1d,0xf0,0x00,0xbf,0x83,0x02,0x40,0x36,0x41,0x00,0x81,
+0xfe,0xff,0x91,0xeb,0xff,0x80,0x79,0x40,0x81,0xdc,0xff,0x80,0x68,0x40,0x92,0xa0,
+0x00,0x77,0x78,0x14,0x80,0xaf,0x64,0x80,0x80,0xe4,0x97,0x98,0x05,0x20,0x80,0x64,
+0xa7,0x18,0x05,0x25,0xf9,0xff,0x92,0xa1,0x01,0x90,0x29,0x20,0x90,0x00,0x00,0x00,
+0x36,0x41,0x00,0x82,0x02,0x00,0x0c,0x02,0x27,0x58,0x08,0x21,0xcf,0xff,0x20,0x62,
+0x40,0x20,0x27,0x05,0x1d,0xf0,0x00,0x00,0x00,0x40,0xff,0x3f,0x00,0x40,0x00,0x00,
+0x00,0x80,0xff,0x3f,0x04,0x00,0x10,0x00,0x36,0x41,0x00,0x8d,0x02,0x0c,0x02,0xc0,
+0x20,0x00,0x29,0xb8,0xc0,0x20,0x00,0x29,0xa8,0x91,0xf7,0xff,0xc0,0x20,0x00,0x29,
+0xc8,0xc0,0x20,0x00,0x29,0xd8,0x99,0x58,0xa1,0xf6,0xff,0x91,0xf4,0xff,0xc0,0x20,
+0x00,0x29,0x38,0x99,0x68,0xa9,0x78,0x99,0x88,0xc0,0x20,0x00,0x29,0x48,0x91,0xc1,
+0xff,0xa1,0xbf,0xff,0x29,0x98,0xc0,0x20,0x00,0x29,0x28,0xc0,0x20,0x00,0xa9,0x09,
+0x91,0xed,0xff,0x0c,0x2a,0xa0,0x79,0x40,0xa2,0xa0,0x80,0xa0,0x79,0x40,0x91,0xb2,
+0xff,0x20,0x79,0x40,0x91,0xbf,0xff,0x20,0x79,0x40,0x92,0x08,0x00,0x0c,0x1a,0xa0,
+0x99,0x20,0x92,0x48,0x00,0x1d,0xf0,0x00,0x78,0xc0,0xfb,0x3f,0x83,0xde,0x1b,0x43,
+0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,0x90,0xaa,0x01,0x40,0x36,0x41,0x00,0x81,
+0xfe,0xff,0xe0,0x08,0x00,0x81,0xf8,0xff,0x91,0xf9,0xff,0x88,0x08,0x90,0x88,0xa2,
+0x91,0xf8,0xff,0x80,0x82,0xd5,0x80,0xaa,0xc2,0x0c,0x08,0x89,0x12,0x81,0xf4,0xff,
+0x99,0x32,0x89,0x22,0x91,0xf4,0xff,0x81,0xf3,0xff,0xa9,0x02,0x89,0x42,0x99,0x52,
+0x1d,0xf0,0x00,0x00,0x36,0x81,0x00,0x21,0xba,0xfe,0xa2,0xa1,0x03,0x22,0x02,0x00,
+0x9c,0xc2,0x21,0xb8,0xfe,0xa2,0xa1,0x06,0x88,0x22,0x9c,0x28,0x88,0x48,0x8c,0xe8,
+0xad,0x01,0xa5,0xfa,0xff,0x88,0x22,0xa8,0x32,0x88,0x48,0xbd,0x01,0xe0,0x08,0x00,
+0x2d,0x0a,0x1d,0xf0,0x36,0x81,0x00,0xa2,0xa1,0x02,0x16,0xc2,0x02,0x31,0xac,0xfe,
+0xa2,0xa1,0x03,0x32,0x03,0x00,0x16,0x03,0x02,0x31,0xaa,0xfe,0xa2,0xa1,0x06,0x82,
+0x23,0x02,0x9c,0x48,0x88,0x28,0x9c,0x08,0xad,0x01,0x25,0xf7,0xff,0x88,0x23,0xa8,
+0x33,0x88,0x28,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,
+0x36,0x81,0x00,0xad,0x02,0xac,0x72,0x31,0x9e,0xfe,0x32,0x03,0x00,0xad,0x03,0x9c,
+0xd3,0x31,0x9c,0xfe,0xa8,0x23,0x9c,0x6a,0x88,0x1a,0xad,0x08,0x9c,0x08,0xad,0x01,
+0xa5,0xf3,0xff,0x88,0x23,0xa8,0x33,0x88,0x18,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,
+0x2d,0x0a,0x1d,0xf0,0x36,0x81,0x00,0xa2,0xa1,0x02,0x16,0xc2,0x02,0x31,0x90,0xfe,
+0xa2,0xa1,0x03,0x32,0x03,0x00,0x16,0x03,0x02,0x31,0x8e,0xfe,0xa2,0xa1,0x06,0x82,
+0x23,0x02,0x9c,0x48,0x88,0x68,0x9c,0x08,0xad,0x01,0x25,0xf0,0xff,0x88,0x23,0xa8,
+0x33,0x88,0x78,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,
+0x36,0x81,0x00,0x32,0x22,0x00,0x30,0xa3,0x20,0x16,0x83,0x02,0x31,0x81,0xfe,0x32,
+0x03,0x00,0xad,0x03,0x9c,0xd3,0x31,0x7f,0xfe,0xa8,0x23,0x9c,0x6a,0x88,0x6a,0xad,
+0x08,0x9c,0x08,0xad,0x01,0x65,0xec,0xff,0x88,0x23,0xa8,0x33,0x88,0x68,0xcd,0x01,
+0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,0x00,0xa8,0xab,0x01,0x40,
+0x36,0x61,0x00,0x61,0xa5,0xff,0xc6,0x0f,0x00,0x81,0xa7,0xff,0xe0,0x08,0x00,0x51,
+0xa3,0xff,0x48,0x06,0x0c,0x17,0x50,0x44,0xa2,0x58,0x03,0x40,0x42,0xd5,0x40,0xaa,
+0xc2,0x50,0x5a,0xc0,0x48,0x13,0x57,0x3a,0x02,0x72,0xa0,0x00,0x40,0x40,0x60,0x70,
+0x44,0xc0,0x78,0x33,0x59,0x43,0x49,0x53,0x77,0x24,0x0d,0x47,0x17,0x02,0x86,0x6a,
+0x00,0x48,0x23,0x47,0x35,0x02,0x86,0x68,0x00,0x58,0x02,0xc0,0x20,0x00,0x48,0x12,
+0x58,0x05,0xc0,0x20,0x00,0xa8,0x12,0xe0,0x05,0x00,0x5d,0x0a,0x56,0x2a,0x19,0x7c,
+0xf3,0x40,0x33,0x30,0x30,0x30,0x04,0xe0,0x63,0x11,0x6a,0x62,0xc0,0x20,0x00,0xa9,
+0x26,0xc0,0x20,0x00,0x68,0x12,0xad,0x03,0x1b,0x66,0xc0,0x20,0x00,0x69,0x12,0x68,
+0x02,0x2b,0x33,0x68,0x16,0xd0,0x33,0x11,0x30,0x32,0x80,0xe0,0x06,0x00,0x78,0x03,
+0x38,0x02,0xa2,0x23,0x03,0xe0,0x0a,0x00,0x16,0x1a,0x13,0x82,0x17,0x00,0x16,0xb8,
+0x12,0x6d,0x05,0x9d,0x05,0xc0,0x20,0x00,0x38,0xb2,0xc0,0x20,0x00,0xa8,0xc2,0x37,
+0x3a,0x1b,0xc0,0x20,0x00,0x38,0x92,0xc0,0x20,0x00,0xa8,0xc2,0xa0,0x33,0xc0,0x16,
+0x53,0x10,0xc0,0x20,0x00,0xa8,0xb2,0xdc,0x5a,0x0b,0x33,0x86,0x03,0x00,0xc0,0x20,
+0x00,0x38,0xb2,0xc0,0x20,0x00,0xa8,0xc2,0x0b,0x33,0xa0,0x33,0xc0,0x16,0x73,0x0e,
+0x60,0xa8,0xc0,0x30,0x3a,0x63,0xb8,0x82,0xc0,0x20,0x00,0xa8,0xc2,0xc0,0x20,0x00,
+0xc8,0xb2,0xc0,0x20,0x00,0xd8,0xc2,0xaa,0xab,0xc7,0xbd,0x02,0x46,0x21,0x00,0xc0,
+0x20,0x00,0xc8,0xc2,0xc0,0x20,0x00,0xd8,0x92,0xca,0xc3,0xd7,0xbc,0x02,0x86,0x21,
+0x00,0xc0,0x20,0x00,0xc8,0xb2,0x16,0xec,0x08,0xc0,0x20,0x00,0xc8,0xc2,0xc0,0x20,
+0x00,0xd8,0x92,0xca,0xc3,0xd7,0x9c,0x07,0xc0,0x20,0x00,0x99,0xc2,0x06,0x1d,0x00,
+0xc0,0x20,0x00,0xa8,0xb2,0x0b,0xaa,0x37,0x3a,0x6d,0xc0,0x20,0x00,0xa8,0xc2,0xc0,
+0x20,0x00,0xa9,0xa2,0xc0,0x20,0x00,0x99,0xc2,0xc0,0x20,0x00,0xc8,0xb2,0xc0,0x20,
+0x00,0xa8,0xa2,0xa7,0x9c,0x1d,0xc0,0x20,0x00,0x99,0xb2,0xc0,0x20,0x00,0xc8,0xa2,
+0xc0,0x20,0x00,0xa8,0x92,0xa7,0xbc,0x0b,0xc0,0x20,0x00,0xa2,0x22,0x09,0xc0,0x20,
+0x00,0xa2,0x62,0x0a,0xc0,0x20,0x00,0xa8,0xc2,0xaa,0xa3,0xc0,0x20,0x00,0xa9,0xc2,
+0xad,0x0b,0xc6,0x07,0x00,0xc0,0x20,0x00,0xb8,0xb2,0xc0,0x20,0x00,0xc2,0x22,0x0c,
+0x0b,0xbb,0xc0,0xbb,0xc0,0x37,0x3b,0x0f,0xc0,0x20,0x00,0xb8,0xc2,0xba,0xb3,0xc0,
+0x20,0x00,0xb2,0x62,0x0c,0x56,0x3a,0x00,0x06,0xff,0xff,0x00,0x2b,0xb6,0xcd,0x03,
+0xba,0xb7,0x89,0x01,0x99,0x11,0x81,0x91,0xff,0xe0,0x08,0x00,0x88,0x01,0x3a,0x66,
+0x98,0x11,0x87,0xb6,0x02,0x06,0xb7,0xff,0x0c,0x03,0x32,0x57,0x00,0x40,0x40,0x04,
+0xe0,0x44,0x11,0x4a,0x42,0xc0,0x20,0x00,0xa8,0x12,0x28,0x02,0xc0,0x20,0x00,0xb2,
+0x24,0x02,0x22,0x22,0x02,0xe0,0x02,0x00,0x46,0x06,0x00,0x00,0x52,0xa1,0x07,0x86,
+0x04,0x00,0x48,0x23,0x26,0x04,0x02,0x86,0x83,0xff,0x48,0x33,0x66,0x04,0x02,0x86,
+0x91,0xff,0xc6,0x80,0xff,0x2d,0x05,0x1d,0xf0,0x00,0x00,0x00,0x36,0x41,0x00,0x52,
+0x02,0x00,0xa2,0xa1,0x03,0x07,0x65,0x3f,0xc0,0x20,0x00,0x88,0x22,0x4b,0x52,0x80,
+0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0x88,0x38,0x37,0xb8,0x10,0x0c,
+0x0a,0xc6,0x08,0x00,0x40,0xb4,0x20,0x50,0xa5,0x20,0x65,0xdc,0xff,0x56,0x7a,0x01,
+0xc0,0x20,0x00,0x88,0x22,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,
+0x88,0x38,0x87,0x33,0xde,0x86,0xf5,0xff,0x2d,0x0a,0x1d,0xf0,0x36,0x41,0x00,0x42,
+0x02,0x00,0xa2,0xa1,0x03,0x07,0x64,0x37,0xc0,0x20,0x00,0x88,0x22,0x4b,0x42,0x80,
+0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0x88,0x38,0xc6,0x02,0x00,0x30,
+0xb3,0x20,0x40,0xa4,0x20,0xa5,0xd7,0xff,0x56,0x4a,0x01,0xc0,0x20,0x00,0x88,0x22,
+0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0xa8,0x38,0x56,0xea,0xfd,
+0x2d,0x0a,0x1d,0xf0,0x36,0x41,0x00,0x82,0x02,0x00,0x5d,0x02,0x61,0xfb,0xfe,0x4b,
+0x22,0x07,0xe8,0x04,0x0c,0x02,0x86,0x45,0x00,0xc0,0x20,0x00,0x88,0xc5,0xc0,0x20,
+0x00,0x98,0xd5,0x87,0x39,0x09,0xc0,0x20,0x00,0x88,0xd5,0x86,0x01,0x00,0x00,0x00,
+0xc0,0x20,0x00,0x88,0xb5,0xc0,0x20,0x00,0x98,0xc5,0x90,0x88,0xc0,0x16,0x48,0x08,
+0x28,0x03,0x20,0x88,0x63,0x89,0x03,0xc0,0x20,0x00,0x28,0xc5,0x38,0x95,0x2a,0x23,
+0xc0,0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xd5,0x37,0x34,0x12,0xc0,0x20,0x00,
+0x38,0xc5,0xc0,0x20,0x00,0x48,0xd5,0x3a,0x38,0x37,0x34,0x53,0x46,0x10,0x00,0x00,
+0xc0,0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xb5,0x3a,0x38,0x37,0x34,0x40,0xc0,
+0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xb5,0x3a,0x38,0x47,0x93,0x22,0xc0,0x20,
+0x00,0x48,0xb5,0xc0,0x20,0x00,0x38,0xa5,0x37,0xb4,0x09,0xc0,0x20,0x00,0x38,0xa5,
+0xc0,0x20,0x00,0x39,0xb5,0x0c,0x03,0xc0,0x20,0x00,0x39,0xc5,0x46,0x03,0x00,0x00,
+0x00,0xc0,0x20,0x00,0x38,0xc5,0x3a,0x88,0xc0,0x20,0x00,0x89,0xc5,0x56,0xf2,0x06,
+0x06,0xff,0xff,0x00,0x00,0x82,0x25,0x01,0xa2,0x28,0x03,0xe0,0x0a,0x00,0x16,0xaa,
+0x00,0xbd,0x04,0xad,0x02,0xa5,0xc8,0xff,0x46,0xcf,0xff,0x00,0x88,0x24,0x66,0x08,
+0x07,0x88,0x34,0x66,0x08,0x02,0xc6,0xcb,0xff,0x81,0xc7,0xfe,0xe0,0x08,0x00,0x91,
+0xc3,0xfe,0x88,0x06,0x0c,0x1b,0x90,0x88,0xa2,0x98,0x04,0x80,0x82,0xd5,0x80,0xaa,
+0xc2,0x90,0x9a,0xc0,0x88,0x14,0x97,0x3a,0x02,0xb2,0xa0,0x00,0x80,0x80,0x60,0xb0,
+0x88,0xc0,0xa8,0x34,0x99,0x44,0x89,0x54,0xa7,0xa8,0x02,0x86,0xbe,0xff,0x87,0x1a,
+0x02,0xc6,0xbb,0xff,0x88,0x24,0x87,0xb9,0x02,0x06,0xbb,0xff,0x06,0xb9,0xff,0x00,
+0x1d,0xf0,0x00,0x00,0x36,0x41,0x00,0x52,0x02,0x00,0x40,0xb4,0x20,0x07,0xe5,0x04,
+0x0c,0x02,0xc6,0x40,0x00,0xc0,0x20,0x00,0x58,0x22,0x50,0x50,0x04,0x2b,0x55,0xd0,
+0x55,0x11,0x5a,0x52,0x58,0x25,0x52,0xc5,0xfc,0x37,0x35,0xe3,0xc0,0x20,0x00,0x58,
+0x22,0x50,0x50,0x04,0xe0,0x55,0x11,0x5a,0x52,0xc0,0x20,0x00,0x98,0x35,0xc0,0x20,
+0x00,0x88,0x22,0x4b,0x53,0x80,0x80,0x04,0x2b,0x88,0xd0,0x88,0x11,0x8a,0x82,0x88,
+0x28,0x5a,0x99,0x97,0xb8,0x77,0xa2,0xc2,0x04,0x65,0xbd,0xff,0x56,0x0a,0xfb,0xc0,
+0x20,0x00,0x88,0x22,0x50,0x90,0xf4,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,
+0x20,0x00,0xa8,0x38,0xc0,0x20,0x00,0x88,0x22,0xaa,0x99,0x80,0x80,0x04,0x2b,0x88,
+0xd0,0x88,0x11,0x8a,0x82,0x88,0x28,0x97,0x38,0x85,0xc0,0x20,0x00,0x98,0x22,0xc0,
+0x20,0x00,0x88,0x22,0x90,0x90,0x04,0x80,0x80,0x04,0x2b,0x99,0xe0,0x88,0x11,0xd0,
+0x99,0x11,0x8a,0x82,0x9a,0x92,0xc0,0x20,0x00,0x88,0x38,0x98,0x19,0x8a,0x89,0x16,
+0xd8,0xf5,0xc0,0x20,0x00,0x98,0x22,0x90,0x90,0x04,0xe0,0x99,0x11,0x9a,0x22,0xc0,
+0x20,0x00,0x98,0x32,0x5a,0x59,0xc0,0x20,0x00,0x59,0x32,0x06,0x10,0x00,0xc0,0x20,
+0x00,0x98,0x22,0xc0,0x20,0x00,0x88,0x22,0x90,0x90,0x04,0x80,0x80,0x04,0x2b,0x99,
+0xe0,0x88,0x11,0xd0,0x99,0x11,0x8a,0x82,0x9a,0x92,0xc0,0x20,0x00,0x88,0x38,0x98,
+0x19,0x8a,0x89,0xc0,0x20,0x00,0x98,0x22,0x90,0x90,0x04,0xe0,0x99,0x11,0x9a,0x22,
+0xc0,0x20,0x00,0x98,0x32,0x5a,0x59,0xc0,0x20,0x00,0x59,0x32,0x16,0x08,0xf0,0x0c,
+0x02,0x22,0x58,0x01,0x32,0x58,0x00,0x4b,0x28,0x1d,0xf0,0x00,0xff,0xff,0x00,0x00,
+0x00,0x10,0x80,0x61,0x80,0x3e,0x00,0x00,0x00,0x00,0xff,0xff,0xa4,0x8c,0x01,0x40,
+0xe4,0x82,0x01,0x40,0xdc,0x8c,0x01,0x40,0x36,0x61,0x00,0xcd,0x02,0x20,0x70,0xf4,
+0x21,0xf7,0xff,0xc9,0x01,0x2a,0x24,0x81,0xf9,0xff,0xe0,0x08,0x00,0x7a,0x22,0x9d,
+0x0a,0x20,0x50,0xf5,0xa2,0xa0,0x80,0xb2,0xa0,0xc0,0xd1,0xf1,0xff,0xe1,0x3b,0xfe,
+0xc8,0x01,0x86,0x03,0x00,0xe0,0x8a,0x11,0xda,0x88,0xc0,0x20,0x00,0xf8,0x08,0xe7,
+0x1f,0x09,0x1b,0xaa,0x6d,0x0a,0xb7,0x9a,0xeb,0xc6,0x10,0x00,0xaa,0xb5,0xd2,0xa0,
+0xbf,0xb7,0x3d,0x3b,0xc0,0xc0,0xf5,0x0c,0x0b,0xe1,0x00,0xfe,0x86,0x03,0x00,0x00,
+0xca,0xdb,0xe0,0xdd,0x20,0xc0,0x20,0x00,0xd9,0x08,0x1b,0xbb,0x4b,0x88,0xb7,0x95,
+0xee,0x81,0xe0,0xff,0xb1,0xe1,0xff,0x8a,0xaa,0x00,0xaa,0x11,0xb0,0xb2,0x10,0x99,
+0x01,0x7a,0x7a,0x81,0xdf,0xff,0xe0,0x08,0x00,0x0c,0x02,0x98,0x01,0x06,0x02,0x00,
+0x0c,0x05,0x6d,0x05,0x7d,0x05,0x22,0xa0,0x01,0x90,0xa9,0x20,0x81,0xda,0xff,0xe0,
+0x08,0x00,0xfc,0x02,0xcd,0x04,0xbd,0x07,0xad,0x03,0x81,0x94,0xfe,0xe0,0x08,0x00,
+0x81,0xd3,0xff,0xe0,0x08,0x00,0x5a,0x56,0x41,0xce,0xff,0x71,0x18,0xfe,0xc6,0x02,
+0x00,0xe0,0x36,0x11,0x4a,0x33,0xc0,0x20,0x00,0x79,0x03,0x1b,0x66,0x57,0x36,0xf0,
+0x81,0xcd,0xff,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x00,0xf8,0xbf,0xff,0xff,0x77,0x00,
+0x00,0x00,0x00,0xc1,0xff,0xff,0xf7,0x00,0x36,0x81,0x00,0x1c,0x8c,0xbd,0x01,0xad,
+0x02,0x65,0xf1,0xff,0x5d,0x0a,0x56,0xea,0x06,0x62,0x01,0x00,0x42,0xa0,0xe9,0x47,
+0x96,0x6a,0x22,0xc2,0x18,0x6d,0x0a,0x4d,0x0a,0xc6,0x13,0x00,0xc2,0xa0,0x08,0xb2,
+0xc1,0x18,0x20,0xa2,0x20,0x25,0xef,0xff,0x16,0x2a,0x00,0x46,0x12,0x00,0x98,0x61,
+0x81,0xee,0xff,0xa1,0xee,0xff,0x80,0x89,0x80,0x87,0xba,0x0b,0x81,0xed,0xff,0xa1,
+0xed,0xff,0x80,0x89,0x80,0x87,0x3a,0x1b,0xf6,0x24,0x26,0xf0,0x84,0x11,0x4a,0x88,
+0xe0,0x88,0x11,0x8a,0x83,0x99,0x28,0x98,0x71,0x8b,0xa2,0x1b,0x44,0xa9,0x18,0x99,
+0x38,0x40,0x40,0xf4,0x88,0x71,0x1b,0x66,0x8b,0x88,0x8a,0x22,0x82,0x01,0x01,0x87,
+0x26,0xa9,0x49,0x03,0xc6,0x01,0x00,0x00,0x7c,0xf5,0x46,0x00,0x00,0x7c,0x85,0x2d,
+0x05,0x1d,0xf0,0x00,0x36,0x41,0x04,0x1b,0x62,0x2a,0x54,0x40,0x66,0x11,0x3a,0x22,
+0xc6,0x11,0x00,0x00,0x0c,0x13,0x32,0x45,0x00,0x72,0xd6,0xf0,0x32,0xa0,0xff,0x06,
+0x0c,0x00,0x00,0x00,0xc2,0xa2,0x00,0x10,0xb1,0x20,0x70,0xa7,0x20,0xa5,0xe6,0xff,
+0x56,0x2a,0x03,0x82,0xa2,0x00,0xaa,0x91,0x92,0x09,0x00,0x37,0x19,0x07,0x0c,0x03,
+0x32,0x45,0x00,0xc6,0x03,0x00,0x1b,0xaa,0x87,0x9a,0xea,0x82,0x05,0x00,0x72,0xd7,
+0x02,0x8c,0x18,0x67,0x97,0xcd,0x1b,0x55,0x62,0xd6,0x10,0x40,0x75,0xc0,0x27,0x37,
+0xb2,0x0c,0x02,0x46,0x00,0x00,0x7c,0xf2,0x1d,0xf0,0x00,0x00,0x00,0x00,0x40,0x00,
+0xb8,0x81,0x01,0x40,0x36,0x41,0x00,0xb1,0xfd,0xff,0x0c,0x0a,0x81,0xfd,0xff,0xe0,
+0x08,0x00,0x1d,0xf0,0x00,0xf0,0xff,0xff,0xff,0x0f,0x00,0x00,0x3c,0xfd,0xff,0x3f,
+0x88,0x6e,0x01,0x40,0x6c,0x71,0x01,0x40,0x0c,0x71,0x01,0x40,0x36,0x41,0x00,0x20,
+0x40,0xb4,0x8c,0x44,0x41,0xf8,0xff,0x40,0x22,0x10,0x30,0x40,0xb4,0x16,0xb4,0x00,
+0x41,0xf6,0xff,0x40,0x33,0x80,0x41,0xf3,0xff,0x40,0x33,0x10,0x41,0xf4,0xff,0x3a,
+0x52,0x68,0x14,0x57,0xb6,0x07,0x7c,0xf2,0x06,0x1f,0x00,0x00,0x00,0x00,0x58,0x34,
+0x50,0x52,0xe2,0x56,0xf5,0xfe,0x81,0xee,0xff,0xe0,0x08,0x00,0x56,0x6a,0xfe,0x88,
+0x34,0x48,0x24,0x80,0x53,0xc2,0x80,0x22,0xc2,0x80,0x44,0xc2,0x80,0x83,0xe2,0x1b,
+0x35,0x80,0x35,0x83,0x40,0x52,0xe2,0x50,0x54,0xc0,0x30,0x55,0x43,0x2a,0x65,0x06,
+0x03,0x00,0xad,0x02,0x81,0xe4,0xff,0xe0,0x08,0x00,0x56,0x8a,0xfb,0x1b,0x22,0x20,
+0x86,0xc0,0xe6,0x18,0xec,0x50,0x33,0xc0,0x46,0x04,0x00,0x00,0x40,0xa2,0xc2,0x81,
+0xde,0xff,0xe0,0x08,0x00,0x56,0xda,0xf9,0x4a,0x22,0x40,0x33,0xc0,0x37,0x34,0xeb,
+0x2a,0x23,0x86,0x02,0x00,0x81,0xd7,0xff,0xe0,0x08,0x00,0x56,0x7a,0xf8,0x0b,0x33,
+0x30,0xa2,0xc0,0xe6,0x13,0xee,0x0c,0x02,0x1d,0xf0,0x00,0x00,0xe0,0x77,0x01,0x40,
+0xcc,0x71,0x01,0x40,0x36,0x41,0x00,0xcc,0x95,0x65,0x24,0xff,0xac,0x4a,0xdc,0x05,
+0x06,0x08,0x00,0x00,0xa5,0x23,0xff,0x7c,0xf8,0x56,0xca,0xfe,0x86,0x08,0x00,0x00,
+0x00,0x00,0xcd,0x04,0x30,0xb3,0x20,0x20,0xa2,0x20,0x81,0xf4,0xff,0xe0,0x08,0x00,
+0x06,0x03,0x00,0x00,0xcd,0x04,0xbd,0x03,0xad,0x02,0x81,0xf1,0xff,0xe0,0x08,0x00,
+0x8d,0x0a,0x2d,0x08,0x1d,0xf0,0x00,0x00,0xf8,0xc1,0xfb,0x3f,0x88,0x07,0x01,0x40,
+0xe0,0x07,0x01,0x40,0xf8,0x09,0x01,0x40,0xc8,0x78,0x00,0x40,0xb8,0x0a,0x01,0x40,
+0xb4,0x07,0x01,0x40,0x36,0x41,0x00,0x81,0x4d,0xfd,0x0c,0x07,0x80,0x81,0xc0,0x10,
+0x18,0x00,0x81,0xf6,0xff,0xe0,0x08,0x00,0x61,0xf4,0xff,0x0c,0x2b,0xad,0x06,0x81,
+0xf4,0xff,0xe0,0x08,0x00,0x46,0x0a,0x00,0x81,0x45,0xfd,0xbd,0x01,0x80,0x53,0x63,
+0x50,0xc5,0x20,0x20,0xa7,0x80,0x25,0xcb,0xff,0x56,0x3a,0x04,0x50,0xd0,0x14,0xcc,
+0xad,0xcd,0x05,0xbd,0x01,0xad,0x06,0x81,0xeb,0xff,0xe0,0x08,0x00,0x50,0x33,0xc0,
+0x5a,0x77,0x56,0x23,0xfd,0xdc,0x14,0xb2,0xa0,0xd8,0xad,0x06,0x81,0xe7,0xff,0xe0,
+0x08,0x00,0x2d,0x04,0x86,0x06,0x00,0x00,0x00,0x00,0xbd,0x04,0xad,0x06,0x81,0xe3,
+0xff,0xe0,0x08,0x00,0x81,0xe3,0xff,0xe0,0x08,0x00,0x2d,0x03,0x86,0x00,0x00,0x00,
+0x7c,0xf2,0x1d,0xf0,0x10,0xc0,0xfb,0x3f,0x34,0xc0,0xfb,0x3f,0x3c,0xad,0x01,0x40,
+0x36,0x41,0x00,0x21,0x48,0xfc,0x1c,0x8c,0xb2,0xa0,0x00,0x20,0xa2,0x20,0x81,0xfb,
+0xff,0xe0,0x08,0x00,0x31,0xf8,0xff,0x0c,0x18,0x39,0x22,0x31,0xf7,0xff,0x39,0x32,
+0x31,0x40,0xfc,0x82,0x43,0x00,0x0c,0x03,0x88,0x02,0xcc,0x88,0x1b,0x33,0x8b,0x22,
+0x66,0x33,0xf4,0x86,0x03,0x00,0x88,0x08,0xa8,0x12,0xe0,0x08,0x00,0x16,0xba,0xfe,
+0x7c,0xf2,0x06,0x04,0x00,0x31,0x14,0xfd,0x20,0x63,0x40,0x81,0x27,0xfd,0x80,0x22,
+0x20,0x20,0x73,0x40,0x0c,0x02,0x1d,0xf0,0xe8,0xc2,0xfb,0x3f,0xd0,0xc2,0xfb,0x3f,
+0xf8,0xaa,0x00,0x00,0xf4,0xaa,0x00,0x00,0xf0,0xaa,0x00,0x00,0xff,0x7f,0x00,0x00,
+0x10,0x80,0x00,0x00,0x10,0xab,0x00,0x00,0x1c,0xab,0x00,0x00,0x14,0xab,0x00,0x00,
+0x18,0xab,0x00,0x00,0x20,0xab,0x00,0x00,0x00,0xab,0x00,0x00,0x2c,0xab,0x00,0x00,
+0x24,0xab,0x00,0x00,0x08,0xab,0x00,0x00,0x30,0xab,0x00,0x00,0x00,0x30,0x00,0x40,
+0x36,0x41,0x00,0x81,0xfd,0xff,0x20,0x52,0x20,0x22,0x22,0x06,0x80,0x81,0xc0,0x31,
+0xea,0xff,0x20,0x20,0x04,0x10,0x18,0x00,0x29,0x03,0x65,0xf4,0xff,0x2d,0x0a,0x56,
+0x7a,0x1d,0xa8,0x25,0xb8,0x35,0x25,0x06,0xff,0x31,0xe4,0xff,0x48,0x05,0x81,0xe8,
+0xff,0x49,0x03,0x48,0x45,0x8a,0x61,0x49,0x13,0x48,0x15,0x69,0x33,0x49,0x23,0x42,
+0xc1,0x10,0x49,0x43,0x49,0x53,0x91,0xe3,0xff,0x31,0xdd,0xff,0xa1,0xe3,0xff,0x29,
+0x06,0x1a,0x99,0x3a,0x64,0x1a,0xaa,0x29,0x09,0x69,0x0a,0x06,0x63,0x00,0x00,0x00,
+0x81,0xdd,0xff,0x91,0xdd,0xff,0x1a,0x88,0x1a,0x99,0x98,0x09,0x88,0x08,0xad,0x09,
+0x80,0x33,0xc0,0x32,0x69,0x00,0x31,0xd8,0xff,0x65,0x5f,0xff,0x61,0xd8,0xff,0x1a,
+0x33,0x1a,0x66,0xa9,0x06,0x16,0x8a,0x15,0x91,0xd6,0xff,0x81,0xd3,0xff,0x1a,0x99,
+0xa9,0x09,0xa1,0xcc,0xff,0x1a,0x88,0xaa,0x34,0xa1,0xd2,0xff,0x88,0x08,0x1a,0xaa,
+0x68,0x08,0x0c,0x1e,0x39,0x0a,0x06,0x3a,0x00,0x31,0xce,0xff,0x81,0xc4,0xff,0x1a,
+0x33,0x38,0x03,0xd8,0x48,0x69,0x03,0x31,0xd5,0xfc,0xe8,0x58,0x91,0xcb,0xff,0xa1,
+0xbf,0xff,0x3a,0x3d,0xe0,0x33,0xc0,0x9a,0x81,0x39,0x08,0x38,0x2a,0x71,0xbe,0xff,
+0x20,0xa2,0x20,0x37,0xb6,0x02,0xa2,0xa0,0x02,0x31,0xba,0xff,0xa9,0x01,0xa1,0xc0,
+0xff,0x3a,0x84,0x91,0xc2,0xff,0x31,0xb5,0xff,0x1a,0xaa,0x1a,0x99,0xb8,0x0a,0x7a,
+0x74,0xa8,0x33,0x89,0x09,0xfd,0x07,0x80,0xc8,0x20,0x81,0xc0,0xff,0xe0,0x08,0x00,
+0x91,0xbb,0xff,0xed,0x0a,0x1a,0x99,0x98,0x09,0xa8,0x23,0x88,0x09,0x78,0x07,0x80,
+0xaa,0xc0,0xa9,0x23,0xa1,0xb3,0xff,0x80,0x66,0xc0,0x1a,0xaa,0xa8,0x0a,0xb8,0x43,
+0x8a,0x9a,0x88,0x53,0xa1,0xaf,0xff,0x7a,0x78,0x0b,0x8e,0x1a,0xaa,0x80,0x8e,0x20,
+0x79,0x53,0x99,0x0a,0x80,0x8f,0x05,0xb0,0x77,0xc0,0xcc,0xa8,0xa2,0xd7,0x80,0x92,
+0xa0,0x01,0xa0,0x89,0x83,0x16,0x98,0x04,0x88,0x13,0x80,0xc7,0x63,0xac,0xfc,0xa1,
+0x9f,0xff,0xc7,0x3a,0x06,0x87,0xb7,0x03,0x86,0x22,0x00,0x00,0x81,0x97,0xff,0x0c,
+0x1a,0xd8,0x08,0x0c,0x08,0xd0,0xa8,0x83,0x81,0xa2,0xff,0xdd,0x0a,0x1a,0x88,0xa8,
+0x03,0xe9,0x08,0x25,0xd0,0xff,0x91,0x9e,0xff,0x1a,0x99,0xe8,0x09,0x56,0x5a,0x06,
+0x88,0x03,0x7a,0x88,0x89,0x03,0x88,0x13,0x70,0x78,0xc0,0x79,0x13,0x78,0x43,0x72,
+0x63,0x05,0x8c,0xe6,0xa1,0x8a,0xff,0x38,0x1a,0x8c,0x73,0xe0,0x3f,0x31,0xe0,0x33,
+0xc0,0x96,0x43,0xf0,0x96,0xee,0x03,0x31,0x85,0xff,0x38,0x13,0xcc,0x6e,0x8c,0x73,
+0x86,0x0c,0x00,0x00,0x00,0x00,0x16,0xc3,0x02,0x31,0x88,0xff,0x10,0x33,0x80,0xa2,
+0x23,0x00,0x25,0x47,0xff,0xdc,0x8a,0x61,0x8b,0xff,0x81,0x82,0xff,0x6a,0x31,0x1a,
+0x88,0x88,0x08,0x38,0x03,0x3a,0x98,0x81,0x7f,0xff,0x1a,0x88,0x99,0x08,0x46,0x02,
+0x00,0x7c,0xf2,0xc6,0x04,0x00,0x7c,0xd2,0x86,0x03,0x00,0x91,0x7a,0xff,0x38,0x15,
+0x1a,0x99,0x98,0x09,0x37,0xb9,0x02,0x46,0x99,0xff,0x1d,0xf0,0x20,0x80,0x00,0x00,
+0x18,0x80,0x00,0x00,0x14,0x80,0x00,0x00,0x1c,0x80,0x00,0x00,0x30,0x80,0x00,0x00,
+0x36,0x41,0x00,0x81,0xfe,0xff,0x20,0x42,0x20,0x22,0x22,0x06,0x80,0x81,0xc0,0x31,
+0x66,0xff,0x20,0x20,0x04,0x10,0x18,0x00,0x29,0x03,0x65,0xd3,0xff,0x2d,0x0a,0x56,
+0x2a,0x16,0xb8,0x34,0xa8,0x24,0x20,0x62,0x20,0xe5,0xe4,0xfe,0x31,0x60,0xff,0x58,
+0x04,0x81,0x63,0xff,0x59,0x03,0x58,0x44,0x1a,0x88,0x59,0x13,0x51,0x70,0xfc,0x19,
+0x43,0x5a,0x51,0x19,0x53,0x59,0x08,0x86,0x4c,0x00,0x00,0x00,0x60,0x88,0xc0,0x50,
+0xa5,0x20,0x82,0x65,0x00,0xa5,0x40,0xff,0xa0,0x7a,0x20,0x16,0x3a,0x11,0x98,0x05,
+0xfd,0x0a,0x86,0x34,0x00,0xa8,0x53,0x88,0x43,0xc1,0x64,0xfc,0x80,0x8a,0xc0,0x9a,
+0xb8,0xdd,0x09,0xb7,0xbc,0x02,0x80,0xdc,0xc0,0xe1,0xdc,0xff,0xcd,0x0d,0x1a,0xee,
+0x89,0x0e,0xe1,0xdb,0xff,0xbd,0x0f,0x1a,0xee,0x99,0x0e,0xe1,0xda,0xff,0x1a,0xee,
+0xd9,0x0e,0xe1,0xd9,0xff,0x1a,0xee,0xf9,0x0e,0x81,0x00,0xfd,0xe0,0x08,0x00,0xa1,
+0xd3,0xff,0xb1,0xd4,0xff,0xc1,0xd2,0xff,0xe1,0xd4,0xff,0x1a,0xaa,0x1a,0xbb,0x1a,
+0xcc,0x1a,0xee,0xd8,0x0b,0x88,0x0a,0x98,0x0c,0xa8,0x53,0xf8,0x0e,0xda,0x88,0xd0,
+0x99,0xc0,0xda,0xff,0xda,0xda,0xa8,0x13,0x0c,0x1b,0x80,0xaa,0xc0,0x0c,0x0c,0xa0,
+0xcb,0x83,0xd9,0x53,0xc0,0xa0,0x74,0x56,0x8a,0x00,0xc2,0xd8,0x80,0xc0,0xab,0x83,
+0x16,0x4a,0x05,0xa1,0x31,0xff,0xe1,0xc1,0xff,0xd8,0x0a,0x0c,0x1b,0x0c,0x0a,0xd0,
+0xab,0x93,0x1a,0xee,0xb8,0x43,0xdd,0x0a,0xa8,0x03,0x89,0x0e,0xe1,0xbd,0xff,0xcd,
+0x08,0x1a,0xee,0x99,0x0e,0xe1,0xbc,0xff,0x1a,0xee,0xf2,0x6e,0x00,0x65,0xb5,0xff,
+0xb1,0xb7,0xff,0xc1,0xb7,0xff,0xe1,0xb8,0xff,0x1a,0xbb,0x1a,0xcc,0x1a,0xee,0x88,
+0x0b,0x98,0x0c,0xf8,0x0e,0xdc,0x9a,0xa8,0x03,0x8a,0xaa,0xa9,0x03,0xa8,0x13,0x80,
+0x8a,0xc0,0x89,0x13,0x88,0x43,0x89,0x53,0x8c,0xc9,0x88,0x13,0x56,0x58,0xf2,0x46,
+0x01,0x00,0x7c,0xf8,0xc6,0x00,0x00,0x00,0x20,0x82,0x20,0x91,0xa8,0xff,0x70,0xa7,
+0x20,0x10,0x99,0x80,0x89,0x09,0xe5,0x2c,0xff,0xb1,0xa4,0xff,0x1a,0xbb,0x88,0x0b,
+0xcc,0xea,0xdc,0x28,0xc1,0x17,0xff,0x1a,0xcc,0xc8,0x0c,0x88,0x0c,0x8a,0x66,0x86,
+0x02,0x00,0x7c,0xf2,0x46,0x03,0x00,0x00,0x7c,0xd2,0xc6,0x01,0x00,0x88,0x14,0x87,
+0xb6,0x02,0x86,0xb1,0xff,0x1d,0xf0,0x00,0xf8,0xc1,0xfb,0x3f,0x2d,0xf0,0x00,0x00,
+0x00,0x00,0x00,0x04,0x05,0xc3,0xfb,0x3f,0x38,0x40,0x40,0x3f,0x40,0x00,0x80,0x61,
+0x44,0x00,0x80,0x61,0x3c,0x30,0x40,0x3f,0x58,0xc1,0xfb,0x3f,0x3c,0xfd,0xff,0x3f,
+0x28,0xc1,0xfb,0x3f,0xfe,0x3f,0x00,0x00,0xaa,0x50,0x00,0x00,0xbc,0x80,0x40,0x3f,
+0x18,0x00,0x4c,0x3f,0x20,0xc1,0xfb,0x3f,0x74,0x80,0x40,0x3f,0xff,0x00,0xfc,0xff,
+0xff,0xff,0xe7,0xff,0xff,0x3f,0xc0,0xff,0x00,0xc0,0x3f,0x00,0xff,0xff,0x01,0xfe,
+0x00,0x00,0x58,0x01,0x78,0x80,0x40,0x3f,0xff,0xff,0x7f,0x80,0xff,0x8f,0xff,0xff,
+0x00,0xff,0x03,0x00,0xff,0xbf,0xfd,0xff,0x25,0x26,0x25,0x26,0x7c,0xc0,0xfb,0x3f,
+0x84,0xc0,0xfb,0x3f,0xb1,0xc0,0xfb,0x3f,0xbe,0xc0,0xfb,0x3f,0x6c,0xc0,0xfb,0x3f,
+0x00,0x80,0x40,0x3f,0xe3,0xc0,0xfb,0x3f,0x66,0x08,0x00,0x00,0x04,0xc1,0xfb,0x3f,
+0x4b,0x4c,0x4b,0x4c,0xff,0xff,0x1f,0xe0,0xff,0xff,0xff,0x1f,0x00,0x00,0x18,0x00,
+0x00,0x00,0x08,0x00,0xc0,0x84,0x40,0x3f,0xc4,0x84,0x40,0x3f,0x60,0x80,0x40,0x3f,
+0xff,0xff,0xf1,0xff,0x00,0x00,0x06,0x00,0xff,0x1f,0xff,0xff,0x00,0x60,0x00,0x00,
+0xff,0xe3,0xff,0xff,0x00,0x0c,0x00,0x00,0x1c,0x80,0x40,0x3f,0x3f,0xc0,0xff,0xff,
+0x00,0x00,0x10,0x00,0xff,0xff,0xff,0x3f,0x00,0x00,0x00,0xc0,0xff,0xff,0xff,0xfb,
+0xa0,0xe4,0x00,0x40,0x6c,0x8d,0x01,0x40,0x3c,0x80,0x01,0x40,0x20,0x84,0x01,0x40,
+0xd8,0x8d,0x01,0x40,0x04,0x70,0x01,0x40,0x00,0x75,0x01,0x40,0x6c,0x2b,0x01,0x40,
+0xe0,0xfe,0x00,0x40,0xdc,0xb7,0x01,0x40,0x88,0xd8,0x00,0x40,0x36,0x61,0x01,0x32,
+0x61,0x11,0x42,0x61,0x12,0x52,0x61,0x13,0x62,0x61,0x14,0x72,0x61,0x15,0x31,0xb6,
+0xff,0x41,0xb8,0xff,0x0c,0x05,0x06,0x01,0x00,0x00,0x59,0x03,0x4b,0x33,0x47,0x33,
+0xf8,0x32,0xc1,0x40,0x42,0xa0,0x90,0x39,0x91,0x4a,0x31,0x39,0x81,0x0c,0x43,0x39,
+0xa1,0x0c,0xb3,0x27,0xa3,0x02,0xc6,0x6b,0x02,0x42,0x21,0x11,0x52,0x21,0x12,0x62,
+0x21,0x13,0x81,0xe3,0xff,0xe0,0x08,0x00,0x31,0xac,0xff,0x7d,0x0a,0xc0,0x20,0x00,
+0x38,0x03,0xcc,0xba,0x1c,0xc8,0x80,0x33,0x10,0x32,0xc3,0xf8,0x0c,0x18,0x30,0x78,
+0x83,0x31,0xa6,0xff,0xc0,0x20,0x00,0x88,0x03,0x31,0xa5,0xff,0xc0,0x20,0x00,0x38,
+0x03,0x07,0x68,0x02,0x27,0x63,0x47,0x0c,0x0d,0xcd,0x0d,0xbd,0x0d,0x0c,0x1a,0x81,
+0xd5,0xff,0xe0,0x08,0x00,0x81,0x9d,0xfd,0xe0,0x08,0x00,0x0c,0x0b,0xad,0x0b,0x0c,
+0x1c,0x81,0xd1,0xff,0xe0,0x08,0x00,0x81,0xd1,0xff,0xe0,0x08,0x00,0x81,0xd0,0xff,
+0xe0,0x08,0x00,0x81,0x97,0xff,0x7c,0xb9,0xc0,0x20,0x00,0x38,0x08,0xa2,0xa0,0x00,
+0x90,0x33,0x10,0xc0,0x20,0x00,0x32,0x68,0x00,0x81,0x92,0xfd,0xe0,0x08,0x00,0x31,
+0x91,0xff,0xc0,0x20,0x00,0xb8,0x03,0x0c,0x43,0x30,0xbb,0x10,0x56,0x7b,0x00,0xad,
+0x07,0x81,0xc4,0xff,0xe0,0x08,0x00,0xe5,0xbd,0xfe,0xa2,0xca,0xee,0x2c,0x73,0xa7,
+0x33,0x0d,0x71,0x89,0xff,0xe0,0xaa,0x11,0xaa,0xa7,0xb2,0x2a,0x00,0x56,0xfb,0x00,
+0x22,0xc2,0xfc,0x0c,0x13,0x0c,0x0b,0x20,0xb3,0x93,0xb0,0x20,0x60,0x06,0x3e,0x02,
+0x66,0x42,0x05,0x2d,0x0b,0x06,0x3c,0x02,0x00,0x31,0x80,0xff,0xf1,0x78,0xfd,0xd1,
+0x6d,0xfb,0xc1,0x93,0xfb,0xa8,0x03,0xe2,0xa1,0x00,0x81,0xb3,0xff,0xe0,0x08,0x00,
+0x81,0xf8,0xfd,0xe0,0x08,0x00,0x3d,0x0a,0x8c,0x1a,0x06,0x51,0x00,0x0c,0xb8,0x27,
+0xb8,0x02,0xc6,0x2c,0x02,0x81,0x76,0xff,0xe0,0x22,0x11,0x2a,0x28,0x28,0x02,0xa0,
+0x02,0x00,0xe5,0x96,0xff,0x2d,0x0a,0x8c,0x1a,0x06,0x2b,0x02,0xc6,0x11,0x00,0x00,
+0x81,0x71,0xff,0x30,0x75,0xc0,0x80,0x67,0x63,0x60,0x90,0x14,0x8c,0x89,0x7c,0xc9,
+0x90,0x66,0x10,0xcc,0x16,0xc6,0x21,0x02,0xad,0x06,0x65,0xfe,0xfe,0x9d,0x0a,0x16,
+0xfa,0x0f,0xbd,0x0a,0xcd,0x06,0x3a,0xa4,0x92,0x61,0x22,0xe5,0x58,0xff,0x92,0x21,
+0x22,0x7d,0x0a,0xad,0x09,0xe5,0xf8,0xfe,0xa0,0xa7,0x20,0x56,0x3a,0x0e,0x60,0x33,
+0x80,0x25,0xf5,0xfe,0x56,0xaa,0x0d,0x57,0x33,0xb5,0xc6,0x16,0x02,0x0c,0x4c,0xbd,
+0x01,0x3a,0xa4,0x65,0x56,0xff,0x56,0x8a,0x0c,0x70,0xa7,0x20,0x25,0xfa,0xfe,0x2d,
+0x0a,0x16,0xda,0x0b,0xcd,0x07,0xbd,0x01,0x81,0x11,0xfc,0xe0,0x08,0x00,0xad,0x02,
+0x25,0xf5,0xfe,0x56,0xba,0x0a,0xe5,0xf1,0xfe,0x2d,0x0a,0xcc,0x1a,0x06,0x0a,0x02,
+0x86,0x27,0x00,0xbd,0x05,0xad,0x04,0x65,0x73,0xff,0x86,0x03,0x00,0x00,0x00,0x00,
+0x60,0xc6,0x20,0x50,0xb5,0x20,0x40,0xa4,0x20,0xa5,0x68,0xff,0x2d,0x0a,0xc6,0x01,
+0x02,0xad,0x04,0xe5,0xb6,0xff,0x86,0xfc,0xff,0x00,0x00,0x00,0xad,0x04,0x25,0x95,
+0xff,0xc6,0xf9,0xff,0x60,0xc6,0x20,0x50,0xb5,0x20,0x40,0xa4,0x20,0x65,0x81,0xff,
+0x06,0xf6,0xff,0x25,0xaa,0xfe,0xa2,0xca,0xee,0x22,0xa0,0x27,0xa7,0x32,0x08,0xe0,
+0xaa,0x11,0xa0,0x77,0x80,0x32,0x27,0x00,0x0c,0x02,0x29,0x05,0x2c,0x06,0x21,0x4b,
+0xfb,0xbd,0x05,0xad,0x04,0x66,0x04,0x30,0x60,0xc6,0x20,0x10,0xb1,0x20,0x20,0xa2,
+0x20,0x65,0x4c,0xff,0xec,0xaa,0x41,0x34,0xff,0x72,0x11,0x00,0x40,0x40,0xf4,0x47,
+0x97,0x25,0xa8,0x11,0xa7,0x33,0x25,0x48,0x21,0x4a,0x4a,0x47,0x33,0x1e,0x42,0x01,
+0x02,0x22,0xc2,0x20,0x56,0x04,0xfd,0xbd,0x05,0xe5,0x57,0xff,0x06,0xdf,0xff,0x00,
+0x00,0x00,0x7c,0xf2,0x46,0xe0,0x01,0x00,0x7c,0xa2,0xc6,0xde,0x01,0x7c,0x92,0x86,
+0xdd,0x01,0x00,0x25,0x66,0xff,0x71,0x9b,0xfd,0xc1,0x0f,0xfb,0x70,0x74,0x10,0x60,
+0xb6,0x20,0x70,0xa7,0x20,0x25,0x47,0xff,0x8c,0x4a,0x0c,0x02,0x46,0xd6,0x01,0x00,
+0x40,0x30,0xb4,0x30,0x36,0x80,0x22,0x03,0x00,0x0c,0x28,0x20,0x23,0x04,0x0c,0x3b,
+0x20,0xb8,0x93,0x2d,0x0b,0xcd,0x0b,0x50,0xa5,0x20,0x30,0xb3,0x20,0x81,0xcf,0xfb,
+0xe0,0x08,0x00,0xbd,0x02,0xad,0x04,0x65,0x64,0xff,0x56,0xca,0xfc,0x41,0x07,0xff,
+0x26,0x22,0x02,0x41,0x52,0xfb,0x40,0x58,0x74,0x42,0x43,0x00,0x52,0x43,0x01,0x66,
+0x32,0x05,0x40,0x40,0x75,0x42,0x43,0x02,0x65,0x92,0xfe,0x0c,0x13,0x0c,0x0d,0xc1,
+0xf6,0xfa,0xa0,0xd3,0x93,0xbd,0x06,0xad,0x07,0xa5,0x6c,0xff,0x56,0xaa,0xf9,0xc6,
+0x19,0x00,0x00,0x25,0x5e,0xff,0x71,0x7b,0xfd,0xc1,0xef,0xfa,0x70,0x74,0x10,0x60,
+0xb6,0x20,0xad,0x07,0x25,0x3f,0xff,0x56,0x7a,0xf5,0x32,0x05,0x00,0x0c,0x28,0x30,
+0x33,0x04,0x0c,0x32,0x30,0x28,0x93,0xbd,0x02,0xad,0x04,0x25,0x5e,0xff,0x3d,0x02,
+0xa0,0x2a,0x20,0x56,0xba,0xf3,0x82,0x05,0x00,0x40,0x40,0xb4,0x4a,0x46,0x82,0x44,
+0x00,0x82,0x05,0x01,0x82,0x44,0x01,0x66,0x33,0x05,0x32,0x05,0x02,0x32,0x44,0x02,
+0xe5,0x8b,0xfe,0x32,0xa0,0x01,0xd2,0xa0,0x00,0xc1,0xdb,0xfa,0xa0,0xd3,0x93,0xbd,
+0x06,0x70,0xa7,0x20,0xe5,0x65,0xff,0x56,0x7a,0xf0,0xa5,0x57,0xff,0x06,0xa2,0x01,
+0x00,0x51,0xce,0xfa,0x42,0x61,0x19,0xc0,0x20,0x00,0x28,0x05,0x20,0x2a,0x14,0x26,
+0x12,0x36,0x8c,0x62,0x22,0xc2,0xfe,0x0c,0x8b,0x86,0x14,0x00,0xc0,0x20,0x00,0x28,
+0x05,0x51,0xe2,0xfe,0x20,0x20,0x94,0xc0,0x20,0x00,0x58,0x05,0x1b,0x22,0x50,0xb0,
+0xf4,0x50,0x60,0xf5,0x67,0x9b,0x09,0x0b,0x55,0x7c,0xd6,0x57,0x36,0x02,0x46,0x00,
+0x00,0x2c,0x8b,0x20,0xbb,0xc2,0x06,0x0a,0x00,0x51,0xd9,0xfe,0x5c,0x09,0xc0,0x20,
+0x00,0x28,0x05,0xc0,0x20,0x00,0x58,0x05,0x20,0x20,0x14,0x92,0x61,0x18,0x9c,0x32,
+0x52,0xa0,0xa0,0x52,0x61,0x18,0x26,0x12,0x0b,0x22,0xc2,0xfe,0xb2,0xa0,0xf0,0x20,
+0xb3,0x93,0xb2,0x61,0x18,0x26,0x04,0x07,0xe6,0x14,0x0a,0x06,0x7d,0x01,0x00,0x00,
+0x62,0xa0,0xf0,0x62,0x61,0x19,0x51,0xcc,0xfe,0x41,0xca,0xfe,0xc0,0x20,0x00,0x98,
+0x05,0x82,0x21,0x19,0x78,0x14,0x28,0x04,0x92,0x61,0x20,0x80,0x40,0x94,0x90,0x8e,
+0x15,0xc0,0x20,0x00,0x98,0x05,0x82,0x61,0x1c,0x82,0x61,0x1a,0x92,0x61,0x1f,0x90,
+0x8d,0x05,0x91,0xc2,0xfe,0x82,0x61,0x1d,0x29,0xb1,0x40,0x60,0xf4,0x90,0x22,0x10,
+0x92,0x21,0x1d,0x80,0x86,0x11,0x80,0x22,0x20,0xe0,0x89,0x01,0x91,0x40,0xfa,0x79,
+0xc1,0x90,0x22,0x10,0x92,0x21,0x1c,0x80,0x22,0x20,0xd0,0x89,0x01,0x91,0xb8,0xfe,
+0x79,0x11,0x90,0x22,0x10,0x80,0x22,0x20,0x71,0x99,0xfa,0x29,0xb1,0x29,0x01,0x20,
+0x85,0x75,0x20,0x2d,0x25,0x82,0x61,0x1b,0x22,0x61,0x1e,0x81,0xb2,0xfe,0xc0,0x20,
+0x00,0x28,0x07,0x0c,0x0a,0x80,0x22,0x10,0x81,0xb0,0xfe,0x80,0x22,0x20,0xc0,0x20,
+0x00,0x29,0x07,0xc0,0x20,0x00,0x28,0x05,0x71,0xad,0xfe,0x70,0x22,0x10,0x71,0xac,
+0xfe,0x70,0x22,0x20,0xc0,0x20,0x00,0x29,0x05,0x21,0xaa,0xfe,0x81,0x29,0xfa,0xc0,
+0x20,0x00,0x78,0x02,0x92,0x21,0x1b,0x80,0x77,0x10,0xc0,0x20,0x00,0x79,0x02,0xc0,
+0x20,0x00,0x78,0x02,0x81,0xa5,0xfe,0x80,0x77,0x10,0x90,0x89,0x01,0x80,0x77,0x20,
+0xc0,0x20,0x00,0x79,0x02,0xc0,0x20,0x00,0x78,0x02,0x81,0x04,0xfd,0x80,0x77,0x20,
+0xc0,0x20,0x00,0x79,0x02,0xc0,0x20,0x00,0x28,0x05,0x7c,0x77,0x70,0x22,0x10,0xc0,
+0x20,0x00,0x29,0x05,0xc0,0x20,0x00,0x28,0x05,0x82,0x21,0x1e,0x71,0x98,0xfe,0x70,
+0x22,0x10,0x40,0x78,0x11,0x70,0x22,0x20,0xc0,0x20,0x00,0x29,0x05,0xc0,0x20,0x00,
+0x78,0x05,0x0c,0x82,0x20,0x77,0x20,0xc0,0x20,0x00,0x79,0x05,0x51,0x06,0xfa,0x81,
+0x90,0xfe,0xc0,0x20,0x00,0x78,0x05,0x80,0x77,0x20,0xc0,0x20,0x00,0x79,0x05,0xc0,
+0x20,0x00,0x78,0x05,0x81,0x8c,0xfe,0x80,0x77,0x10,0xc0,0x20,0x00,0x79,0x05,0x81,
+0xaf,0xfe,0xe0,0x08,0x00,0x51,0x60,0xfa,0x71,0x88,0xfe,0xc0,0x20,0x00,0x79,0x05,
+0x71,0x5b,0xfa,0xc0,0x20,0x00,0x58,0x07,0x50,0x5a,0x14,0x26,0x15,0x1e,0x8c,0x65,
+0x26,0x25,0x5c,0x06,0x10,0x00,0x00,0x00,0xc0,0x20,0x00,0x28,0x07,0x2c,0x85,0x20,
+0x20,0x94,0x1b,0x22,0x20,0x25,0xc2,0x46,0x11,0x00,0x00,0x00,0x00,0x21,0x6c,0xfe,
+0xc0,0x20,0x00,0x58,0x02,0xc0,0x20,0x00,0x28,0x02,0x50,0x50,0x14,0xac,0x55,0x26,
+0x15,0x2a,0x22,0xa0,0xf0,0x26,0x25,0x27,0xb1,0x75,0xfe,0xa1,0x75,0xfe,0x81,0x98,
+0xfe,0xe0,0x08,0x00,0x06,0xff,0xff,0xb1,0x71,0xfe,0xa1,0x71,0xfe,0x81,0x94,0xfe,
+0xe0,0x08,0x00,0x06,0xff,0xff,0x5c,0x02,0x06,0x01,0x00,0x00,0x00,0x22,0xa0,0xa0,
+0x2c,0x85,0x67,0x35,0x12,0x40,0x75,0xc2,0x70,0x81,0x41,0x5a,0x88,0x70,0x88,0xc2,
+0x87,0x94,0x38,0x8d,0x03,0x86,0x08,0x00,0x5c,0x05,0x57,0x14,0x10,0x52,0xa0,0xa0,
+0x57,0x14,0x10,0x52,0xa0,0xf0,0x0c,0x27,0x57,0x14,0x0a,0x46,0x07,0x00,0x0c,0x67,
+0x86,0x00,0x00,0x00,0x0c,0x37,0x0c,0x18,0x52,0xa1,0xe0,0x91,0x30,0xfa,0xc0,0x20,
+0x00,0x98,0x09,0x90,0x9a,0x14,0x16,0x79,0x04,0xc6,0x03,0x00,0xb1,0x5a,0xfe,0xa1,
+0x5a,0xfe,0x81,0x7b,0xfe,0xe0,0x08,0x00,0x06,0xff,0xff,0x00,0x0c,0x1b,0x2c,0x8a,
+0x82,0x61,0x21,0x92,0x61,0x22,0x65,0x8b,0xfe,0x92,0x21,0x22,0x82,0x21,0x21,0x66,
+0x19,0x1e,0xa1,0x52,0xfe,0x98,0x0a,0x97,0x15,0x16,0xb1,0x51,0xfe,0xc2,0xa5,0x40,
+0xc0,0x20,0x00,0x98,0x0b,0xc0,0x99,0x20,0xc0,0x20,0x00,0x99,0x0b,0x0c,0x09,0x99,
+0x0a,0xcc,0xf8,0x66,0x17,0x02,0xc6,0x6b,0x00,0xbd,0x07,0xad,0x04,0xe5,0x87,0xfe,
+0x46,0x69,0x00,0x00,0x81,0x47,0xfe,0x92,0xaa,0xbf,0xc0,0x20,0x00,0x72,0x28,0x00,
+0x90,0x77,0x10,0xc0,0x20,0x00,0x72,0x68,0x00,0x72,0xa1,0xe0,0x81,0x2d,0xfe,0x77,
+0x95,0x21,0xc0,0x20,0x00,0x92,0x28,0x00,0x0c,0x47,0x70,0x99,0x20,0xc0,0x20,0x00,
+0x99,0x08,0xc2,0xa0,0x6b,0xbd,0x07,0xa2,0xa0,0x66,0x25,0x7f,0xfe,0x0c,0x88,0x06,
+0x08,0x00,0x00,0x00,0xc0,0x20,0x00,0x72,0x28,0x00,0x7c,0xb9,0x90,0x77,0x10,0xc0,
+0x20,0x00,0x79,0x08,0xc2,0xa0,0x69,0x0c,0x4b,0xa2,0xa0,0x66,0xe5,0x7c,0xfe,0x0c,
+0x57,0x0c,0x48,0x5c,0x0c,0x0c,0x2b,0xa2,0xa0,0x66,0x82,0x61,0x21,0xe5,0x7b,0xfe,
+0x82,0x21,0x21,0x0c,0x3b,0xcd,0x08,0xa2,0xa0,0x66,0x25,0x7b,0xfe,0x0c,0x0e,0xdd,
+0x0e,0x0c,0x2c,0x0c,0x5b,0xa2,0xa0,0x66,0x25,0x71,0xfe,0x0c,0x0e,0x0c,0x4d,0x0c,
+0x6c,0xb2,0xa0,0x05,0xa2,0xa0,0x66,0x65,0x70,0xfe,0xc2,0xa0,0x90,0xc0,0xc7,0x20,
+0x0c,0x6b,0xa2,0xa0,0x66,0x65,0x78,0xfe,0x0c,0x1e,0x0c,0x4d,0xcd,0x0d,0xbd,0x0e,
+0xa2,0xa0,0x66,0xa5,0x6e,0xfe,0x0c,0x09,0x72,0xa0,0x66,0x86,0x05,0x00,0x0c,0xf8,
+0x87,0x99,0x0e,0xb1,0x12,0xfe,0xa1,0x17,0xfe,0x81,0x35,0xfe,0xe0,0x08,0x00,0x06,
+0xff,0xff,0x92,0xc9,0x01,0x90,0xe9,0x20,0x0c,0x0d,0x0c,0x3c,0x0c,0x1b,0x70,0xa7,
+0x20,0x92,0x61,0x22,0x65,0x6b,0xfe,0xad,0x07,0xa5,0x60,0xfe,0xa1,0x0f,0xfe,0x81,
+0xa7,0xf9,0x92,0x21,0x22,0xc0,0x20,0x00,0xa9,0x08,0xa1,0xa5,0xf9,0xc0,0x20,0x00,
+0xb8,0x08,0xa7,0x8b,0xf7,0xc0,0x20,0x00,0x88,0x08,0x80,0x80,0x35,0x56,0xd8,0xfa,
+0x71,0x03,0xfe,0x59,0x07,0x5c,0x05,0x57,0x14,0x21,0x52,0xa0,0xa0,0x57,0x14,0x20,
+0x82,0xa0,0xf0,0x52,0xa0,0x02,0x72,0xa0,0x07,0x87,0x14,0x18,0xb1,0xf8,0xfd,0xa1,
+0xff,0xfd,0x81,0x1b,0xfe,0xe0,0x08,0x00,0x06,0xff,0xff,0x00,0x5d,0x08,0x46,0x00,
+0x00,0x0c,0x15,0x0c,0x47,0x81,0xe2,0xfd,0x7c,0xc9,0xc0,0x20,0x00,0x48,0x08,0x50,
+0x77,0x11,0x90,0x44,0x10,0x50,0x54,0x20,0xc0,0x20,0x00,0x59,0x08,0x51,0xbf,0xf9,
+0x82,0xac,0x00,0xc0,0x20,0x00,0x48,0x05,0x91,0xc2,0xf9,0x80,0x44,0x10,0x81,0xbf,
+0xf9,0xc0,0x20,0x00,0x49,0x05,0xc0,0x20,0x00,0x48,0x08,0x90,0x44,0x10,0x70,0x44,
+0x20,0xc0,0x20,0x00,0x49,0x08,0xc0,0x20,0x00,0x48,0x05,0x71,0xb5,0xf9,0x70,0x44,
+0x10,0x72,0xa4,0x00,0x70,0x44,0x20,0xc0,0x20,0x00,0x42,0x65,0x00,0x41,0xb2,0xf9,
+0x51,0xe4,0xfd,0xc0,0x20,0x00,0x52,0x64,0x00,0xa0,0xea,0x03,0xa0,0xb6,0xa2,0xa0,
+0xa6,0x82,0xcd,0x02,0xd2,0xa0,0x00,0x81,0xfb,0xfd,0xe0,0x08,0x00,0xa0,0xea,0x13,
+0x41,0xc7,0xfd,0x28,0x01,0x80,0x66,0x11,0x40,0x22,0x10,0x60,0x22,0x20,0x92,0x21,
+0x1d,0x61,0x46,0xf9,0x52,0x21,0x1c,0xe0,0x49,0x01,0x60,0x22,0x10,0x40,0x22,0x20,
+0xd0,0x45,0x01,0x51,0xbf,0xfd,0x62,0x21,0x1b,0x50,0x22,0x10,0x51,0xd2,0xfd,0x40,
+0x22,0x20,0x50,0x22,0x10,0xb0,0x46,0x01,0x51,0xd0,0xfd,0x82,0x21,0x1e,0x40,0x22,
+0x20,0x50,0x22,0x10,0x30,0x48,0x01,0x51,0xcd,0xfd,0x40,0x22,0x20,0x41,0xcc,0xfd,
+0x29,0x01,0x50,0x52,0x10,0x47,0x15,0x02,0x46,0x21,0x00,0x61,0xca,0xfd,0x71,0xcc,
+0xfd,0xc0,0x20,0x00,0x48,0x06,0x50,0x44,0x20,0xc0,0x20,0x00,0x49,0x06,0x61,0xc6,
+0xfd,0xc0,0x20,0x00,0x48,0x06,0x50,0x44,0x20,0xc0,0x20,0x00,0x49,0x06,0x41,0xc3,
+0xfd,0xc0,0x20,0x00,0x68,0x04,0x70,0x66,0x10,0x71,0xc2,0xfd,0x70,0x66,0x20,0xc0,
+0x20,0x00,0x69,0x04,0xc0,0x20,0x00,0x68,0x04,0x71,0xbf,0xfd,0x70,0x66,0x10,0x71,
+0xbf,0xfd,0x70,0x66,0x20,0xc0,0x20,0x00,0x69,0x04,0xc0,0x20,0x00,0x68,0x04,0x71,
+0xbc,0xfd,0x70,0x66,0x10,0x71,0xbb,0xfd,0x70,0x66,0x20,0xc0,0x20,0x00,0x69,0x04,
+0xc0,0x20,0x00,0x68,0x04,0x72,0xa2,0x00,0x70,0x66,0x20,0xc0,0x20,0x00,0x69,0x04,
+0xc0,0x20,0x00,0x68,0x04,0x71,0x9e,0xf9,0x70,0x66,0x20,0xc0,0x20,0x00,0x62,0x64,
+0x00,0x27,0x72,0x58,0x21,0x8d,0xfd,0x62,0xaf,0xbf,0xc0,0x20,0x00,0x48,0x02,0x71,
+0xaf,0xfd,0x60,0x44,0x10,0x61,0xac,0xfd,0xc0,0x20,0x00,0x49,0x02,0xc0,0x20,0x00,
+0x48,0x06,0x3c,0x2a,0x70,0x44,0x10,0x72,0xa1,0x40,0x70,0x44,0x20,0xc0,0x20,0x00,
+0x49,0x06,0x81,0xb5,0xfd,0xe0,0x08,0x00,0x41,0xa6,0xfd,0x47,0x95,0x0e,0xc0,0x20,
+0x00,0x48,0x02,0x52,0xaf,0x7f,0x50,0x44,0x10,0xc6,0x02,0x00,0x00,0xc0,0x20,0x00,
+0x48,0x02,0x52,0xa0,0x80,0x50,0x44,0x20,0xc0,0x20,0x00,0x49,0x02,0x21,0x76,0xfd,
+0x51,0xd3,0xf8,0xc0,0x20,0x00,0x48,0x02,0x92,0x21,0x1f,0x50,0x44,0x10,0x51,0xd0,
+0xf8,0x0c,0x3a,0x50,0x59,0x10,0x50,0x44,0x20,0xc0,0x20,0x00,0x49,0x02,0x81,0xa2,
+0xfd,0xe0,0x08,0x00,0xc0,0x20,0x00,0x48,0x02,0x51,0x92,0xfd,0x62,0x21,0x20,0x50,
+0x44,0x10,0x51,0x91,0xfd,0x82,0x21,0x1a,0x50,0x56,0x10,0x50,0x44,0x20,0xc0,0x20,
+0x00,0x49,0x02,0xc0,0x20,0x00,0x48,0x02,0x52,0xae,0xff,0x50,0x44,0x10,0x62,0xa1,
+0x00,0x0b,0x58,0x50,0x63,0x93,0x60,0x44,0x20,0xc0,0x20,0x00,0x49,0x02,0xc0,0x20,
+0x00,0x28,0x02,0x41,0x86,0xfd,0x5d,0x06,0x40,0x22,0x10,0x66,0x28,0x02,0x31,0x4c,
+0xfd,0x30,0x32,0x20,0x21,0x59,0xfd,0xa2,0xa1,0x2c,0xc0,0x20,0x00,0x39,0x02,0x81,
+0x8a,0xfd,0xe0,0x08,0x00,0x92,0x21,0x19,0x21,0x37,0xf9,0x31,0xaf,0xf9,0x20,0x29,
+0x82,0x29,0x03,0x22,0x21,0x18,0xc6,0x03,0x00,0x7c,0xe2,0x86,0x02,0x00,0x00,0x00,
+0xf6,0x47,0x02,0x86,0xe9,0xfd,0x06,0x1e,0xfe,0x1d,0xf0,0x00,0x36,0x41,0x00,0x22,
+0x02,0x00,0x92,0xa1,0x03,0x20,0x20,0x04,0x0c,0x08,0x20,0x89,0x83,0x2d,0x08,0x1d,
+0xf0,0x00,0x00,0x00,0x36,0x41,0x00,0x82,0x02,0x00,0x07,0x68,0x17,0xc0,0x20,0x00,
+0x49,0xb2,0xc0,0x20,0x00,0x49,0xa2,0x0c,0x08,0xc0,0x20,0x00,0x89,0xc2,0x39,0x92,
+0xc0,0x20,0x00,0x89,0xd2,0x1d,0xf0,0x00,0x36,0x41,0x00,0x82,0x02,0x00,0x22,0xa1,
+0x03,0x07,0x68,0x0b,0x32,0xc3,0xfc,0x22,0x13,0x00,0x22,0x53,0x01,0x22,0xa0,0x00,
+0x1d,0xf0,
+
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_code_wlog.inc 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_code_wlog.inc
new file mode 100644
index 0000000000..40026ebdb8
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_code_wlog.inc
@@ -0,0 +1,691 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0xcc,0xe1,0xfb,0x3f,0xb4,0xe1,0xfb,0x3f,0x36,0x41,0x00,0x81,0xfd,0xff,0xbd,0x02,
+0x82,0x08,0x00,0xcd,0x03,0x8c,0xf8,0x91,0xfb,0xff,0x88,0x29,0x8c,0x88,0x88,0x58,
+0x8c,0x48,0xa2,0x29,0x03,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x00,0xb0,0xd1,0xfb,0x3f,
+0x36,0x41,0x00,0x91,0xfe,0xff,0x88,0x09,0x8a,0xa9,0x1b,0x88,0x80,0x80,0xb4,0x22,
+0x4a,0x04,0x89,0x09,0x1d,0xf0,0x00,0x00,0x48,0xe0,0x00,0x60,0x0f,0x00,0xfe,0xff,
+0x00,0xc4,0x01,0x00,0x44,0xe0,0x00,0x60,0x00,0xff,0x7f,0x00,0x90,0x60,0x42,0x3f,
+0x00,0x00,0x04,0x00,0xff,0xbf,0xff,0xff,0xff,0xff,0xfd,0xff,0xff,0xff,0xfb,0xff,
+0xff,0xff,0xbf,0xff,0x36,0x41,0x00,0x91,0xf4,0xff,0xa1,0xf4,0xff,0xc0,0x20,0x00,
+0x88,0x09,0xb1,0xf7,0xff,0xa0,0x88,0x10,0xa1,0xf2,0xff,0xa0,0x88,0x20,0xc0,0x20,
+0x00,0x89,0x09,0x81,0xf0,0xff,0xa1,0xf0,0xff,0xc0,0x20,0x00,0x98,0x08,0xa0,0x99,
+0x20,0xa1,0xee,0xff,0xc0,0x20,0x00,0x99,0x08,0xc0,0x20,0x00,0x98,0x0a,0xb0,0x99,
+0x20,0xc0,0x20,0x00,0x99,0x0a,0x92,0xa0,0x66,0x97,0x12,0x23,0x27,0x39,0x08,0x92,
+0xa0,0x61,0x97,0x12,0x32,0xc6,0x0f,0x00,0x92,0xa0,0x69,0x97,0x12,0x1d,0x92,0xa0,
+0x6d,0x97,0x92,0x33,0xc0,0x20,0x00,0x28,0x08,0x91,0xe2,0xff,0x06,0x08,0x00,0x00,
+0xc0,0x20,0x00,0x28,0x08,0x91,0xe0,0xff,0x06,0x05,0x00,0x00,0xc0,0x20,0x00,0x28,
+0x08,0x91,0xde,0xff,0x06,0x02,0x00,0x00,0xc0,0x20,0x00,0x28,0x08,0x91,0xdc,0xff,
+0x90,0x22,0x10,0xc0,0x20,0x00,0x29,0x08,0x1d,0xf0,0x00,0x00,0x00,0x00,0x00,0x01,
+0x00,0xe0,0x00,0x60,0x00,0x00,0x00,0x02,0x36,0x41,0x00,0xad,0x02,0x80,0x33,0x11,
+0x25,0xf5,0xff,0x20,0x33,0x20,0x00,0x44,0x11,0x21,0xf8,0xff,0x40,0x33,0x20,0x41,
+0xf8,0xff,0x20,0x33,0x20,0x21,0xf7,0xff,0xc0,0x20,0x00,0x39,0x04,0xc0,0x20,0x00,
+0x38,0x04,0x27,0x83,0xf7,0x1d,0xf0,0x00,0x8c,0x00,0x4c,0x3f,0xff,0xf3,0xff,0xff,
+0x40,0x42,0x0f,0x00,0xc0,0x80,0x40,0x3f,0x84,0x80,0x40,0x3f,0xff,0xc7,0xff,0xff,
+0x00,0x10,0x00,0x00,0x00,0x20,0x00,0x00,0x36,0x41,0x00,0x81,0xf7,0xff,0xb2,0xac,
+0x00,0xc0,0x20,0x00,0xa8,0x08,0x0b,0x33,0xb0,0xaa,0x10,0xc0,0x20,0x00,0xa9,0x08,
+0xc0,0x20,0x00,0x98,0x08,0x30,0x30,0x94,0xb0,0x99,0x10,0x90,0x33,0x20,0xc0,0x20,
+0x00,0x39,0x08,0xc0,0x20,0x00,0x38,0x08,0x91,0xed,0xff,0x90,0x33,0x10,0xc0,0x20,
+0x00,0x39,0x08,0x81,0xeb,0xff,0x91,0xed,0xff,0x80,0x82,0x82,0x80,0x8c,0x41,0x80,
+0x30,0xf4,0x00,0x88,0x11,0x80,0x83,0x20,0x31,0xe7,0xff,0xc0,0x20,0x00,0x89,0x03,
+0x31,0xe6,0xff,0xc0,0x20,0x00,0x88,0x03,0x90,0x88,0x10,0xe6,0x32,0x05,0x21,0xe4,
+0xff,0x86,0x00,0x00,0x21,0xe4,0xff,0x20,0x88,0x20,0xc0,0x20,0x00,0x89,0x03,0x1d,
+0xf0,0x00,0x00,0x00,0x1c,0x00,0x10,0x00,0x36,0x41,0x00,0x21,0xfe,0xff,0x20,0x62,
+0x40,0x20,0x26,0x05,0x1d,0xf0,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x01,0x00,
+0xe0,0x10,0x4c,0x3f,0x36,0x41,0x00,0x81,0xfc,0xff,0x56,0x22,0x00,0x81,0xfb,0xff,
+0x91,0xfc,0xff,0x0c,0x02,0xc0,0x20,0x00,0x89,0x09,0x1d,0xf0,0x14,0x00,0x10,0x00,
+0x36,0x41,0x00,0x0c,0x08,0x91,0xfd,0xff,0x80,0x79,0x40,0x1d,0xf0,0x00,0x00,0x00,
+0x00,0x80,0x3f,0x00,0x00,0x00,0x80,0x00,0x36,0x41,0x00,0x91,0xea,0xff,0x80,0x69,
+0x40,0xa1,0xfb,0xff,0x10,0x22,0x11,0xa0,0x22,0x10,0x30,0x30,0xe4,0x30,0x22,0x20,
+0x31,0xf9,0xff,0x30,0x88,0x10,0x80,0x22,0x20,0x20,0x79,0x40,0x25,0xfc,0xff,0x0c,
+0x02,0x1d,0xf0,0x00,0x2b,0x82,0x02,0x40,0x36,0x41,0x00,0x81,0xfe,0xff,0x91,0xeb,
+0xff,0x80,0x79,0x40,0x81,0xdc,0xff,0x80,0x68,0x40,0x92,0xa0,0x00,0x77,0x78,0x14,
+0x80,0xaf,0x64,0x80,0x80,0xe4,0x97,0x98,0x05,0x20,0x80,0x64,0xa7,0x18,0x05,0x25,
+0xf9,0xff,0x92,0xa1,0x01,0x90,0x29,0x20,0x90,0x00,0x00,0x00,0x36,0x41,0x00,0x82,
+0x02,0x00,0x0c,0x02,0x27,0x58,0x08,0x21,0xcf,0xff,0x20,0x62,0x40,0x20,0x27,0x05,
+0x1d,0xf0,0x00,0x00,0x00,0x40,0xff,0x3f,0x00,0x40,0x00,0x00,0x00,0x80,0xff,0x3f,
+0x04,0x00,0x10,0x00,0x36,0x41,0x00,0x8d,0x02,0x0c,0x02,0xc0,0x20,0x00,0x29,0xb8,
+0xc0,0x20,0x00,0x29,0xa8,0x91,0xf7,0xff,0xc0,0x20,0x00,0x29,0xc8,0xc0,0x20,0x00,
+0x29,0xd8,0x99,0x58,0xa1,0xf6,0xff,0x91,0xf4,0xff,0xc0,0x20,0x00,0x29,0x38,0x99,
+0x68,0xa9,0x78,0x99,0x88,0xc0,0x20,0x00,0x29,0x48,0x91,0xc1,0xff,0xa1,0xbf,0xff,
+0x29,0x98,0xc0,0x20,0x00,0x29,0x28,0xc0,0x20,0x00,0xa9,0x09,0x91,0xed,0xff,0x0c,
+0x2a,0xa0,0x79,0x40,0xa2,0xa0,0x80,0xa0,0x79,0x40,0x91,0xb2,0xff,0x20,0x79,0x40,
+0x91,0xbf,0xff,0x20,0x79,0x40,0x92,0x08,0x00,0x0c,0x1a,0xa0,0x99,0x20,0x92,0x48,
+0x00,0x1d,0xf0,0x00,0xd0,0xe1,0xfb,0x3f,0x7d,0xc0,0xfb,0x3f,0xe0,0xfe,0x00,0x40,
+0x36,0x41,0x00,0x81,0xfc,0xff,0xcd,0x02,0x88,0x08,0xbd,0x03,0xdd,0x04,0x8c,0x78,
+0xa1,0xfa,0xff,0x81,0xfa,0xff,0xe0,0x08,0x00,0x06,0xff,0xff,0x9b,0xc0,0xfb,0x3f,
+0xa2,0xd0,0xfb,0x3f,0x00,0x00,0xff,0x00,0x36,0x41,0x00,0x50,0x74,0xc0,0xa6,0x87,
+0x0e,0xc1,0xfa,0xff,0xb1,0xfb,0xff,0xa2,0xa0,0x95,0x10,0x11,0x20,0x25,0xfc,0xff,
+0xad,0x02,0x10,0x11,0x20,0xe5,0xce,0xff,0x80,0x83,0x11,0xb1,0x61,0xff,0x20,0x28,
+0x20,0x31,0x60,0xff,0xc0,0x20,0x00,0x29,0x0b,0xc0,0x20,0x00,0x88,0x0b,0x37,0x88,
+0xf7,0x7c,0xf8,0xc0,0x20,0x00,0xa8,0x0b,0x00,0x15,0x40,0x00,0x98,0xa1,0x1b,0x44,
+0x1b,0x77,0x00,0x14,0x40,0x00,0x48,0xa1,0x90,0x98,0x30,0x00,0x17,0x40,0x00,0x78,
+0xa1,0x40,0x99,0x20,0xa0,0xa0,0xf5,0x70,0x88,0x30,0xa0,0x99,0x10,0x60,0x88,0x10,
+0x90,0x90,0x74,0x00,0x15,0x40,0x00,0x88,0xa1,0x90,0x88,0x20,0x31,0xe2,0xff,0x00,
+0x88,0x11,0x30,0x88,0x10,0x20,0x88,0x20,0x21,0x49,0xff,0x41,0x49,0xff,0x20,0x88,
+0x20,0x21,0x48,0xff,0xc0,0x20,0x00,0x89,0x0b,0xc0,0x20,0x00,0x38,0x04,0x27,0x83,
+0xf7,0x1d,0xf0,0x00,0x7c,0xc0,0xfb,0x3f,0x34,0xa0,0x41,0x3f,0x2c,0xa0,0x41,0x3f,
+0x30,0xa0,0x41,0x3f,0x78,0xc0,0xfb,0x3f,0xa9,0xc0,0xfb,0x3f,0x36,0x41,0x00,0xc1,
+0xf9,0xff,0x82,0x0c,0x00,0x16,0x38,0x08,0x81,0xf8,0xff,0x0c,0x1a,0xc0,0x20,0x00,
+0x98,0x08,0x0c,0x08,0x90,0x92,0x25,0x46,0x03,0x00,0x00,0x00,0x07,0x69,0x05,0xa0,
+0x88,0x30,0x80,0x80,0x74,0x90,0x91,0x41,0x56,0x09,0xff,0x91,0xf2,0xff,0xbc,0xe8,
+0x81,0xef,0xff,0xc0,0x20,0x00,0x88,0x08,0x47,0xe8,0x0d,0x81,0xeb,0xff,0xc0,0x20,
+0x00,0x88,0x08,0x80,0x82,0x25,0x66,0x78,0x28,0xa1,0xe9,0xff,0xc0,0x20,0x00,0x88,
+0x0a,0xc0,0x20,0x00,0xb8,0x0a,0xc0,0x20,0x00,0xa2,0x2a,0x00,0x80,0x83,0xc5,0xb0,
+0xba,0x41,0xb0,0x88,0x10,0xa0,0xab,0x41,0xa0,0x88,0x10,0x07,0x68,0x03,0x0c,0x28,
+0x89,0x09,0x0c,0x08,0x82,0x4c,0x00,0x81,0xa7,0xff,0x82,0x28,0x00,0xb6,0x48,0x0b,
+0xb2,0x29,0x00,0xa1,0xdd,0xff,0x81,0xa5,0xff,0xe0,0x08,0x00,0x81,0xda,0xff,0x28,
+0x08,0x1d,0xf0,0x00,0xd4,0xcf,0xfb,0x3f,0xcc,0xc0,0xfb,0x3f,0x3c,0xfd,0xff,0x3f,
+0xdf,0xc0,0xfb,0x3f,0x54,0xfd,0xff,0x3f,0x18,0x20,0x40,0x3f,0xff,0xff,0xff,0xdf,
+0x00,0x00,0x00,0x20,0x1c,0x20,0x40,0x3f,0x58,0x20,0x40,0x3f,0x00,0x20,0x40,0x3f,
+0x00,0x00,0x00,0x10,0xff,0xff,0xff,0x00,0x14,0xc1,0xfb,0x3f,0x34,0xcf,0xfb,0x3f,
+0x2e,0xc1,0xfb,0x3f,0x36,0x61,0x00,0x41,0x8f,0xff,0x22,0x24,0x00,0xb6,0x42,0x2b,
+0xb1,0xed,0xff,0xa1,0xed,0xff,0x81,0x8d,0xff,0xe0,0x08,0x00,0x28,0x04,0xb6,0x42,
+0x1a,0x31,0xea,0xff,0xa1,0xeb,0xff,0x28,0x53,0x29,0x01,0xf8,0x43,0xe8,0x33,0xd8,
+0x23,0xc8,0x13,0xb2,0x23,0x00,0x81,0x85,0xff,0xe0,0x08,0x00,0x81,0xe6,0xff,0x21,
+0xe6,0xff,0x32,0x08,0x01,0xdc,0x43,0xc0,0x20,0x00,0x38,0x02,0x81,0xe4,0xff,0x80,
+0x33,0x10,0xc0,0x20,0x00,0x39,0x02,0xc6,0x07,0x00,0x00,0x00,0x00,0xc0,0x20,0x00,
+0x38,0x02,0x91,0xdf,0xff,0x90,0x33,0x20,0xc0,0x20,0x00,0x39,0x02,0x22,0x08,0x01,
+0x31,0xdd,0xff,0x0b,0x22,0xc0,0x20,0x00,0x29,0x03,0x31,0xdb,0xff,0x0c,0x02,0xc0,
+0x20,0x00,0x29,0x03,0x81,0xda,0xff,0x21,0xda,0xff,0xc0,0x20,0x00,0x22,0x68,0x00,
+0xc0,0x20,0x00,0x28,0x08,0x56,0x72,0xff,0xc0,0x20,0x00,0x38,0x03,0xb1,0xd5,0xff,
+0x88,0x04,0xb0,0x33,0x10,0xb6,0x48,0x0b,0xa1,0xd4,0xff,0x30,0xb3,0x20,0x81,0x67,
+0xff,0xe0,0x08,0x00,0x30,0xb0,0xf5,0x32,0xcb,0xee,0x2c,0x78,0x37,0x38,0x09,0x21,
+0xcf,0xff,0xe0,0x33,0x11,0x3a,0x32,0x28,0x03,0x38,0x04,0xb6,0x43,0x0b,0xa1,0xcc,
+0xff,0x20,0xca,0x41,0x81,0x5e,0xff,0xe0,0x08,0x00,0x1d,0xf0,0x4f,0xc1,0xfb,0x3f,
+0x36,0x41,0x00,0x81,0x58,0xff,0x88,0x08,0x16,0x88,0x00,0xa1,0xfc,0xff,0x81,0x57,
+0xff,0xe0,0x08,0x00,0x06,0xff,0xff,0x00,0x00,0xf0,0xff,0x0f,0x20,0xa1,0x07,0x00,
+0x83,0xde,0x1b,0x43,0xc5,0xb3,0xa2,0x91,0x90,0x28,0x01,0x40,0xc0,0xfe,0x00,0x40,
+0x84,0x29,0x01,0x40,0x36,0x41,0x00,0xa2,0xa0,0x00,0x81,0xfb,0xff,0xe0,0x08,0x00,
+0x81,0xfb,0xff,0xe0,0x08,0x00,0x81,0xcf,0xfe,0x0c,0x0a,0xc0,0x20,0x00,0xb8,0x08,
+0x81,0xf2,0xff,0x40,0xbb,0x11,0x80,0xbb,0x10,0x81,0xf0,0xff,0x80,0xbb,0x80,0x81,
+0xf0,0xff,0x80,0xbb,0xa2,0x81,0xc6,0xfe,0xb0,0xb2,0xd5,0x80,0xbb,0x82,0x81,0xed,
+0xff,0xc0,0xbb,0x11,0x80,0xbb,0xa2,0xb0,0xb0,0xf5,0x81,0xed,0xff,0xe0,0x08,0x00,
+0x1d,0xf0,0x00,0x00,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x10,0x80,0x61,
+0x80,0x3e,0x00,0x00,0x5e,0xc1,0xfb,0x3f,0xa4,0x8c,0x01,0x40,0xe4,0x82,0x01,0x40,
+0xdc,0x8c,0x01,0x40,0xa8,0xab,0x01,0x40,0x36,0xa1,0x00,0xc1,0xf6,0xff,0x39,0x51,
+0xc0,0x72,0x10,0x31,0xf5,0xff,0x70,0x62,0xc0,0x6a,0xd4,0x3a,0x3d,0x20,0xf0,0xf5,
+0x30,0xe0,0xf5,0xd9,0x71,0xe9,0x91,0xf2,0x61,0x08,0x81,0xf3,0xff,0xe0,0x08,0x00,
+0xa9,0x41,0x82,0xa0,0x80,0x92,0xa0,0xc0,0xb1,0x04,0xff,0xd8,0x71,0xe8,0x91,0xf8,
+0x81,0x46,0x04,0x00,0xa1,0xea,0xff,0xe0,0x28,0x11,0xaa,0x22,0xc0,0x20,0x00,0xa8,
+0x02,0xb7,0x1a,0x09,0x1b,0x88,0x5d,0x08,0x97,0x98,0xe8,0xc6,0x13,0x00,0x8a,0x9e,
+0xa2,0xa0,0xbf,0x97,0x3a,0x47,0x0c,0x09,0xb1,0xc8,0xfe,0x46,0x03,0x00,0xfa,0xa9,
+0xb0,0xaa,0x20,0xc0,0x20,0x00,0xa9,0x02,0x1b,0x99,0x4b,0x22,0xe7,0x99,0xee,0xa1,
+0xdc,0xff,0xb1,0xd8,0xff,0xaa,0xa8,0x00,0xaa,0x11,0xb0,0xb3,0x10,0x89,0x61,0xd9,
+0x71,0xe9,0x91,0xf9,0x81,0xaa,0x66,0x81,0xd9,0xff,0xe0,0x08,0x00,0xe8,0x91,0x0c,
+0x02,0x3d,0x0e,0x88,0x61,0xd8,0x71,0xf8,0x81,0x46,0x02,0x00,0x00,0x00,0x0c,0x03,
+0x5d,0x03,0x6d,0x03,0x0c,0x12,0x91,0x03,0xff,0x98,0x09,0xb6,0x49,0x0f,0xa1,0xcd,
+0xff,0x69,0x01,0xcd,0x07,0x80,0xb8,0x20,0x81,0x01,0xff,0xe0,0x08,0x00,0xa8,0x41,
+0x81,0xcc,0xff,0xe0,0x08,0x00,0xfc,0x02,0xa8,0x51,0xbd,0x06,0xcd,0x04,0x81,0xc9,
+0xff,0xe0,0x08,0x00,0x81,0xc5,0xff,0xe0,0x08,0x00,0x3a,0x35,0x61,0xc0,0xff,0x71,
+0xd6,0xfe,0xc6,0x02,0x00,0xe0,0x45,0x11,0x6a,0x44,0xc0,0x20,0x00,0x79,0x04,0x1b,
+0x55,0x37,0x35,0xf0,0x81,0xbf,0xff,0xe0,0x08,0x00,0x1d,0xf0,0xb7,0xc1,0xfb,0x3f,
+0xe6,0xc1,0xfb,0x3f,0x17,0xc2,0xfb,0x3f,0x57,0xc2,0xfb,0x3f,0x88,0xc2,0xfb,0x3f,
+0x00,0x00,0xf8,0xbf,0xff,0xff,0x77,0x00,0x00,0x00,0x00,0xc1,0xff,0xff,0xf7,0x00,
+0xb1,0xc2,0xfb,0x3f,0x36,0x81,0x00,0x1c,0x8c,0xbd,0x01,0xad,0x02,0xa5,0xec,0xff,
+0x51,0xe1,0xfe,0x8c,0xea,0x38,0x05,0xbd,0x0a,0x7c,0xf2,0xa1,0xf0,0xff,0xdc,0x63,
+0x06,0x34,0x00,0x00,0x00,0xb2,0x01,0x00,0x62,0xa0,0xe9,0x48,0x05,0x67,0x1b,0x10,
+0x7c,0x82,0x16,0xe4,0x0b,0xa1,0xea,0xff,0x81,0xd9,0xfe,0xe0,0x08,0x00,0x86,0x2c,
+0x00,0xb6,0x34,0x0d,0xd8,0x11,0xc2,0x01,0x01,0xa1,0xe6,0xff,0x81,0xd4,0xfe,0xe0,
+0x08,0x00,0x0c,0x06,0x22,0xc2,0x18,0x4d,0x06,0x86,0x22,0x00,0xc2,0xa0,0x08,0xb2,
+0xc1,0x18,0x20,0xa2,0x20,0x25,0xe7,0xff,0x16,0x4a,0x01,0x28,0x05,0x8c,0x92,0xbd,
+0x0a,0xa1,0xdd,0xff,0x81,0xca,0xfe,0xe0,0x08,0x00,0x7c,0xf2,0x06,0x1d,0x00,0x00,
+0x88,0x05,0xb6,0x38,0x0e,0xd8,0x61,0xc8,0x71,0xa1,0xd8,0xff,0xbd,0x06,0x81,0xc3,
+0xfe,0xe0,0x08,0x00,0xe8,0x61,0x81,0xd6,0xff,0x91,0xd6,0xff,0x8a,0x8e,0x87,0xb9,
+0x0a,0x81,0xd5,0xff,0x91,0xd6,0xff,0x8a,0x8e,0x87,0x39,0x31,0x88,0x05,0xb6,0x38,
+0x0e,0xc8,0x71,0xa1,0xd3,0xff,0x8b,0xd2,0xbd,0x04,0x81,0xb8,0xfe,0xe0,0x08,0x00,
+0xf6,0x24,0x2c,0xf0,0x84,0x11,0x4a,0x88,0xe0,0x88,0x11,0x8a,0x83,0x8b,0x92,0x99,
+0x18,0x98,0x61,0x1b,0x44,0x99,0x28,0x98,0x71,0x40,0x40,0xf4,0x99,0x38,0x88,0x71,
+0x1b,0x66,0x8b,0x88,0x80,0x22,0x80,0x82,0x01,0x01,0x87,0xa6,0x02,0xc6,0xda,0xff,
+0x49,0x03,0x0c,0x02,0x1d,0xf0,0x00,0x00,0xe5,0xc2,0xfb,0x3f,0x0a,0xc3,0xfb,0x3f,
+0x2e,0xc3,0xfb,0x3f,0x36,0x61,0x04,0x61,0xa3,0xfe,0x5d,0x03,0x38,0x06,0xb6,0x43,
+0x0c,0xa1,0xf9,0xff,0xcd,0x05,0xbd,0x02,0x81,0xa1,0xfe,0xe0,0x08,0x00,0x1b,0x32,
+0x2a,0x74,0x40,0x33,0x11,0x5a,0x22,0xc6,0x18,0x00,0x0c,0x15,0x52,0x47,0x00,0x82,
+0xa0,0xff,0x52,0xd3,0xf0,0x46,0x13,0x00,0x00,0xc2,0xa2,0x00,0x10,0xb1,0x20,0x50,
+0xa5,0x20,0x82,0x61,0x80,0x25,0xd9,0xff,0x82,0x21,0x80,0x16,0x6a,0x01,0x38,0x06,
+0x7c,0xf2,0x16,0xe3,0x04,0xbd,0x0a,0xa1,0xe9,0xff,0x81,0x90,0xfe,0xe0,0x08,0x00,
+0x06,0x10,0x00,0x00,0x00,0x92,0xa2,0x00,0xaa,0xb1,0xb2,0x0b,0x00,0x87,0x1b,0x08,
+0x0c,0x05,0x52,0x47,0x00,0x06,0x04,0x00,0x00,0x1b,0xaa,0x97,0x9a,0xe9,0x92,0x07,
+0x00,0x52,0xd5,0x02,0x8c,0x19,0x37,0x95,0xaf,0x1b,0x77,0x32,0xd3,0x10,0x40,0x57,
+0xc0,0x27,0x35,0x95,0x38,0x06,0x0c,0x02,0xb6,0x43,0x08,0xa1,0xd9,0xff,0x81,0x7f,
+0xfe,0xe0,0x08,0x00,0x1d,0xf0,0x00,0x00,0x00,0x00,0x40,0x00,0xb8,0x81,0x01,0x40,
+0x36,0x41,0x00,0xb1,0xfd,0xff,0x0c,0x0a,0x81,0xfd,0xff,0xe0,0x08,0x00,0x1d,0xf0,
+0x1d,0xcf,0xfb,0x3f,0x45,0xc3,0xfb,0x3f,0xbc,0xd0,0xfb,0x3f,0x61,0xc3,0xfb,0x3f,
+0x10,0x80,0x00,0x00,0x88,0x07,0x01,0x40,0xe0,0x07,0x01,0x40,0xf8,0x09,0x01,0x40,
+0xc8,0x78,0x00,0x40,0xb8,0x0a,0x01,0x40,0xb4,0x07,0x01,0x40,0x36,0x41,0x00,0x61,
+0x69,0xfe,0x81,0xf7,0xff,0x58,0x06,0x80,0x81,0xc0,0x10,0x18,0x00,0xb6,0x45,0x0f,
+0xb1,0xf0,0xff,0xa1,0xf0,0xff,0xdd,0x02,0xcd,0x03,0x81,0x64,0xfe,0xe0,0x08,0x00,
+0x81,0xf1,0xff,0xe0,0x08,0x00,0xa1,0xec,0xff,0x0c,0x2b,0x81,0xef,0xff,0xe0,0x08,
+0x00,0x0c,0x05,0xc6,0x11,0x00,0x00,0x00,0x00,0x81,0x0b,0xfe,0xb2,0xc1,0x10,0x80,
+0x73,0x63,0x70,0xc7,0x20,0x20,0xa5,0x80,0xe5,0xc9,0xff,0x16,0x6a,0x01,0x38,0x06,
+0x7c,0xf2,0x16,0x43,0x07,0xbd,0x0a,0xa1,0xad,0xff,0x81,0x54,0xfe,0xe0,0x08,0x00,
+0x86,0x19,0x00,0x00,0x00,0x70,0xd0,0x14,0xcc,0xcd,0xa1,0xdb,0xff,0xcd,0x07,0xb2,
+0xc1,0x10,0x81,0xde,0xff,0xe0,0x08,0x00,0x70,0x33,0xc0,0x70,0x55,0x80,0x56,0x73,
+0xfb,0x56,0x04,0x01,0xa1,0xd5,0xff,0xb2,0xa0,0xd8,0x81,0xd9,0xff,0xe0,0x08,0x00,
+0x86,0x04,0x00,0x00,0x00,0xa1,0xd0,0xff,0xbd,0x04,0x81,0xd6,0xff,0xe0,0x08,0x00,
+0x81,0xd6,0xff,0xe0,0x08,0x00,0x38,0x06,0x0c,0x02,0xb6,0x43,0x1c,0x32,0x04,0x1f,
+0xf2,0x04,0x1e,0xe2,0x04,0x1d,0xd2,0x04,0x02,0xc2,0x04,0x01,0xb2,0x04,0x00,0xa1,
+0xc7,0xff,0x39,0x01,0x81,0x3a,0xfe,0xe0,0x08,0x00,0x1d,0xf0,0x80,0xc3,0xfb,0x3f,
+0x10,0xc0,0xfb,0x3f,0x34,0xc0,0xfb,0x3f,0x9e,0xc3,0xfb,0x3f,0x3c,0xad,0x01,0x40,
+0x36,0x41,0x00,0x41,0x30,0xfe,0x22,0x24,0x00,0xb6,0x32,0x08,0xa1,0xf8,0xff,0x81,
+0x2f,0xfe,0xe0,0x08,0x00,0x21,0x5f,0xfd,0x1c,0x8c,0x0c,0x0b,0xad,0x02,0x81,0xf7,
+0xff,0xe0,0x08,0x00,0x31,0xf3,0xff,0x0c,0x18,0x39,0x22,0x31,0xf2,0xff,0x39,0x32,
+0x31,0x58,0xfd,0x82,0x43,0x00,0x0c,0x03,0x88,0x02,0xcc,0x88,0x1b,0x33,0x8b,0x22,
+0x66,0x33,0xf4,0x86,0x09,0x00,0x88,0x08,0xa8,0x12,0xe0,0x08,0x00,0x16,0xba,0xfe,
+0xc6,0x03,0x00,0x00,0x00,0xbd,0x0a,0xa1,0xe8,0xff,0x81,0x1c,0xfe,0xe0,0x08,0x00,
+0x06,0x01,0x00,0x28,0x04,0x56,0xc2,0xfe,0x7c,0xf2,0x06,0x04,0x00,0x31,0xc1,0xfd,
+0x20,0x63,0x40,0x41,0xd4,0xfd,0x40,0x22,0x20,0x20,0x73,0x40,0x0c,0x02,0x1d,0xf0,
+0x70,0xc0,0xfb,0x3f,0x90,0xaa,0x01,0x40,0x36,0x41,0x00,0x81,0xfe,0xff,0xe0,0x08,
+0x00,0x21,0xfb,0xff,0x81,0xbb,0xfe,0x28,0x02,0x0c,0x03,0x80,0x22,0xa2,0x20,0x22,
+0xd5,0x20,0x2a,0xc2,0x1d,0xf0,0x00,0x00,0xff,0xff,0xff,0xff,0x00,0x00,0x00,0x00,
+0x36,0x41,0x00,0x65,0xfd,0xff,0x81,0xfc,0xff,0x91,0xfb,0xff,0x82,0x62,0x02,0x92,
+0x62,0x03,0x81,0xfa,0xff,0x91,0xf9,0xff,0xa2,0x62,0x00,0xb9,0x12,0x89,0x42,0x99,
+0x52,0x1d,0xf0,0x00,0x36,0x81,0x00,0x21,0x2e,0xfd,0xa2,0xa1,0x03,0x22,0x02,0x00,
+0x9c,0xc2,0x21,0x2c,0xfd,0xa2,0xa1,0x06,0x88,0x22,0x9c,0x28,0x88,0x48,0x8c,0xe8,
+0xad,0x01,0xe5,0xfb,0xff,0x88,0x22,0xa8,0x32,0x88,0x48,0xbd,0x01,0xe0,0x08,0x00,
+0x2d,0x0a,0x1d,0xf0,0x36,0x81,0x00,0xa2,0xa1,0x02,0x16,0xc2,0x02,0x31,0x20,0xfd,
+0xa2,0xa1,0x03,0x32,0x03,0x00,0x16,0x03,0x02,0x31,0x1e,0xfd,0xa2,0xa1,0x06,0x82,
+0x23,0x02,0x9c,0x48,0x88,0x28,0x9c,0x08,0xad,0x01,0x65,0xf8,0xff,0x88,0x23,0xa8,
+0x33,0x88,0x28,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,
+0x36,0x81,0x00,0xad,0x02,0xac,0x72,0x31,0x12,0xfd,0x32,0x03,0x00,0xad,0x03,0x9c,
+0xd3,0x31,0x10,0xfd,0xa8,0x23,0x9c,0x6a,0x88,0x1a,0xad,0x08,0x9c,0x08,0xad,0x01,
+0xe5,0xf4,0xff,0x88,0x23,0xa8,0x33,0x88,0x18,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,
+0x2d,0x0a,0x1d,0xf0,0x36,0x81,0x00,0xa2,0xa1,0x02,0x16,0xc2,0x02,0x31,0x04,0xfd,
+0xa2,0xa1,0x03,0x32,0x03,0x00,0x16,0x03,0x02,0x31,0x02,0xfd,0xa2,0xa1,0x06,0x82,
+0x23,0x02,0x9c,0x48,0x88,0x68,0x9c,0x08,0xad,0x01,0x65,0xf1,0xff,0x88,0x23,0xa8,
+0x33,0x88,0x78,0xcd,0x01,0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,
+0x36,0x81,0x00,0x32,0x22,0x00,0x30,0xa3,0x20,0x16,0x83,0x02,0x31,0xf5,0xfc,0x32,
+0x03,0x00,0xad,0x03,0x9c,0xd3,0x31,0xf3,0xfc,0xa8,0x23,0x9c,0x6a,0x88,0x6a,0xad,
+0x08,0x9c,0x08,0xad,0x01,0xa5,0xed,0xff,0x88,0x23,0xa8,0x33,0x88,0x68,0xcd,0x01,
+0xbd,0x02,0xe0,0x08,0x00,0x2d,0x0a,0x1d,0xf0,0x00,0x00,0x00,0xcc,0xc3,0xfb,0x3f,
+0x74,0xd0,0xfb,0x3f,0x36,0x61,0x00,0x0c,0x16,0x06,0x0c,0x00,0xa5,0xe8,0xff,0x42,
+0x23,0x00,0x72,0x23,0x01,0x40,0x4a,0xc0,0x60,0x56,0x20,0x47,0x3a,0x01,0x0c,0x05,
+0x70,0xbb,0xc0,0x50,0xbb,0xc0,0x58,0x33,0x49,0x43,0xb9,0x53,0x57,0x2b,0x0d,0xb7,
+0x15,0x02,0x46,0x6f,0x00,0x58,0x23,0x57,0x34,0x02,0x46,0x6d,0x00,0x58,0x02,0xc0,
+0x20,0x00,0x48,0x12,0x58,0x05,0xc0,0x20,0x00,0xa8,0x12,0xe0,0x05,0x00,0x5d,0x0a,
+0x56,0x5a,0x1a,0x7c,0xf3,0x40,0x33,0x30,0x30,0x30,0x04,0xe0,0x63,0x11,0x6a,0x62,
+0xc0,0x20,0x00,0xa9,0x26,0xc0,0x20,0x00,0x68,0x12,0xad,0x03,0x1b,0x66,0xc0,0x20,
+0x00,0x69,0x12,0x68,0x02,0x2b,0x33,0x68,0x16,0xd0,0x33,0x11,0x30,0x32,0x80,0xe0,
+0x06,0x00,0x78,0x03,0x38,0x02,0xa2,0x23,0x03,0xe0,0x0a,0x00,0x16,0x5a,0x14,0x82,
+0x17,0x00,0x16,0xf8,0x13,0x6d,0x05,0x9d,0x05,0xc0,0x20,0x00,0x38,0xb2,0xc0,0x20,
+0x00,0xa8,0xc2,0x37,0x3a,0x1d,0xc0,0x20,0x00,0x38,0x92,0xc0,0x20,0x00,0xa8,0xc2,
+0xa0,0x33,0xc0,0x16,0x93,0x11,0xc0,0x20,0x00,0xa8,0xb2,0xdc,0x9a,0x0b,0x33,0x86,
+0x04,0x00,0x00,0x00,0xc0,0x20,0x00,0x38,0xb2,0xc0,0x20,0x00,0xa2,0x22,0x0c,0x32,
+0xc3,0xff,0xa0,0x33,0xc0,0x16,0x73,0x0f,0x60,0xa8,0xc0,0x30,0x3a,0x63,0xb8,0x82,
+0xc0,0x20,0x00,0xa8,0xc2,0xc0,0x20,0x00,0xc8,0xb2,0xc0,0x20,0x00,0xd8,0xc2,0xaa,
+0xab,0xc7,0xbd,0x02,0x46,0x25,0x00,0xc0,0x20,0x00,0xc8,0xc2,0xc0,0x20,0x00,0xd8,
+0x92,0xca,0xc3,0xd7,0xbc,0x02,0x86,0x26,0x00,0xc0,0x20,0x00,0xc8,0xb2,0x56,0xbc,
+0x00,0xc1,0xba,0xff,0xb1,0xbb,0xff,0xa2,0xa0,0xd3,0x65,0x5c,0xff,0xc0,0x20,0x00,
+0xc2,0x22,0x0c,0xc0,0x20,0x00,0xd2,0x22,0x09,0xc0,0xc3,0x80,0xd7,0x9c,0x08,0xc0,
+0x20,0x00,0x99,0xc2,0x06,0x1e,0x00,0x00,0xc0,0x20,0x00,0xa8,0xb2,0x0b,0xaa,0x37,
+0x3a,0xce,0xc0,0x20,0x00,0xa8,0xc2,0xc0,0x20,0x00,0xa9,0xa2,0xc0,0x20,0x00,0x99,
+0xc2,0xc0,0x20,0x00,0xc8,0xb2,0xc0,0x20,0x00,0xa8,0xa2,0xa7,0x9c,0x1d,0xc0,0x20,
+0x00,0x99,0xb2,0xc0,0x20,0x00,0xc8,0xa2,0xc0,0x20,0x00,0xa8,0x92,0xa7,0xbc,0x0b,
+0xc0,0x20,0x00,0xa2,0x22,0x09,0xc0,0x20,0x00,0xa2,0x62,0x0a,0xc0,0x20,0x00,0xa8,
+0xc2,0xaa,0xa3,0xc0,0x20,0x00,0xa9,0xc2,0xad,0x0b,0x86,0x08,0x00,0xc0,0x20,0x00,
+0xb8,0xb2,0xc0,0x20,0x00,0xc2,0x22,0x0c,0xb2,0xcb,0xff,0xc0,0xbb,0xc0,0x37,0xbb,
+0x02,0x06,0xdb,0xff,0xc0,0x20,0x00,0xb8,0xc2,0xba,0xb3,0xc0,0x20,0x00,0xb9,0xc2,
+0x16,0xda,0xf5,0x2b,0xb6,0xcd,0x03,0xba,0xb7,0x82,0x61,0x00,0x99,0x11,0x81,0x15,
+0xfe,0xe0,0x08,0x00,0x88,0x01,0x3a,0x66,0x98,0x11,0x87,0xb6,0x02,0x06,0xb2,0xff,
+0x0c,0x03,0x32,0x57,0x00,0x40,0x40,0x04,0xe0,0x44,0x11,0x4a,0x42,0xc0,0x20,0x00,
+0xa8,0x12,0x28,0x02,0xc0,0x20,0x00,0xb2,0x24,0x02,0x22,0x22,0x02,0xe0,0x02,0x00,
+0x06,0x06,0x00,0x52,0xa1,0x07,0x86,0x04,0x00,0x48,0x23,0x26,0x04,0x02,0x86,0x82,
+0xff,0x48,0x33,0x66,0x04,0x02,0xc6,0x8c,0xff,0xc6,0x7f,0xff,0x2d,0x05,0x1d,0xf0,
+0x36,0x41,0x00,0x52,0x02,0x00,0xa2,0xa1,0x03,0x07,0x65,0x3f,0xc0,0x20,0x00,0x88,
+0x22,0x4b,0x52,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0x88,0x38,
+0x37,0xb8,0x10,0x0c,0x0a,0xc6,0x08,0x00,0x40,0xb4,0x20,0x50,0xa5,0x20,0x65,0xdc,
+0xff,0x56,0x7a,0x01,0xc0,0x20,0x00,0x88,0x22,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,
+0x82,0xc0,0x20,0x00,0x88,0x38,0x87,0x33,0xde,0x86,0xf5,0xff,0x2d,0x0a,0x1d,0xf0,
+0x36,0x41,0x00,0x42,0x02,0x00,0xa2,0xa1,0x03,0x07,0x64,0x38,0xc0,0x20,0x00,0x88,
+0x22,0x4b,0x42,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0x88,0x38,
+0x06,0x03,0x00,0x00,0x30,0xb3,0x20,0x40,0xa4,0x20,0xa5,0xd7,0xff,0x56,0x4a,0x01,
+0xc0,0x20,0x00,0x88,0x22,0x80,0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,
+0xa8,0x38,0x56,0xea,0xfd,0x2d,0x0a,0x1d,0xf0,0x00,0x00,0x00,0xff,0xc3,0xfb,0x3f,
+0xf8,0xce,0xfb,0x3f,0x36,0x41,0x00,0x82,0x02,0x00,0x5d,0x02,0x0c,0x16,0x22,0xc2,
+0x04,0x07,0xe8,0x04,0x0c,0x02,0x86,0x43,0x00,0xc0,0x20,0x00,0x88,0xc5,0xc0,0x20,
+0x00,0x98,0xd5,0x87,0x39,0x09,0xc0,0x20,0x00,0x88,0xd5,0x86,0x01,0x00,0x00,0x00,
+0xc0,0x20,0x00,0x88,0xb5,0xc0,0x20,0x00,0x98,0xc5,0x90,0x88,0xc0,0x16,0xc8,0x08,
+0x28,0x03,0x20,0x88,0x63,0x89,0x03,0xc0,0x20,0x00,0x28,0xc5,0x38,0x95,0x2a,0x23,
+0xc0,0x20,0x00,0x38,0xc5,0xc0,0x20,0x00,0x48,0xd5,0x37,0x34,0x1b,0xc0,0x20,0x00,
+0x38,0xc5,0xc0,0x20,0x00,0x48,0xd5,0x30,0x38,0x80,0x37,0xb4,0x4d,0xc1,0xe3,0xff,
+0xb1,0xe4,0xff,0xa2,0xa0,0xa4,0xa5,0x3b,0xff,0xc0,0x20,0x00,0x32,0x25,0x0c,0xc0,
+0x20,0x00,0x42,0x25,0x0b,0x30,0x38,0x80,0x37,0x34,0xe1,0xc0,0x20,0x00,0x38,0xc5,
+0xc0,0x20,0x00,0x48,0xb5,0x3a,0x38,0x47,0x93,0x20,0xc0,0x20,0x00,0x48,0xb5,0xc0,
+0x20,0x00,0x38,0xa5,0x37,0xb4,0x09,0xc0,0x20,0x00,0x38,0xa5,0xc0,0x20,0x00,0x39,
+0xb5,0x0c,0x03,0xc0,0x20,0x00,0x39,0xc5,0xc6,0x02,0x00,0xc0,0x20,0x00,0x38,0xc5,
+0x3a,0x88,0xc0,0x20,0x00,0x89,0xc5,0x56,0xd2,0x05,0xc6,0xe7,0xff,0x82,0x25,0x01,
+0xa2,0x28,0x03,0xe0,0x0a,0x00,0x16,0xaa,0x00,0xbd,0x04,0xad,0x02,0x65,0xc7,0xff,
+0x46,0xcd,0xff,0x00,0x82,0x24,0x02,0x66,0x08,0x08,0x82,0x24,0x03,0x66,0x08,0x02,
+0x46,0xc9,0xff,0x65,0xaf,0xff,0x82,0x24,0x00,0xc8,0x14,0x80,0x8a,0xc0,0x9d,0x06,
+0x87,0x3a,0x01,0x0c,0x09,0xc0,0xbb,0xc0,0x90,0xbb,0xc0,0x98,0x34,0x89,0x44,0xb9,
+0x54,0x97,0xab,0x02,0x46,0xc0,0xff,0xb7,0x19,0x02,0x86,0xbd,0xff,0x98,0x24,0x97,
+0xb8,0x02,0xc6,0xbc,0xff,0xc6,0xba,0xff,0x1d,0xf0,0x00,0x00,0x36,0x41,0x00,0x52,
+0x02,0x00,0x40,0xb4,0x20,0x07,0xe5,0x04,0x0c,0x02,0x46,0x41,0x00,0xc0,0x20,0x00,
+0x58,0x22,0x50,0x50,0x04,0x2b,0x55,0xd0,0x55,0x11,0x5a,0x52,0x58,0x25,0x52,0xc5,
+0xfc,0x37,0x35,0xe3,0xc0,0x20,0x00,0x58,0x22,0x50,0x50,0x04,0xe0,0x55,0x11,0x5a,
+0x52,0xc0,0x20,0x00,0x98,0x35,0xc0,0x20,0x00,0x88,0x22,0x4b,0x53,0x80,0x80,0x04,
+0x2b,0x88,0xd0,0x88,0x11,0x8a,0x82,0x88,0x28,0x5a,0x99,0x97,0xb8,0x79,0xa2,0xc2,
+0x04,0x25,0xbd,0xff,0x56,0x0a,0xfb,0xc0,0x20,0x00,0x88,0x22,0x50,0x90,0xf4,0x80,
+0x80,0x04,0xe0,0x88,0x11,0x8a,0x82,0xc0,0x20,0x00,0xa8,0x38,0xc0,0x20,0x00,0x88,
+0x22,0xaa,0x99,0x80,0x80,0x04,0x2b,0x88,0xd0,0x88,0x11,0x8a,0x82,0x88,0x28,0x97,
+0x38,0x85,0xc0,0x20,0x00,0x98,0x22,0xc0,0x20,0x00,0x88,0x22,0x90,0x90,0x04,0x80,
+0x80,0x04,0x2b,0x99,0xe0,0x88,0x11,0xd0,0x99,0x11,0x8a,0x82,0x9a,0x92,0xc0,0x20,
+0x00,0x88,0x38,0x98,0x19,0x8a,0x89,0x16,0xd8,0xf5,0xc0,0x20,0x00,0x98,0x22,0x90,
+0x90,0x04,0xe0,0x99,0x11,0x9a,0x22,0xc0,0x20,0x00,0x98,0x32,0x5a,0x59,0xc0,0x20,
+0x00,0x59,0x32,0x86,0x10,0x00,0x00,0x00,0xc0,0x20,0x00,0x98,0x22,0xc0,0x20,0x00,
+0x88,0x22,0x90,0x90,0x04,0x80,0x80,0x04,0x2b,0x99,0xe0,0x88,0x11,0xd0,0x99,0x11,
+0x8a,0x82,0x9a,0x92,0xc0,0x20,0x00,0x88,0x38,0x98,0x19,0x8a,0x89,0xc0,0x20,0x00,
+0x98,0x22,0x90,0x90,0x04,0xe0,0x99,0x11,0x9a,0x22,0xc0,0x20,0x00,0x98,0x32,0x5a,
+0x59,0xc0,0x20,0x00,0x59,0x32,0x16,0xe8,0xef,0x0c,0x02,0x22,0x58,0x01,0x32,0x58,
+0x00,0x4b,0x28,0x1d,0xf0,0x00,0x00,0x00,0x00,0xf0,0xff,0xff,0xff,0x0f,0x00,0x00,
+0x34,0xc4,0xfb,0x3f,0x57,0xc4,0xfb,0x3f,0xe8,0x03,0x00,0x00,0x7b,0xc4,0xfb,0x3f,
+0x88,0x6e,0x01,0x40,0x6c,0x71,0x01,0x40,0x0c,0x71,0x01,0x40,0xdc,0xb7,0x01,0x40,
+0x36,0x61,0x00,0x20,0x40,0xb4,0x8c,0x44,0x41,0xf4,0xff,0x40,0x22,0x10,0x30,0x40,
+0xb4,0x16,0xb4,0x00,0x41,0xf2,0xff,0x40,0x33,0x80,0x41,0xef,0xff,0x40,0x33,0x10,
+0x61,0x65,0xfc,0x48,0x06,0xb6,0x44,0x0c,0xa1,0xee,0xff,0xcd,0x03,0xbd,0x02,0x81,
+0x63,0xfc,0xe0,0x08,0x00,0x25,0x94,0xff,0x51,0xc1,0xfc,0xa9,0x01,0x88,0x15,0xb9,
+0x11,0x3a,0x42,0x47,0xb8,0x02,0x46,0x20,0x00,0x42,0x25,0x03,0x40,0x42,0xe2,0x56,
+0x84,0x07,0x81,0xe7,0xff,0xe0,0x08,0x00,0x56,0xfa,0x06,0x88,0x35,0x98,0x25,0x80,
+0xb3,0xc2,0x80,0x42,0xc2,0x80,0x79,0xc2,0x80,0xa3,0xe2,0x1b,0x8b,0xa0,0x8b,0x83,
+0x70,0xb4,0xe2,0xb0,0xb7,0xc0,0x80,0x5b,0x43,0x4a,0xc5,0xc6,0x04,0x00,0xad,0x04,
+0x89,0x21,0xc9,0x31,0x81,0xdc,0xff,0xe0,0x08,0x00,0x88,0x21,0xc8,0x31,0xfc,0x9a,
+0x1b,0x44,0x40,0xac,0xc0,0xe6,0x1a,0xe5,0x50,0x58,0xc0,0x46,0x04,0x00,0x00,0x00,
+0x70,0xa4,0xc2,0x81,0xd5,0xff,0xe0,0x08,0x00,0xdc,0xea,0x7a,0x44,0x70,0x55,0xc0,
+0x57,0x37,0xec,0x5a,0x44,0x46,0x02,0x00,0x81,0xcf,0xff,0xe0,0x08,0x00,0xcc,0x9a,
+0x0b,0x55,0x50,0xa4,0xc0,0xe6,0x15,0xef,0x06,0x12,0x00,0x38,0x06,0x7c,0xf2,0x16,
+0xd3,0x04,0xa1,0xc4,0xff,0x0c,0x1b,0x81,0x39,0xfc,0xe0,0x08,0x00,0xc6,0x0f,0x00,
+0x58,0x01,0x0c,0x16,0x50,0xa4,0xc0,0xa7,0x34,0x01,0x0c,0x06,0x48,0x11,0xc1,0xbe,
+0xff,0x40,0xbb,0xc0,0xd1,0x2a,0xfe,0x60,0xbb,0xc0,0x81,0xc0,0xff,0xe0,0x08,0x00,
+0xed,0x0a,0xa1,0xba,0xff,0xfd,0x0b,0xcd,0x02,0xbd,0x03,0x81,0x2c,0xfc,0xe0,0x08,
+0x00,0x46,0x02,0x00,0x25,0x86,0xff,0x68,0x06,0x4d,0x0a,0xf6,0x46,0xc1,0x0c,0x02,
+0x1d,0xf0,0x00,0x00,0xa6,0xc4,0xfb,0x3f,0xcb,0xc3,0xfb,0x3f,0xb1,0xc4,0xfb,0x3f,
+0xe0,0x77,0x01,0x40,0xcc,0x71,0x01,0x40,0x36,0x61,0x00,0xdc,0x95,0xe5,0x15,0xff,
+0x72,0xa0,0x01,0x62,0xa0,0x00,0xa0,0x67,0x93,0xe5,0x82,0xff,0x60,0x55,0x10,0xa9,
+0x01,0x6d,0x0b,0xcc,0xf5,0xc6,0x07,0x00,0x25,0x14,0xff,0x7c,0xf7,0x56,0xca,0xfd,
+0x46,0x16,0x00,0x00,0x00,0x00,0xcd,0x04,0x30,0xb3,0x20,0x20,0xa2,0x20,0x81,0xf0,
+0xff,0xe0,0x08,0x00,0xc6,0x03,0x00,0x00,0x40,0xc4,0x20,0x30,0xb3,0x20,0x20,0xa2,
+0x20,0x81,0xec,0xff,0xe0,0x08,0x00,0x7d,0x0a,0xe5,0x7e,0xff,0x31,0x0a,0xfc,0x38,
+0x03,0xb6,0x43,0x28,0x31,0xe4,0xff,0xcc,0x15,0x31,0xe3,0xff,0x58,0x01,0x0c,0x1f,
+0x50,0xea,0xc0,0xe7,0x3a,0x01,0x0c,0x0f,0x60,0x6b,0xc0,0xa1,0xe0,0xff,0xf0,0xf6,
+0xc0,0xdd,0x04,0xcd,0x02,0xbd,0x03,0x81,0x01,0xfc,0xe0,0x08,0x00,0x2d,0x07,0x1d,
+0xf0,0x00,0x00,0x00,0xe0,0xc4,0xfb,0x3f,0xac,0xd1,0xfb,0x3f,0x0e,0xc5,0xfb,0x3f,
+0x48,0xc5,0xfb,0x3f,0x94,0xd1,0xfb,0x3f,0xf8,0xaa,0x00,0x00,0x71,0xc5,0xfb,0x3f,
+0x9c,0xc5,0xfb,0x3f,0xc3,0xc5,0xfb,0x3f,0xf4,0xaa,0x00,0x00,0xf0,0xaa,0x00,0x00,
+0xfa,0xc5,0xfb,0x3f,0xff,0x7f,0x00,0x00,0x2c,0xc6,0xfb,0x3f,0x4d,0xc6,0xfb,0x3f,
+0x71,0xc6,0xfb,0x3f,0x96,0xc6,0xfb,0x3f,0xbf,0xc6,0xfb,0x3f,0xe6,0xc6,0xfb,0x3f,
+0x08,0xc7,0xfb,0x3f,0x14,0xab,0x00,0x00,0x24,0xab,0x00,0x00,0x18,0xab,0x00,0x00,
+0x10,0xab,0x00,0x00,0x1c,0xab,0x00,0x00,0x20,0xab,0x00,0x00,0x00,0xab,0x00,0x00,
+0x30,0xab,0x00,0x00,0x34,0xab,0x00,0x00,0x04,0xab,0x00,0x00,0x28,0xab,0x00,0x00,
+0x08,0xab,0x00,0x00,0x40,0xab,0x00,0x00,0x00,0x30,0x00,0x40,0x36,0x41,0x00,0x41,
+0xd9,0xfb,0x81,0xfc,0xff,0x38,0x04,0x80,0x81,0xc0,0x10,0x18,0x00,0xb6,0x43,0x0f,
+0xd8,0x62,0xc2,0x22,0x00,0xb8,0x12,0xa1,0xd7,0xff,0x81,0xd4,0xfb,0xe0,0x08,0x00,
+0x38,0x62,0x51,0xd5,0xff,0x30,0x30,0x04,0x39,0x05,0x65,0x67,0xff,0x3d,0x0a,0x56,
+0xda,0x34,0x58,0x04,0xb6,0x35,0x0c,0xc8,0x22,0xb8,0x32,0xa1,0xd0,0xff,0x81,0xcb,
+0xfb,0xe0,0x08,0x00,0xb8,0x32,0xa8,0x22,0xe5,0xbe,0xfe,0x48,0x04,0xb6,0x34,0x0b,
+0xb2,0x22,0x04,0xa1,0xcb,0xff,0x81,0xc5,0xfb,0xe0,0x08,0x00,0x41,0xca,0xff,0x58,
+0x02,0x81,0x4f,0xfd,0x59,0x04,0x58,0x42,0x62,0xc1,0x10,0x59,0x14,0x58,0x12,0x69,
+0x44,0x59,0x24,0x8a,0x51,0x59,0x34,0x69,0x54,0x91,0xd2,0xff,0x0c,0x04,0x49,0x05,
+0x51,0xc2,0xff,0x1a,0x99,0x49,0x09,0x5a,0x86,0x4d,0x06,0xa1,0xcf,0xff,0x86,0xb1,
+0x00,0x91,0xcc,0xff,0xa1,0xcd,0xff,0x1a,0x99,0x98,0x09,0x1a,0xaa,0xa2,0x2a,0x00,
+0x90,0xbc,0xc0,0xb2,0x6a,0x00,0xb6,0x55,0x0a,0xa1,0xb8,0xff,0xdd,0x09,0x81,0xaf,
+0xfb,0xe0,0x08,0x00,0x25,0x67,0xff,0xa0,0x5a,0x20,0xa1,0xb3,0xff,0xb0,0x7b,0x20,
+0xaa,0xa4,0xe5,0x78,0xff,0x81,0xc1,0xff,0x1a,0x88,0xa9,0x08,0xcc,0xca,0x91,0xa5,
+0xfb,0xa1,0xaf,0xff,0x28,0x09,0x56,0xe2,0x25,0x46,0x98,0x00,0xa5,0x64,0xff,0x91,
+0xa1,0xfb,0x82,0x29,0x00,0xb6,0x58,0x28,0x50,0xea,0xc0,0xf2,0xa0,0x01,0xe7,0x3a,
+0x02,0xf2,0xa0,0x00,0x51,0xa5,0xff,0xa1,0xb5,0xff,0x5a,0x54,0x1a,0xaa,0x70,0x7b,
+0xc0,0xc8,0x0a,0xb8,0x05,0xa1,0xa3,0xff,0xf0,0xf7,0xc0,0x81,0x98,0xfb,0xe0,0x08,
+0x00,0x51,0x9d,0xff,0x91,0xae,0xff,0x5a,0x54,0x81,0xad,0xff,0x58,0x05,0x1a,0x99,
+0x1a,0x88,0xa8,0x09,0x91,0xac,0xff,0x59,0x08,0x51,0x9b,0xff,0x81,0xab,0xff,0x1a,
+0x99,0xa9,0x09,0x1a,0x88,0x5a,0x94,0x0c,0x17,0x99,0x08,0x46,0x61,0x00,0x00,0x00,
+0xa1,0xa4,0xff,0x91,0xa6,0xff,0x1a,0xaa,0x58,0x0a,0xa1,0xa3,0xff,0x9a,0x81,0x1a,
+0xaa,0xa8,0x0a,0x91,0x35,0xfb,0x59,0x0a,0xa1,0x8b,0xff,0x7d,0x03,0x58,0x4a,0x9a,
+0x55,0x98,0x5a,0x90,0x55,0xc0,0x59,0x08,0x81,0x9a,0xff,0x58,0x2a,0x1a,0x88,0x88,
+0x08,0x57,0xb8,0x01,0x0c,0x27,0x25,0x5b,0xff,0x91,0x99,0xff,0x51,0x82,0xff,0x1a,
+0x99,0xa9,0x09,0xa1,0x98,0xff,0x91,0x93,0xff,0x1a,0xaa,0xb9,0x0a,0x79,0x01,0x81,
+0x83,0xff,0x1a,0x99,0xc1,0x81,0xff,0xd8,0x45,0xe8,0x55,0xb8,0x09,0xa8,0x35,0xca,
+0xc4,0x8a,0xf4,0x81,0x95,0xff,0xe0,0x08,0x00,0x7d,0x0a,0xe5,0x57,0xff,0xd1,0x6d,
+0xfb,0xc8,0x0d,0xb6,0x5c,0x45,0x81,0x8a,0xff,0x0c,0x1f,0x1a,0x88,0x88,0x08,0x80,
+0xea,0xc0,0xe7,0x3a,0x02,0xf2,0xa0,0x00,0xa1,0x87,0xff,0x81,0x84,0xff,0x1a,0xaa,
+0xa8,0x0a,0x8a,0xc1,0xa0,0x9b,0xc0,0x81,0x84,0xff,0xf0,0xf9,0xc0,0x91,0x83,0xff,
+0x8a,0xa1,0xb8,0x0a,0xc8,0x0c,0x10,0x99,0x80,0xa1,0x6d,0xff,0xd2,0x69,0x00,0x81,
+0x5f,0xfb,0xe0,0x08,0x00,0x81,0x7d,0xff,0x1a,0x88,0xd8,0x08,0x81,0x67,0xff,0x98,
+0x25,0x8a,0x86,0x88,0x08,0x80,0x99,0xc0,0x99,0x25,0x91,0x71,0xff,0x1a,0x99,0x98,
+0x09,0x80,0xa9,0xc0,0x91,0x6f,0xff,0x1a,0x99,0xa9,0x09,0xa1,0x6e,0xff,0x1a,0xaa,
+0xa8,0x0a,0x8a,0x9a,0xa1,0x6c,0xff,0x88,0x55,0x1a,0xaa,0x99,0x0a,0x91,0x5b,0xff,
+0x9a,0x96,0x98,0x09,0x9a,0x88,0x98,0x45,0x89,0x55,0x90,0x58,0xc0,0x82,0xc7,0xff,
+0x80,0x87,0x20,0x80,0x8f,0x05,0xcc,0xa8,0xa2,0xd5,0x80,0xb2,0xa0,0x01,0xa0,0x8b,
+0x83,0x16,0xf8,0x06,0x81,0x4c,0xff,0xc8,0x18,0xc0,0xb5,0x63,0x16,0x0b,0x05,0xc7,
+0xb5,0x15,0x81,0x50,0xff,0xb7,0x38,0x0f,0x28,0x0d,0xbc,0xb2,0xa1,0x4f,0xff,0x81,
+0x3f,0xfb,0xe0,0x08,0x00,0x06,0x0c,0x00,0x81,0x40,0xff,0xa2,0xa0,0x01,0xd2,0x28,
+0x00,0x82,0xa0,0x00,0xd0,0x8a,0x93,0xdd,0x08,0x81,0x3e,0xff,0xcd,0x0b,0xa8,0x08,
+0xbd,0x09,0x65,0xc5,0xff,0x9c,0x7a,0x21,0x33,0xfb,0x28,0x02,0x8c,0x92,0xbd,0x0a,
+0xa1,0x43,0xff,0x81,0x32,0xfb,0xe0,0x08,0x00,0x7c,0xd3,0x46,0x34,0x00,0x00,0x00,
+0x81,0x35,0xff,0x98,0x08,0x5a,0x99,0x99,0x08,0x98,0x18,0x50,0x59,0xc0,0x59,0x18,
+0x58,0x48,0x59,0x58,0x51,0x43,0xff,0x1a,0x55,0x58,0x05,0x8c,0xe5,0x81,0x2d,0xff,
+0x58,0x18,0x8c,0x75,0x70,0x5f,0x31,0x70,0x55,0xc0,0x96,0x25,0xe6,0x51,0x21,0xfb,
+0xd6,0xd7,0x00,0x28,0x05,0x7c,0xd3,0xbd,0x07,0xa1,0x31,0xff,0xdc,0x42,0x86,0x23,
+0x00,0x81,0x24,0xff,0xb8,0x18,0xdc,0x37,0xac,0x8b,0x28,0x05,0x7c,0xd3,0x16,0xe2,
+0x07,0xa1,0x2c,0xff,0x81,0x1a,0xfb,0xe0,0x08,0x00,0x86,0x1c,0x00,0xdc,0x3b,0x28,
+0x05,0x7c,0xd3,0x16,0x92,0x06,0x91,0x2e,0xff,0xa1,0x27,0xff,0x1a,0x99,0xb8,0x09,
+0x06,0xf8,0xff,0x00,0x81,0x2a,0xff,0x1a,0x88,0xa8,0x08,0xa5,0x4e,0xff,0x9c,0x3a,
+0x28,0x05,0x16,0x82,0x00,0xa1,0x21,0xff,0x81,0x0d,0xfb,0xe0,0x08,0x00,0x7c,0xf3,
+0x06,0x0f,0x00,0x00,0x00,0x91,0x2a,0xff,0xa1,0x1f,0xff,0x9a,0x51,0x1a,0xaa,0xa8,
+0x0a,0x58,0x05,0x5a,0x8a,0xa1,0x1b,0xff,0x91,0x1b,0xff,0x1a,0xaa,0x89,0x0a,0x1a,
+0x99,0x81,0x00,0xfb,0xc8,0x12,0x98,0x09,0x58,0x08,0xc7,0xb9,0x02,0x06,0x48,0xff,
+0xb6,0x45,0x0c,0xc8,0x02,0xb8,0x42,0xa1,0x12,0xff,0x81,0xfc,0xfa,0xe0,0x08,0x00,
+0x2d,0x03,0x1d,0xf0,0x18,0x80,0x00,0x00,0x1c,0x80,0x00,0x00,0x14,0x80,0x00,0x00,
+0x20,0x80,0x00,0x00,0x24,0x80,0x00,0x00,0x28,0x80,0x00,0x00,0x30,0x80,0x00,0x00,
+0x36,0x41,0x00,0x41,0xf0,0xfa,0x81,0xfd,0xff,0x38,0x04,0x80,0x81,0xc0,0x10,0x18,
+0x00,0xb6,0x43,0x0f,0xd8,0x62,0xc8,0x02,0xb2,0x22,0x01,0xa1,0xee,0xfe,0x81,0xeb,
+0xfa,0xe0,0x08,0x00,0x38,0x62,0x51,0xec,0xfe,0x30,0x30,0x04,0x39,0x05,0x25,0x2d,
+0xff,0x3d,0x0a,0x56,0x7a,0x22,0x58,0x04,0xb6,0x35,0x0e,0xc2,0x22,0x02,0xb2,0x22,
+0x03,0xa1,0xe6,0xfe,0x81,0xe2,0xfa,0xe0,0x08,0x00,0xb2,0x22,0x03,0xa2,0x22,0x02,
+0x65,0x84,0xfe,0x51,0xe4,0xfe,0x62,0x22,0x00,0x0c,0x08,0x69,0x05,0x68,0x42,0x91,
+0xe1,0xff,0x69,0x15,0x61,0x67,0xfc,0xb1,0xe0,0xff,0x1a,0x66,0x89,0x06,0x61,0x86,
+0xfa,0x1a,0x99,0x6a,0xa1,0x1a,0xbb,0x19,0x45,0x19,0x55,0xa9,0x09,0xa9,0x0b,0x86,
+0x6e,0x00,0x00,0x00,0x00,0xd1,0x5e,0xfc,0xf1,0xd7,0xff,0x1a,0xdd,0xd8,0x0d,0x1a,
+0xff,0xf8,0x0f,0xd0,0xbc,0xc0,0xb2,0x6f,0x00,0xb6,0x56,0x08,0xa1,0xd4,0xfe,0x81,
+0xcb,0xfa,0xe0,0x08,0x00,0x25,0x2e,0xff,0x81,0xd0,0xff,0xa0,0x6a,0x20,0x10,0x88,
+0x80,0xa8,0x08,0x7d,0x0b,0xa5,0x3f,0xff,0x91,0xcd,0xff,0x1a,0x99,0xa9,0x09,0xcc,
+0x9a,0x28,0x04,0xa1,0xcb,0xfe,0x56,0x62,0x14,0x46,0x52,0x00,0xa5,0x2b,0xff,0x82,
+0x24,0x00,0xb6,0x58,0x2a,0x60,0xea,0xc0,0xf2,0xa0,0x01,0xe7,0x3a,0x02,0xf2,0xa0,
+0x00,0xa1,0xc2,0xff,0x61,0x69,0xfa,0x1a,0xaa,0x6a,0x61,0x70,0x7b,0xc0,0xc2,0x2a,
+0x00,0xb2,0x26,0x00,0xa1,0xc0,0xfe,0xf0,0xf7,0xc0,0x81,0xb4,0xfa,0xe0,0x08,0x00,
+0x61,0x62,0xfa,0xb1,0xba,0xff,0x6a,0x61,0x1a,0xbb,0x88,0x06,0x98,0x0b,0xe1,0xb5,
+0xfe,0x06,0x37,0x00,0x00,0xa8,0x5e,0x68,0x4e,0xb1,0x5b,0xfa,0x60,0x6a,0xc0,0x8a,
+0xc6,0x7d,0x08,0xc7,0xbb,0x02,0x60,0x7b,0xc0,0xd1,0xb1,0xff,0xf1,0xb2,0xff,0x1a,
+0xdd,0x89,0x0d,0xd1,0xb1,0xff,0x1a,0xff,0x99,0x0f,0x1a,0xdd,0xbd,0x09,0xcd,0x07,
+0xe9,0x0d,0x81,0x70,0xfb,0xe0,0x08,0x00,0xf1,0xaa,0xff,0xa1,0xaa,0xff,0x1a,0xff,
+0x1a,0xaa,0x98,0x0a,0x88,0x0f,0xa8,0x55,0x7a,0x66,0x70,0x88,0xc0,0x7a,0x99,0x7a,
+0x7a,0x79,0x55,0x78,0x15,0x0c,0x1a,0x60,0x77,0xc0,0x0c,0x0b,0x70,0xba,0x83,0xb0,
+0x70,0x74,0xb1,0xa1,0xff,0x1a,0xbb,0xe8,0x0b,0xcc,0x77,0xb2,0xd6,0x80,0xb0,0x7a,
+0x83,0x16,0xc7,0x06,0xf1,0x95,0xfe,0x0c,0x07,0xd8,0x0f,0x0c,0x1a,0xf1,0x98,0xff,
+0xd0,0xa7,0x83,0x71,0x94,0xfe,0x1a,0xff,0xb8,0x47,0xdd,0x0a,0xa8,0x07,0x89,0x0f,
+0xf1,0x95,0xff,0xcd,0x06,0x1a,0xff,0x99,0x0f,0xf1,0x93,0xff,0x1a,0xff,0xe2,0x6f,
+0x00,0x65,0x99,0xff,0xb1,0x8f,0xff,0xd1,0x8f,0xff,0xf1,0x8f,0xff,0x1a,0xbb,0x1a,
+0xdd,0x1a,0xff,0x88,0x0b,0x98,0x0d,0xe8,0x0f,0x9c,0x3a,0x78,0x04,0x7c,0xf6,0xac,
+0x87,0xbd,0x0a,0xa1,0x8e,0xfe,0x81,0x7d,0xfa,0xe0,0x08,0x00,0xc6,0x06,0x00,0x00,
+0xa8,0x07,0x6a,0xaa,0xa9,0x07,0xa8,0x17,0x60,0x6a,0xc0,0x69,0x17,0x68,0x47,0x69,
+0x57,0x8c,0x48,0x62,0x2e,0x01,0x56,0xb6,0xf1,0x6d,0x03,0x81,0x7c,0xff,0x1a,0x88,
+0xa8,0x08,0x25,0x27,0xff,0x9c,0x2a,0x22,0x24,0x00,0x16,0x82,0x00,0xa1,0x83,0xfe,
+0x81,0x6f,0xfa,0xe0,0x08,0x00,0x7c,0xf3,0x86,0x10,0x00,0xdc,0x96,0x61,0x1a,0xfa,
+0x91,0xf8,0xfb,0x6a,0x61,0x1a,0x99,0x98,0x09,0x68,0x06,0x6a,0xa9,0x91,0xf4,0xfb,
+0x1a,0x99,0xa9,0x09,0x46,0x01,0x00,0x00,0x7c,0xd3,0x06,0x08,0x00,0xa1,0xf0,0xfb,
+0xc8,0x12,0x1a,0xaa,0xa8,0x0a,0x68,0x04,0xc7,0xba,0x02,0x86,0x8d,0xff,0xb6,0x46,
+0x0c,0xc8,0x02,0xb8,0x42,0xa1,0x72,0xfe,0x81,0x5d,0xfa,0xe0,0x08,0x00,0x2d,0x03,
+0x1d,0xf0,0x00,0x00,0xbc,0xd0,0xfb,0x3f,0x2d,0xf0,0x00,0x00,0x00,0x00,0x00,0x04,
+0xd4,0xe1,0xfb,0x3f,0x30,0x80,0x02,0x40,0x74,0xc0,0xfb,0x3f,0x27,0xc7,0xfb,0x3f,
+0x40,0x00,0x80,0x61,0x44,0x00,0x80,0x61,0xf0,0x00,0x80,0x61,0xf4,0x00,0x80,0x61,
+0x40,0xc7,0xfb,0x3f,0xbc,0xd0,0xfb,0x3f,0x00,0xc0,0xfb,0x3f,0xa2,0xc7,0xfb,0x3f,
+0xbb,0xc7,0xfb,0x3f,0x44,0xd0,0xfb,0x3f,0xd3,0xc7,0xfb,0x3f,0x31,0xd0,0xfb,0x3f,
+0xe6,0xc7,0xfb,0x3f,0x38,0x40,0x40,0x3f,0x03,0xc8,0xfb,0x3f,0xe8,0xcf,0xfb,0x3f,
+0x26,0xc8,0xfb,0x3f,0x3c,0x30,0x40,0x3f,0x32,0xc8,0xfb,0x3f,0x4f,0xc8,0xfb,0x3f,
+0x3c,0xfd,0xff,0x3f,0x72,0xc8,0xfb,0x3f,0xc8,0xce,0xfb,0x3f,0x97,0xc8,0xfb,0x3f,
+0xfe,0x3f,0x00,0x00,0xbe,0xc8,0xfb,0x3f,0xe0,0xc8,0xfb,0x3f,0x12,0xc9,0xfb,0x3f,
+0x3c,0xc9,0xfb,0x3f,0x7f,0xc9,0xfb,0x3f,0xa3,0xc9,0xfb,0x3f,0xcb,0xc9,0xfb,0x3f,
+0x0c,0xca,0xfb,0x3f,0x38,0xca,0xfb,0x3f,0x6b,0xca,0xfb,0x3f,0x98,0xca,0xfb,0x3f,
+0xf8,0xcf,0xfb,0x3f,0xb6,0xca,0xfb,0x3f,0xcd,0xca,0xfb,0x3f,0xaa,0x50,0x00,0x00,
+0x02,0xcb,0xfb,0x3f,0x31,0xcb,0xfb,0x3f,0x84,0xcb,0xfb,0x3f,0xc1,0xcb,0xfb,0x3f,
+0x0b,0xd0,0xfb,0x3f,0xf1,0xcb,0xfb,0x3f,0x1b,0xcc,0xfb,0x3f,0x54,0xcc,0xfb,0x3f,
+0x7a,0xcc,0xfb,0x3f,0xa4,0xcc,0xfb,0x3f,0xc7,0xcc,0xfb,0x3f,0x1d,0xd0,0xfb,0x3f,
+0x0e,0xcd,0xfb,0x3f,0x3b,0xcd,0xfb,0x3f,0xbc,0x80,0x40,0x3f,0x18,0x00,0x4c,0x3f,
+0xc0,0xce,0xfb,0x3f,0x74,0x80,0x40,0x3f,0xff,0x00,0xfc,0xff,0xff,0xff,0xe7,0xff,
+0xff,0x3f,0xc0,0xff,0x00,0xc0,0x3f,0x00,0xff,0xff,0x01,0xfe,0x00,0x00,0x58,0x01,
+0x78,0x80,0x40,0x3f,0xff,0xff,0x7f,0x80,0xff,0x8f,0xff,0xff,0x00,0xff,0x03,0x00,
+0xff,0xbf,0xfd,0xff,0x25,0x26,0x25,0x26,0x61,0xcd,0xfb,0x3f,0x69,0xcd,0xfb,0x3f,
+0x96,0xcd,0xfb,0x3f,0xa3,0xcd,0xfb,0x3f,0x6c,0xc0,0xfb,0x3f,0x00,0x80,0x40,0x3f,
+0xc8,0xcd,0xfb,0x3f,0x66,0x08,0x00,0x00,0xe9,0xcd,0xfb,0x3f,0x4b,0x4c,0x4b,0x4c,
+0xff,0xff,0x1f,0xe0,0xff,0xff,0xff,0x1f,0x00,0x00,0x18,0x00,0x00,0x00,0x08,0x00,
+0xc0,0x84,0x40,0x3f,0xc4,0x84,0x40,0x3f,0x60,0x80,0x40,0x3f,0xff,0xff,0xf1,0xff,
+0x00,0x00,0x06,0x00,0xff,0x1f,0xff,0xff,0x00,0x60,0x00,0x00,0xff,0xe3,0xff,0xff,
+0x00,0x0c,0x00,0x00,0x1c,0x80,0x40,0x3f,0x3f,0xc0,0xff,0xff,0x00,0x00,0x10,0x00,
+0xff,0xff,0xff,0x3f,0x00,0x00,0x00,0xc0,0xff,0xff,0xff,0xfb,0x04,0xce,0xfb,0x3f,
+0xb0,0xfe,0x00,0x40,0xd0,0xfe,0x00,0x40,0xa0,0xe4,0x00,0x40,0x6c,0x8d,0x01,0x40,
+0x3c,0x80,0x01,0x40,0x20,0x84,0x01,0x40,0xd8,0x8d,0x01,0x40,0x04,0x70,0x01,0x40,
+0x00,0x75,0x01,0x40,0x6c,0x2b,0x01,0x40,0x6c,0x2b,0x01,0x40,0xe0,0xfe,0x00,0x40,
+0x88,0xd8,0x00,0x40,0x36,0xa1,0x01,0x72,0x61,0x1d,0x7d,0x02,0x21,0x86,0xff,0x32,
+0x61,0x19,0x42,0x61,0x1a,0x52,0x61,0x1b,0x62,0x61,0x1c,0x5d,0x02,0x41,0x84,0xff,
+0x0c,0x03,0x06,0x01,0x00,0x00,0x39,0x02,0x4b,0x22,0x47,0x32,0xf8,0xa1,0x81,0xff,
+0x0c,0x03,0x81,0xe7,0xff,0xe0,0x08,0x00,0x0c,0x0a,0x81,0xe6,0xff,0xe0,0x08,0x00,
+0x21,0x0f,0xf9,0x61,0x7d,0xff,0x39,0x02,0x31,0xcf,0xf9,0x0c,0x52,0x29,0x03,0x0c,
+0x32,0x22,0x66,0x00,0x21,0xbb,0xfb,0xa1,0x79,0xff,0xb2,0x22,0x00,0x21,0x78,0xfa,
+0x20,0xbb,0xa2,0xb0,0xb2,0xd5,0x81,0xc9,0xf9,0xe0,0x08,0x00,0x21,0x75,0xff,0xc0,
+0x20,0x00,0xb8,0x02,0x21,0x74,0xff,0xc0,0x20,0x00,0xc8,0x02,0x21,0x73,0xff,0xc0,
+0x20,0x00,0xd8,0x02,0x21,0x72,0xff,0xc0,0x20,0x00,0xe8,0x02,0x28,0x03,0xb6,0x42,
+0x52,0xa1,0x6f,0xff,0x81,0xbe,0xf9,0xe0,0x08,0x00,0x28,0x03,0xb6,0x42,0x44,0xc1,
+0x6d,0xff,0xb1,0x6d,0xff,0xa1,0x6d,0xff,0x81,0xb9,0xf9,0xe0,0x08,0x00,0x28,0x03,
+0xb6,0x42,0x30,0xa1,0x6b,0xff,0xcd,0x04,0x50,0xb5,0x20,0x81,0xb4,0xf9,0xe0,0x08,
+0x00,0x28,0x03,0xb6,0x42,0x1d,0x0c,0xb2,0xc1,0x8c,0xfd,0x77,0x32,0x0a,0x21,0x65,
+0xff,0xe0,0x47,0x11,0x4a,0x22,0xc2,0x22,0x00,0xa1,0x63,0xff,0xbd,0x07,0x81,0xab,
+0xf9,0xe0,0x08,0x00,0x22,0xc1,0x60,0x82,0xa0,0xb0,0x22,0x61,0x11,0x8a,0x21,0x22,
+0x61,0x10,0x0c,0x42,0x22,0x61,0x12,0x0c,0xb2,0x77,0xa2,0x02,0x86,0x7b,0x03,0x28,
+0x03,0x42,0x21,0x19,0x52,0x21,0x1a,0x62,0x21,0x1b,0xb6,0x42,0x0f,0xb1,0x57,0xff,
+0xa1,0x58,0xff,0xdd,0x05,0xcd,0x04,0x81,0x9d,0xf9,0xe0,0x08,0x00,0x81,0xae,0xff,
+0xe0,0x08,0x00,0x81,0x54,0xff,0x2d,0x0a,0xc0,0x20,0x00,0x88,0x08,0xcc,0xba,0x1c,
+0xc9,0x90,0x88,0x10,0x82,0xc8,0xf8,0x0c,0x19,0x80,0x29,0x83,0x81,0x41,0xff,0xc0,
+0x20,0x00,0x92,0x28,0x00,0x81,0x3f,0xff,0xc0,0x20,0x00,0x82,0x28,0x00,0x07,0x69,
+0x02,0x27,0x68,0x6b,0x88,0x03,0xb6,0x38,0x08,0xa1,0x47,0xff,0x81,0x8c,0xf9,0xe0,
+0x08,0x00,0x82,0x23,0x00,0xb6,0x48,0x0b,0xb1,0x45,0xff,0xa1,0x45,0xff,0x81,0x87,
+0xf9,0xe0,0x08,0x00,0x0c,0x0d,0xd0,0xcd,0x20,0xd0,0xbd,0x20,0x0c,0x1a,0x81,0x97,
+0xff,0xe0,0x08,0x00,0x81,0x4d,0xfa,0xe0,0x08,0x00,0xb2,0xa0,0x00,0xb0,0xab,0x20,
+0x0c,0x1c,0x81,0x93,0xff,0xe0,0x08,0x00,0x81,0x93,0xff,0xe0,0x08,0x00,0x81,0x92,
+0xff,0xe0,0x08,0x00,0x91,0x28,0xff,0x7c,0xba,0xc0,0x20,0x00,0x82,0x29,0x00,0xa0,
+0x88,0x10,0xc0,0x20,0x00,0x89,0x09,0xa2,0xa0,0x00,0x81,0x41,0xfa,0xe0,0x08,0x00,
+0x81,0x31,0xff,0xc0,0x20,0x00,0x88,0x08,0x27,0xe8,0x1a,0x82,0x23,0x00,0xb6,0x38,
+0x08,0xa1,0x2d,0xff,0x81,0x6e,0xf9,0xe0,0x08,0x00,0xb2,0xa0,0x00,0x20,0xa2,0x20,
+0x81,0x83,0xff,0xe0,0x08,0x00,0xe5,0x75,0xfe,0x56,0xca,0x01,0x28,0x03,0x8c,0x72,
+0xa1,0x27,0xff,0x81,0x66,0xf9,0xe0,0x08,0x00,0x22,0xc7,0xfc,0x0c,0x1a,0x0c,0x07,
+0x20,0xa7,0x83,0xa0,0x20,0x60,0xc6,0x39,0x03,0x66,0x47,0x03,0x06,0xb4,0x00,0x00,
+0x21,0x20,0xff,0xbd,0x0a,0xf1,0x24,0xfa,0xd1,0xe6,0xf8,0xc1,0x0c,0xf9,0xa8,0x02,
+0xe2,0xa1,0x00,0x81,0x73,0xff,0xe0,0x08,0x00,0x81,0xe5,0xfc,0xe0,0x08,0x00,0xa2,
+0x61,0x20,0x9c,0x7a,0x28,0x03,0xcc,0x22,0x06,0x03,0x00,0x00,0xb2,0x21,0x20,0xa1,
+0x15,0xff,0x81,0x52,0xf9,0xe0,0x08,0x00,0x7c,0xf2,0xc6,0x28,0x03,0x0c,0xb2,0x77,
+0xb2,0x02,0x06,0x26,0x03,0x21,0x10,0xff,0xe0,0x77,0x11,0x7a,0x72,0x28,0x07,0xa0,
+0x02,0x00,0xe5,0xc5,0xfe,0xa0,0x2a,0x20,0x16,0x2a,0x00,0x86,0x20,0x03,0x62,0x23,
+0x00,0xf6,0x36,0x02,0x06,0x57,0x00,0xcd,0x04,0xbd,0x05,0xa1,0x08,0xff,0x06,0x53,
+0x00,0x92,0x21,0x20,0x81,0x07,0xff,0x90,0x65,0xc0,0x80,0x86,0x63,0x82,0x61,0x21,
+0x80,0x70,0x14,0x16,0xe7,0x00,0x72,0xaf,0xfc,0x70,0x88,0x10,0x82,0x61,0x21,0x56,
+0x28,0x00,0x86,0x18,0x03,0x25,0xca,0xfe,0xa0,0x6a,0x20,0xa2,0x21,0x21,0xb2,0x61,
+0x22,0xe5,0xd4,0xfe,0x7d,0x0a,0xcc,0x1a,0x46,0x5d,0x00,0xe5,0xc8,0xfe,0x88,0x03,
+0xb6,0x48,0x21,0x60,0xea,0xc0,0x0c,0x1f,0xe7,0x3a,0x01,0x0c,0x0f,0x92,0x21,0x22,
+0xa1,0xf6,0xfe,0x90,0x6b,0xc0,0xb2,0x21,0x21,0xf0,0xf6,0xc0,0x70,0xc7,0x20,0x81,
+0x2b,0xf9,0xe0,0x08,0x00,0x25,0xc6,0xfe,0x8d,0x0a,0xa2,0x21,0x20,0xc2,0x21,0x21,
+0xaa,0x64,0xb0,0x9b,0x20,0xad,0x06,0x70,0xb7,0x20,0x82,0x61,0x29,0x92,0x61,0x2a,
+0x65,0x7c,0xfe,0xa2,0x61,0x22,0x25,0xc4,0xfe,0xcd,0x0a,0xa8,0x03,0x82,0x21,0x29,
+0x92,0x21,0x2a,0xb6,0x4a,0x30,0x80,0xac,0xc0,0x0c,0x18,0xa7,0x3c,0x01,0x0c,0x08,
+0x90,0xbb,0xc0,0xc1,0xa5,0xfc,0xd1,0x11,0xfb,0x80,0xbb,0xc0,0x81,0xa8,0xfc,0xe0,
+0x08,0x00,0xa0,0xea,0x20,0xc2,0x21,0x21,0xa1,0xdd,0xfe,0xb0,0xfb,0x20,0x60,0xb6,
+0x20,0x81,0x12,0xf9,0xe0,0x08,0x00,0xad,0x07,0xa5,0xc7,0xfe,0x62,0x21,0x22,0x8c,
+0xb6,0x28,0x03,0xbd,0x06,0xa1,0x65,0xfa,0x56,0x62,0xee,0x46,0xba,0xff,0x68,0x03,
+0x8c,0xda,0x16,0x26,0xee,0xa1,0x1d,0xfd,0x81,0x09,0xf9,0xe0,0x08,0x00,0x86,0xb5,
+0xff,0x82,0x21,0x20,0x92,0x21,0x21,0x9a,0x88,0x82,0x61,0x20,0xb6,0x46,0x39,0x62,
+0xc7,0xfe,0xf2,0x06,0x00,0x62,0xc7,0xfd,0xe2,0x06,0x00,0x62,0xc7,0xfc,0xd2,0x06,
+0x00,0x62,0x07,0x03,0xa1,0xc7,0xfe,0x69,0x41,0x62,0x07,0x02,0xcd,0x07,0x69,0x31,
+0x62,0x07,0x01,0xbd,0x09,0x69,0x21,0x62,0x07,0x00,0x69,0x11,0x0b,0x67,0x62,0x06,
+0x00,0x69,0x01,0x81,0xf6,0xf8,0xe0,0x08,0x00,0xa5,0xbd,0xfe,0x8c,0x1a,0x06,0x37,
+0x00,0x68,0x03,0xb6,0x46,0x0d,0xb2,0x21,0x21,0xa1,0xbb,0xfe,0xcd,0x07,0x81,0xef,
+0xf8,0xe0,0x08,0x00,0x62,0x21,0x20,0x57,0xb6,0x02,0xc6,0xa8,0xff,0x06,0x37,0x00,
+0x00,0x28,0x03,0xa1,0xb6,0xfe,0x56,0xe2,0xf7,0xc6,0x96,0xff,0x92,0x21,0x20,0xc2,
+0xa0,0x04,0x90,0x84,0x80,0x80,0xa8,0x20,0xb2,0xc1,0x20,0x82,0x61,0x29,0xa5,0x6c,
+0xfe,0x98,0x03,0x7d,0x0a,0x82,0x21,0x29,0xb6,0x49,0x0a,0xa1,0xad,0xfe,0xbd,0x08,
+0x81,0xdf,0xf8,0xe0,0x08,0x00,0x8c,0xb7,0x28,0x03,0xbd,0x07,0xa1,0xaa,0xfe,0x56,
+0xf2,0xe1,0x86,0x88,0xff,0x60,0xa6,0x20,0x65,0xbd,0xfe,0xa0,0x7a,0x20,0x56,0xba,
+0x00,0x28,0x03,0xa1,0x9c,0xfe,0x56,0xe2,0xf2,0xc6,0x82,0xff,0x00,0x60,0xc6,0x20,
+0xb2,0xc1,0x20,0x81,0xa0,0xf9,0xe0,0x08,0x00,0x70,0xa7,0x20,0x65,0xb7,0xfe,0x16,
+0x7a,0x00,0x28,0x03,0x16,0x02,0xdf,0x86,0xc2,0xff,0x88,0x03,0xb6,0x48,0x39,0x82,
+0xc7,0xfe,0xf2,0x08,0x00,0x82,0xc7,0xfd,0xe2,0x08,0x00,0x82,0xc7,0xfc,0xd2,0x08,
+0x00,0x82,0x07,0x03,0xa1,0x8f,0xfe,0x89,0x41,0x82,0x07,0x02,0xcd,0x07,0x89,0x31,
+0x82,0x07,0x01,0xbd,0x06,0x89,0x21,0x82,0x07,0x00,0x89,0x11,0x0b,0x87,0x82,0x08,
+0x00,0x89,0x01,0x81,0xbe,0xf8,0xe0,0x08,0x00,0xa5,0xaf,0xfe,0x8c,0xca,0x28,0x03,
+0xa1,0x85,0xfe,0x56,0x12,0xec,0x86,0x67,0xff,0x00,0x00,0x00,0x88,0x03,0x8c,0xb8,
+0xa1,0x86,0xfe,0xcd,0x07,0xbd,0x06,0x81,0xb5,0xf8,0xe0,0x08,0x00,0x38,0x03,0xf6,
+0x43,0x02,0xc6,0x87,0x00,0xa1,0x81,0xfe,0x40,0xc4,0x20,0x50,0xb5,0x20,0x81,0xaf,
+0xf8,0xe0,0x08,0x00,0x46,0x86,0x02,0x50,0xb5,0x20,0x40,0xa4,0x20,0x25,0x0f,0xff,
+0xa0,0x2a,0x20,0x86,0x82,0x02,0x00,0x00,0x60,0xc6,0x20,0x50,0xb5,0x20,0x40,0xa4,
+0x20,0x25,0x80,0xfe,0x06,0xfa,0xff,0x00,0xad,0x04,0x65,0x6c,0xff,0xc6,0xf7,0xff,
+0xad,0x04,0xa5,0x31,0xff,0xc6,0xf5,0xff,0x60,0xc6,0x20,0x50,0xb5,0x20,0x40,0xa4,
+0x20,0xa5,0x8c,0xfe,0x06,0xf2,0xff,0x00,0xa5,0x42,0xfe,0x22,0x23,0x00,0xa0,0x6a,
+0x20,0xb6,0x42,0x10,0xb1,0x6b,0xfe,0xa1,0x6b,0xfe,0x50,0xd5,0x20,0xcd,0x04,0x81,
+0x97,0xf8,0xe0,0x08,0x00,0x22,0xa0,0x00,0x22,0x65,0x00,0x50,0xb5,0x20,0x21,0x42,
+0xf8,0xad,0x04,0x26,0x04,0x02,0xc6,0x28,0x00,0x42,0x21,0x20,0x2c,0x0c,0xb0,0xa4,
+0x11,0xca,0xb1,0x2a,0xaa,0x25,0x57,0xfe,0x8c,0xca,0x38,0x03,0xbd,0x0a,0x7c,0xf2,
+0xa1,0x5e,0xfe,0xdc,0x93,0x06,0x62,0x02,0x71,0x5d,0xfe,0xb2,0x11,0x10,0x70,0x70,
+0xf4,0x48,0x03,0x77,0x1b,0x12,0x7c,0xa2,0xcc,0x14,0xc6,0x5c,0x02,0xa1,0x58,0xfe,
+0x81,0x83,0xf8,0xe0,0x08,0x00,0xc6,0x59,0x02,0xc8,0x91,0xc7,0x36,0x06,0x78,0xa1,
+0x7a,0x7c,0x77,0xb6,0x1b,0x7c,0x92,0xcc,0x14,0x06,0x55,0x02,0xd8,0xa1,0xb2,0x21,
+0x20,0xa1,0x50,0xfe,0xed,0x06,0x81,0x79,0xf8,0xe0,0x08,0x00,0x46,0x50,0x02,0x00,
+0x00,0xb6,0x44,0x17,0xe2,0x01,0x23,0xd2,0x01,0x22,0xc1,0x48,0xfe,0xb2,0x21,0x20,
+0xa1,0x4a,0xfe,0xf2,0xc1,0x2c,0x81,0x71,0xf8,0xe0,0x08,0x00,0x42,0x01,0x22,0xec,
+0x14,0x28,0x03,0xb6,0x32,0x12,0xc8,0xa1,0xd8,0x91,0xa1,0x44,0xfe,0xc0,0xca,0x41,
+0xb2,0xc1,0x2c,0x81,0x6a,0xf8,0xe0,0x08,0x00,0xa8,0x91,0xbd,0x05,0x65,0x60,0xfe,
+0x06,0xbb,0xff,0x00,0x82,0x21,0x20,0x1b,0x88,0x82,0x61,0x20,0x46,0xd2,0xff,0x28,
+0x03,0xb6,0x42,0x0f,0xb1,0x3b,0xfe,0xa1,0x33,0xfe,0xdd,0x05,0xcd,0x04,0x81,0x5f,
+0xf8,0xe0,0x08,0x00,0xa5,0x78,0xfe,0x71,0xe4,0xfb,0xc1,0xe6,0xf7,0x70,0x94,0x10,
+0x60,0xb6,0x20,0x90,0xa9,0x20,0x92,0x61,0x20,0xe5,0x49,0xfe,0x8c,0xda,0x28,0x03,
+0xcc,0x12,0xc6,0x2b,0x00,0xbd,0x0a,0xa1,0x2f,0xfe,0x46,0x28,0x00,0x40,0x20,0xb4,
+0x2a,0x76,0x22,0x61,0x21,0x22,0x07,0x00,0x0c,0x29,0x20,0x23,0x04,0x0c,0x3a,0x20,
+0xa9,0x93,0xcd,0x0a,0x2d,0x0a,0xbd,0x07,0xad,0x05,0x81,0x1a,0xf9,0xe0,0x08,0x00,
+0x98,0x03,0xb6,0x39,0x18,0xe2,0x07,0x03,0xd2,0x07,0x02,0xc2,0x07,0x01,0xb2,0x07,
+0x00,0xa1,0x21,0xfe,0x49,0x01,0xfd,0x02,0x81,0x45,0xf8,0xe0,0x08,0x00,0x20,0xb2,
+0x20,0x40,0xa4,0x20,0xa5,0xf4,0xfe,0x16,0x1a,0x01,0x28,0x03,0x16,0x52,0x05,0xa1,
+0x1b,0xfe,0x81,0x3e,0xf8,0xe0,0x08,0x00,0x46,0x12,0x00,0x00,0x91,0xe3,0xfd,0x26,
+0x22,0x02,0x91,0x19,0xf8,0xa2,0x21,0x21,0x92,0x47,0x00,0xaa,0x86,0x90,0xa8,0x74,
+0xa2,0x48,0x01,0x66,0x32,0x05,0x90,0x90,0x75,0x92,0x48,0x02,0xe5,0x1a,0xfe,0xd2,
+0xa0,0x01,0x82,0xa0,0x00,0xa0,0xd8,0x83,0xc1,0xbb,0xf7,0xa2,0x21,0x20,0x60,0xb6,
+0x20,0x65,0x03,0xff,0x9c,0x4a,0x28,0x03,0x8c,0x92,0xbd,0x0a,0xa1,0x09,0xfe,0x81,
+0x2b,0xf8,0xe0,0x08,0x00,0x0c,0x02,0x86,0x01,0x02,0x00,0x00,0x25,0x6b,0xfe,0x62,
+0x23,0x00,0xf6,0x46,0x02,0x06,0xfe,0x01,0xa2,0xaf,0xfc,0x0c,0x8c,0xb2,0xc1,0x20,
+0xa0,0xa4,0x10,0x65,0x3c,0xfe,0x38,0x03,0x9c,0x4a,0x8c,0xa3,0xa0,0xba,0x20,0xa1,
+0xfd,0xfd,0x81,0x1e,0xf8,0xe0,0x08,0x00,0x22,0xa0,0xff,0x86,0xf4,0x01,0x00,0x00,
+0xf6,0x43,0x02,0x86,0xf2,0x01,0x32,0x01,0x27,0xf2,0x01,0x21,0x39,0x51,0x32,0x01,
+0x26,0xe2,0x01,0x20,0x39,0x41,0x32,0x01,0x25,0xdd,0x05,0x39,0x31,0x32,0x01,0x24,
+0xcd,0x04,0x39,0x21,0x32,0x01,0x23,0xb1,0xea,0xfd,0x39,0x11,0x32,0x01,0x22,0x39,
+0x01,0x86,0x43,0x00,0x28,0x03,0xb6,0x42,0x1f,0x22,0x05,0x03,0xf2,0x05,0x01,0xe2,
+0x05,0x00,0x29,0x11,0x22,0x05,0x02,0xb1,0xe9,0xfd,0xa1,0xe9,0xfd,0x29,0x01,0xdd,
+0x05,0xcd,0x04,0x81,0x06,0xf8,0xe0,0x08,0x00,0x65,0x62,0xfe,0x71,0x8b,0xfb,0xc1,
+0x8d,0xf7,0x70,0x74,0x10,0x60,0xb6,0x20,0x70,0xa7,0x20,0xe5,0x33,0xfe,0x8c,0xba,
+0x28,0x03,0xbd,0x0a,0xa1,0xd8,0xfd,0x56,0x72,0xaa,0x86,0xaa,0xfe,0x92,0x05,0x00,
+0x0c,0x28,0x90,0x93,0x04,0x0c,0x32,0x90,0x28,0x93,0xbd,0x02,0xad,0x04,0x22,0x61,
+0x2a,0xe5,0xe1,0xfe,0x2d,0x0a,0x92,0x21,0x2a,0x8c,0xba,0x28,0x03,0xa1,0xcf,0xfd,
+0x56,0x42,0xba,0x46,0xa0,0xfe,0x00,0x00,0xa2,0x05,0x00,0x40,0x80,0xb4,0x80,0x86,
+0x80,0xa2,0x48,0x00,0xa2,0x05,0x01,0xa2,0x48,0x01,0x66,0x39,0x05,0x92,0x05,0x02,
+0x92,0x48,0x02,0xa5,0x08,0xfe,0x82,0xa0,0x01,0x0c,0x0d,0xc1,0x72,0xf7,0xa0,0xd8,
+0x93,0xbd,0x06,0xad,0x07,0x25,0xf1,0xfe,0x8c,0xca,0x28,0x03,0xbd,0x0a,0xa1,0xc5,
+0xfd,0x56,0xd2,0xa3,0x06,0x90,0xfe,0x00,0x65,0x59,0xfe,0x62,0x23,0x00,0xf6,0x46,
+0x02,0x06,0xb4,0xff,0xa2,0xaf,0xfc,0x0c,0x8c,0xb2,0xc1,0x20,0xa0,0xa4,0x10,0xa5,
+0x2a,0xfe,0x38,0x03,0x8c,0x9a,0xbd,0x0a,0xa1,0xb7,0xfd,0x56,0x33,0xa1,0x86,0x85,
+0xfe,0xf6,0x43,0x02,0x46,0xae,0x01,0x32,0x01,0x27,0xf2,0x01,0x21,0x39,0x51,0x32,
+0x01,0x26,0xe2,0x01,0x20,0x39,0x41,0x32,0x01,0x25,0xb1,0xb0,0xfd,0x39,0x31,0x32,
+0x01,0x24,0xdd,0x05,0x39,0x21,0x32,0x01,0x23,0xcd,0x04,0x39,0x11,0x32,0x01,0x22,
+0x32,0x61,0x00,0xa1,0xa9,0xfd,0x81,0xc9,0xf7,0xe0,0x08,0x00,0x46,0xa0,0x01,0x31,
+0x4a,0xf7,0x42,0x61,0x21,0xc0,0x20,0x00,0x28,0x03,0x20,0x2a,0x14,0x26,0x12,0x3c,
+0x8c,0xc2,0x92,0x21,0x20,0x22,0xc2,0xfe,0x0c,0x87,0x20,0x79,0x93,0xc6,0x14,0x00,
+0xc0,0x20,0x00,0x28,0x03,0x31,0xa0,0xfd,0x20,0x20,0x94,0xc0,0x20,0x00,0x38,0x03,
+0x1b,0x22,0x30,0x70,0xf4,0x30,0x50,0xf5,0x57,0x97,0x09,0x0b,0x33,0x7c,0xd5,0x37,
+0x35,0x02,0x46,0x00,0x00,0x2c,0x87,0x20,0x77,0xc2,0x86,0x09,0x00,0x31,0x97,0xfd,
+0x5c,0x07,0xc0,0x20,0x00,0x28,0x03,0xc0,0x20,0x00,0x38,0x03,0x20,0x20,0x14,0x16,
+0x12,0x01,0x72,0xa0,0xa0,0x26,0x12,0x0b,0x32,0x21,0x20,0x22,0xc2,0xfe,0x72,0xa0,
+0xf0,0x20,0x73,0x93,0x51,0x55,0xfd,0x28,0x05,0x66,0x12,0x07,0x0c,0x0a,0x81,0xc1,
+0xfd,0xe0,0x08,0x00,0x26,0x04,0x05,0xe6,0x14,0x08,0xc6,0x76,0x01,0x62,0xa0,0xf0,
+0x62,0x61,0x21,0x41,0x88,0xfd,0x31,0x86,0xfd,0xc0,0x20,0x00,0x98,0x04,0x82,0x21,
+0x21,0x68,0x13,0x28,0x03,0x92,0x61,0x26,0x80,0x30,0x94,0x90,0x8e,0x15,0xc0,0x20,
+0x00,0x98,0x04,0x82,0x61,0x23,0x82,0x61,0x22,0x92,0x61,0x25,0x90,0x8d,0x05,0x91,
+0x7e,0xfd,0x82,0x61,0x24,0x22,0x61,0x13,0x30,0x50,0xf4,0x90,0x22,0x10,0x92,0x21,
+0x24,0x80,0x85,0x11,0x80,0x22,0x20,0xe0,0x89,0x01,0x91,0xdc,0xf6,0x62,0x61,0x14,
+0x90,0x22,0x10,0x92,0x21,0x23,0x80,0x22,0x20,0xd0,0x89,0x01,0x91,0x74,0xfd,0x69,
+0x91,0x90,0x22,0x10,0x80,0x22,0x20,0x20,0x65,0x75,0x62,0x61,0x28,0x61,0x0e,0xf7,
+0x22,0x61,0x13,0x29,0x81,0x20,0x2d,0x25,0x22,0x61,0x27,0x81,0x6d,0xfd,0xc0,0x20,
+0x00,0x28,0x06,0x0c,0x0a,0x80,0x22,0x10,0x81,0x6b,0xfd,0x80,0x22,0x20,0xc0,0x20,
+0x00,0x29,0x06,0xc0,0x20,0x00,0x28,0x04,0x61,0x68,0xfd,0x60,0x22,0x10,0x61,0x67,
+0xfd,0x60,0x22,0x20,0xc0,0x20,0x00,0x29,0x04,0x21,0x65,0xfd,0x81,0xc5,0xf6,0xc0,
+0x20,0x00,0x68,0x02,0x92,0x21,0x28,0x80,0x66,0x10,0xc0,0x20,0x00,0x69,0x02,0xc0,
+0x20,0x00,0x68,0x02,0x81,0x60,0xfd,0x80,0x66,0x10,0x90,0x89,0x01,0x80,0x66,0x20,
+0xc0,0x20,0x00,0x69,0x02,0xc0,0x20,0x00,0x68,0x02,0x81,0xef,0xf8,0x80,0x66,0x20,
+0xc0,0x20,0x00,0x69,0x02,0xc0,0x20,0x00,0x28,0x04,0x7c,0x76,0x60,0x22,0x10,0xc0,
+0x20,0x00,0x29,0x04,0xc0,0x20,0x00,0x28,0x04,0x82,0x21,0x27,0x61,0x53,0xfd,0x60,
+0x22,0x10,0x40,0x68,0x11,0x60,0x22,0x20,0xc0,0x20,0x00,0x29,0x04,0xc0,0x20,0x00,
+0x68,0x04,0x0c,0x82,0x20,0x66,0x20,0xc0,0x20,0x00,0x69,0x04,0x41,0xa2,0xf6,0x81,
+0x4b,0xfd,0xc0,0x20,0x00,0x68,0x04,0x80,0x66,0x20,0xc0,0x20,0x00,0x69,0x04,0xc0,
+0x20,0x00,0x68,0x04,0x81,0x47,0xfd,0x80,0x66,0x10,0xc0,0x20,0x00,0x69,0x04,0x81,
+0x6e,0xfd,0xe0,0x08,0x00,0x41,0xd7,0xf6,0x61,0x43,0xfd,0xc0,0x20,0x00,0x69,0x04,
+0x61,0xd2,0xf6,0xc0,0x20,0x00,0x48,0x06,0x40,0x4a,0x14,0x26,0x14,0x19,0x8c,0x24,
+0x06,0x0b,0x00,0x00,0xc0,0x20,0x00,0x28,0x06,0x2c,0x84,0x20,0x20,0x94,0x1b,0x22,
+0x20,0x24,0xc2,0x46,0x0c,0x00,0x00,0x00,0x21,0x29,0xfd,0xc0,0x20,0x00,0x48,0x02,
+0xc0,0x20,0x00,0x28,0x02,0x40,0x40,0x14,0x9c,0x44,0x26,0x14,0x17,0x22,0xa0,0xf0,
+0xb1,0x32,0xfd,0xa1,0x32,0xfd,0x26,0x24,0x02,0x06,0x74,0x00,0x06,0x02,0x00,0x00,
+0x5c,0x02,0x86,0x00,0x00,0x22,0xa0,0xa0,0x2c,0x84,0x57,0x34,0x13,0x30,0x64,0xc2,
+0x60,0x81,0x41,0x4a,0x88,0x60,0x88,0xc2,0x87,0x93,0x3a,0x82,0x21,0x20,0xc6,0x08,
+0x00,0x5c,0x04,0x47,0x13,0x11,0x42,0xa0,0xa0,0x47,0x13,0x11,0x42,0xa0,0xf0,0x0c,
+0x26,0x47,0x13,0x0b,0x86,0x07,0x00,0x00,0x0c,0x66,0x86,0x00,0x00,0x00,0x0c,0x36,
+0x0c,0x18,0x42,0xa1,0xe0,0x91,0xac,0xf6,0xc0,0x20,0x00,0x98,0x09,0x90,0x9a,0x14,
+0x16,0x19,0x04,0x46,0x02,0x00,0xb1,0x1a,0xfd,0xa1,0x1a,0xfd,0x46,0x5b,0x00,0x00,
+0x0c,0x1b,0x2c,0x8a,0x82,0x61,0x29,0x92,0x61,0x2a,0xe5,0xaa,0xfd,0x92,0x21,0x2a,
+0x82,0x21,0x29,0x66,0x19,0x1e,0xa1,0x14,0xfd,0x98,0x0a,0x97,0x14,0x16,0xb1,0x13,
+0xfd,0xc2,0xa5,0x40,0xc0,0x20,0x00,0x98,0x0b,0xc0,0x99,0x20,0xc0,0x20,0x00,0x99,
+0x0b,0x0c,0x09,0x99,0x0a,0xcc,0xf8,0x66,0x16,0x02,0xc6,0x69,0x00,0xbd,0x06,0xad,
+0x03,0x65,0xa7,0xfd,0x46,0x67,0x00,0x00,0x81,0x09,0xfd,0x92,0xaa,0xbf,0xc0,0x20,
+0x00,0x62,0x28,0x00,0x90,0x66,0x10,0xc0,0x20,0x00,0x62,0x68,0x00,0x62,0xa1,0xe0,
+0x81,0xef,0xfc,0x67,0x94,0x21,0xc0,0x20,0x00,0x92,0x28,0x00,0x0c,0x46,0x60,0x99,
+0x20,0xc0,0x20,0x00,0x99,0x08,0xc2,0xa0,0x6b,0xbd,0x06,0xa2,0xa0,0x66,0xa5,0x9e,
+0xfd,0x0c,0x88,0x06,0x08,0x00,0x00,0x00,0xc0,0x20,0x00,0x62,0x28,0x00,0x7c,0xb9,
+0x90,0x66,0x10,0xc0,0x20,0x00,0x69,0x08,0xc2,0xa0,0x69,0x0c,0x4b,0xa2,0xa0,0x66,
+0x65,0x9c,0xfd,0x0c,0x56,0x0c,0x48,0x5c,0x0c,0x0c,0x2b,0xa2,0xa0,0x66,0x82,0x61,
+0x29,0x65,0x9b,0xfd,0x82,0x21,0x29,0x0c,0x3b,0xcd,0x08,0xa2,0xa0,0x66,0xa5,0x9a,
+0xfd,0x0c,0x0e,0xdd,0x0e,0x0c,0x2c,0x0c,0x5b,0xa2,0xa0,0x66,0xa5,0xbe,0xfd,0x0c,
+0x0e,0x0c,0x4d,0x0c,0x6c,0xb2,0xa0,0x05,0xa2,0xa0,0x66,0xe5,0xbd,0xfd,0xc2,0xa0,
+0x90,0xc0,0xc6,0x20,0x0c,0x6b,0xa2,0xa0,0x66,0xe5,0x97,0xfd,0x0c,0x1e,0x0c,0x4d,
+0xcd,0x0d,0xbd,0x0e,0xa2,0xa0,0x66,0x25,0xbc,0xfd,0x0c,0x09,0x62,0xa0,0x66,0x06,
+0x04,0x00,0x0c,0xf8,0x87,0x99,0x08,0xb1,0xd4,0xfc,0xa1,0xd9,0xfc,0x06,0x17,0x00,
+0x92,0xc9,0x01,0x90,0xe9,0x20,0x0c,0x0d,0x0c,0x3c,0x0c,0x1b,0xad,0x06,0x92,0x61,
+0x2a,0x65,0xb9,0xfd,0xad,0x06,0xe5,0x89,0xfd,0xa1,0xd2,0xfc,0x81,0x4d,0xf6,0x92,
+0x21,0x2a,0xc0,0x20,0x00,0xa9,0x08,0xa1,0x4b,0xf6,0xc0,0x20,0x00,0xb8,0x08,0xa7,
+0x8b,0xf7,0xc0,0x20,0x00,0x88,0x08,0x80,0x80,0x35,0x56,0x48,0xfb,0x61,0xc6,0xfc,
+0x49,0x06,0x5c,0x04,0x47,0x13,0x1e,0x42,0xa0,0xa0,0x47,0x13,0x20,0x82,0xa0,0xf0,
+0x0c,0x24,0x0c,0x76,0x87,0x13,0x1a,0xb1,0xbc,0xfc,0xa1,0xc3,0xfc,0x81,0xe3,0xfc,
+0xe0,0x08,0x00,0xe5,0xda,0xfd,0x4d,0x08,0x06,0x01,0x00,0x00,0x00,0x00,0x0c,0x14,
+0x0c,0x46,0x81,0xa6,0xfc,0x7c,0xc9,0xc0,0x20,0x00,0x38,0x08,0x50,0x66,0x11,0x90,
+0x33,0x10,0x40,0x43,0x20,0xc0,0x20,0x00,0x49,0x08,0x41,0x3f,0xf6,0x82,0xac,0x00,
+0xc0,0x20,0x00,0x38,0x04,0x91,0x41,0xf6,0x80,0x33,0x10,0x81,0x3f,0xf6,0xc0,0x20,
+0x00,0x39,0x04,0xc0,0x20,0x00,0x38,0x08,0x90,0x33,0x10,0x60,0x33,0x20,0xc0,0x20,
+0x00,0x39,0x08,0xc0,0x20,0x00,0x38,0x04,0x61,0x35,0xf6,0x60,0x33,0x10,0x62,0xa4,
+0x00,0x60,0x33,0x20,0xc0,0x20,0x00,0x39,0x04,0x31,0x32,0xf6,0x41,0xa8,0xfc,0xc0,
+0x20,0x00,0x42,0x63,0x00,0xa0,0xea,0x03,0xa0,0xb5,0xa2,0xa0,0xa5,0x82,0xcd,0x02,
+0xd2,0xa0,0x00,0x81,0x36,0xfa,0xe0,0x08,0x00,0xa0,0xea,0x13,0x31,0x8b,0xfc,0x28,
+0x81,0x80,0x55,0x11,0x30,0x22,0x10,0x50,0x22,0x20,0x92,0x21,0x24,0x51,0xeb,0xf5,
+0x42,0x21,0x23,0xe0,0x39,0x01,0x50,0x22,0x10,0x30,0x22,0x20,0xd0,0x34,0x01,0x41,
+0x83,0xfc,0x52,0x21,0x28,0x40,0x22,0x10,0x41,0x96,0xfc,0x30,0x22,0x20,0x40,0x22,
+0x10,0xb0,0x35,0x01,0x41,0x94,0xfc,0x62,0x21,0x27,0x30,0x22,0x20,0x40,0x22,0x10,
+0x30,0x36,0x01,0x41,0x91,0xfc,0x30,0x22,0x20,0x31,0x90,0xfc,0x29,0x81,0x40,0x42,
+0x10,0x37,0x14,0x02,0x46,0x21,0x00,0x51,0x8e,0xfc,0x61,0x90,0xfc,0xc0,0x20,0x00,
+0x38,0x05,0x40,0x33,0x20,0xc0,0x20,0x00,0x39,0x05,0x51,0x8a,0xfc,0xc0,0x20,0x00,
+0x38,0x05,0x40,0x33,0x20,0xc0,0x20,0x00,0x39,0x05,0x31,0x87,0xfc,0xc0,0x20,0x00,
+0x58,0x03,0x60,0x55,0x10,0x61,0x86,0xfc,0x60,0x55,0x20,0xc0,0x20,0x00,0x59,0x03,
+0xc0,0x20,0x00,0x58,0x03,0x61,0x83,0xfc,0x60,0x55,0x10,0x61,0x83,0xfc,0x60,0x55,
+0x20,0xc0,0x20,0x00,0x59,0x03,0xc0,0x20,0x00,0x58,0x03,0x61,0x80,0xfc,0x60,0x55,
+0x10,0x61,0x7f,0xfc,0x60,0x55,0x20,0xc0,0x20,0x00,0x59,0x03,0xc0,0x20,0x00,0x58,
+0x03,0x62,0xa2,0x00,0x60,0x55,0x20,0xc0,0x20,0x00,0x59,0x03,0xc0,0x20,0x00,0x58,
+0x03,0x61,0x1e,0xf6,0x60,0x55,0x20,0xc0,0x20,0x00,0x52,0x63,0x00,0x27,0x72,0x58,
+0x21,0x51,0xfc,0x52,0xaf,0xbf,0xc0,0x20,0x00,0x38,0x02,0x61,0x73,0xfc,0x50,0x33,
+0x10,0x51,0x70,0xfc,0xc0,0x20,0x00,0x39,0x02,0xc0,0x20,0x00,0x38,0x05,0x3c,0x2a,
+0x60,0x33,0x10,0x62,0xa1,0x40,0x60,0x33,0x20,0xc0,0x20,0x00,0x39,0x05,0x81,0x7c,
+0xfc,0xe0,0x08,0x00,0x31,0x6a,0xfc,0x37,0x94,0x0e,0xc0,0x20,0x00,0x38,0x02,0x42,
+0xaf,0x7f,0x40,0x33,0x10,0xc6,0x02,0x00,0x00,0xc0,0x20,0x00,0x38,0x02,0x42,0xa0,
+0x80,0x40,0x33,0x20,0xc0,0x20,0x00,0x39,0x02,0x21,0x3a,0xfc,0x41,0xb8,0xf6,0xc0,
+0x20,0x00,0x38,0x02,0x82,0x21,0x25,0x40,0x33,0x10,0x41,0xb5,0xf6,0x0c,0x3a,0x40,
+0x48,0x10,0x40,0x33,0x20,0xc0,0x20,0x00,0x39,0x02,0x81,0x69,0xfc,0xe0,0x08,0x00,
+0xc0,0x20,0x00,0x38,0x02,0x41,0x56,0xfc,0x92,0x21,0x26,0x40,0x33,0x10,0x41,0x55,
+0xfc,0x52,0x21,0x22,0x40,0x49,0x10,0x40,0x33,0x20,0xc0,0x20,0x00,0x39,0x02,0xc0,
+0x20,0x00,0x38,0x02,0x42,0xae,0xff,0x62,0x21,0x20,0x40,0x33,0x10,0x0b,0x45,0x52,
+0xa1,0x00,0x40,0x65,0x83,0x60,0x33,0x20,0xc0,0x20,0x00,0x39,0x02,0xc0,0x20,0x00,
+0x28,0x02,0x31,0x49,0xfc,0x82,0x21,0x22,0x30,0x22,0x10,0x66,0x28,0x05,0x91,0xdf,
+0xfb,0x92,0x61,0x20,0x32,0x21,0x20,0xa2,0xa1,0x2c,0x30,0x22,0x20,0x31,0x19,0xfc,
+0xc0,0x20,0x00,0x29,0x03,0x81,0x4e,0xfc,0xe0,0x08,0x00,0x21,0xb5,0xf5,0x42,0x21,
+0x21,0x31,0x1b,0xf8,0x20,0x24,0x82,0x29,0x03,0x31,0xd7,0xfb,0x70,0x27,0x20,0x32,
+0x23,0x00,0x66,0x13,0x0b,0xe5,0xb6,0xfd,0x46,0x01,0x00,0x00,0x00,0x00,0x22,0xaf,
+0xfe,0x31,0x24,0xf6,0x38,0x03,0xb6,0x43,0x17,0xa1,0x34,0xfc,0xbd,0x02,0x81,0x23,
+0xf6,0xe0,0x08,0x00,0x46,0x02,0x00,0x00,0xf6,0x46,0x02,0x46,0x37,0xfd,0xc6,0x33,
+0xfd,0x1d,0xf0,0x00,0x36,0x41,0x00,0x22,0x02,0x00,0x92,0xa1,0x03,0x20,0x20,0x04,
+0x0c,0x08,0x20,0x89,0x83,0x2d,0x08,0x1d,0xf0,0x00,0x00,0x00,0x36,0x41,0x00,0x82,
+0x02,0x00,0x07,0x68,0x17,0xc0,0x20,0x00,0x49,0xb2,0xc0,0x20,0x00,0x49,0xa2,0x0c,
+0x08,0xc0,0x20,0x00,0x89,0xc2,0x39,0x92,0xc0,0x20,0x00,0x89,0xd2,0x1d,0xf0,0x00,
+0x36,0x41,0x00,0x82,0x02,0x00,0x22,0xa1,0x03,0x07,0x68,0x0b,0x32,0xc3,0xfc,0x22,
+0x13,0x00,0x22,0x53,0x01,0x22,0xa0,0x00,0x1d,0xf0,
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_data.inc 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_data.inc
new file mode 100644
index 0000000000..df159e9f6b
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_data.inc
@@ -0,0 +1,34 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0xfc,0x83,0x02,0x40,0x98,0x83,0x02,0x40,0xcc,0x83,0x02,0x40,0x7c,0x83,0x02,0x40,
+0x58,0x84,0x02,0x40,0x04,0x8a,0x02,0x40,0x68,0x9e,0x02,0x40,0x3c,0x88,0x02,0x40,
+0x8c,0x88,0x02,0x40,0x44,0x9e,0x02,0x40,0xd4,0x88,0x02,0x40,0x2c,0x9e,0x02,0x40,
+0x30,0x84,0x02,0x40,0x00,0x00,0x00,0x00,0x00,0xc0,0xfb,0x3f,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x01,0x00,0x00,
+0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x00,0x1c,0x4e,0x0e,0x72,0x74,0x63,0x5f,
+0x63,0x6c,0x6b,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,0x3a,0x20,0x75,0x6e,0x73,
+0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x66,0x72,0x65,0x71,0x75,0x65,0x6e,
+0x63,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,0x61,0x74,0x69,0x6f,0x6e,
+0x00,0x72,0x74,0x63,0x5f,0x63,0x6c,0x6b,0x5f,0x69,0x6e,0x69,0x74,0x00,0x25,0x73,
+0x28,0x65,0x72,0x72,0x29,0x3a,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x43,
+0x50,0x55,0x20,0x66,0x72,0x65,0x71,0x75,0x65,0x6e,0x63,0x79,0x20,0x76,0x61,0x6c,
+0x75,0x65,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,0x3a,0x20,0x42,0x42,0x50,0x4c,
+0x4c,0x20,0x53,0x4f,0x46,0x54,0x57,0x41,0x52,0x45,0x20,0x43,0x41,0x4c,0x20,0x46,
+0x41,0x49,0x4c,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,0x3a,0x20,0x69,0x6e,0x76,
+0x61,0x6c,0x69,0x64,0x20,0x66,0x72,0x65,0x71,0x75,0x65,0x6e,0x63,0x79,0x00,0x00,
+0x28,0x50,0x04,0x00,0xff,0xac,0x00,0x00,0x72,0x95,0x02,0x40,0x21,0x96,0x02,0x40,
+0x03,0x96,0x02,0x40,0x10,0x96,0x02,0x40,0x19,0x9e,0x02,0x40,0x43,0x96,0x02,0x40,
+0xb3,0x96,0x02,0x40,0x33,0x97,0x02,0x40,0x19,0x9e,0x02,0x40,0x2c,0x96,0x02,0x40,
+0x34,0x96,0x02,0x40,0xa1,0x97,0x02,0x40,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x00,
+0x00,0x00,0x10,0x00,0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x80,0x00,
+0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x02,
+
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_data_wlog.inc 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_data_wlog.inc
new file mode 100644
index 0000000000..0dbfeb3239
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_data_wlog.inc
@@ -0,0 +1,269 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0x68,0x82,0x02,0x40,0x04,0x82,0x02,0x40,0x38,0x82,0x02,0x40,0xe8,0x81,0x02,0x40,
+0xc4,0x82,0x02,0x40,0x3c,0x90,0x02,0x40,0x00,0xab,0x02,0x40,0x70,0x8e,0x02,0x40,
+0xc0,0x8e,0x02,0x40,0xdc,0xaa,0x02,0x40,0x14,0x8f,0x02,0x40,0xc4,0xaa,0x02,0x40,
+0x9c,0x82,0x02,0x40,0x00,0x00,0x00,0x00,0x00,0xc0,0xfb,0x3f,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0xe0,0x01,0x00,0x00,
+0x00,0x1c,0x4e,0x0e,0x03,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x01,0x53,0x54,0x55,
+0x42,0x5f,0x45,0x3a,0x20,0x41,0x53,0x53,0x45,0x52,0x54,0x20,0x61,0x74,0x20,0x25,
+0x73,0x3a,0x25,0x64,0x20,0x27,0x25,0x73,0x27,0x0a,0x00,0x6d,0x73,0x62,0x20,0x2d,
+0x20,0x6c,0x73,0x62,0x20,0x3c,0x20,0x38,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,
+0x20,0x66,0x6c,0x61,0x73,0x68,0x5f,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x69,0x6f,
+0x6e,0x5f,0x6d,0x6f,0x64,0x65,0x3a,0x20,0x25,0x64,0x0a,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20,0x45,0x4e,0x54,0x45,0x52,0x0a,0x00,0x53,
+0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x25,0x78,0x2c,
+0x20,0x63,0x73,0x20,0x25,0x78,0x2c,0x20,0x62,0x73,0x20,0x25,0x78,0x2c,0x20,0x73,
+0x73,0x20,0x25,0x78,0x2c,0x20,0x70,0x73,0x20,0x25,0x78,0x2c,0x20,0x73,0x6d,0x20,
+0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x46,0x6c,0x61,0x73,
+0x68,0x20,0x49,0x44,0x20,0x72,0x65,0x61,0x64,0x20,0x25,0x78,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x44,0x3a,0x20,0x46,0x6c,0x61,0x73,0x68,0x20,0x49,0x44,0x20,0x25,
+0x78,0x2c,0x20,0x73,0x69,0x7a,0x65,0x20,0x25,0x64,0x20,0x4b,0x42,0x0a,0x00,0x53,
+0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x41,0x42,0x4f,0x52,0x54,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x44,0x3a,0x20,0x73,0x74,0x61,0x72,0x74,0x5f,0x70,0x61,0x67,0x65,
+0x3a,0x20,0x25,0x64,0x20,0x6d,0x61,0x70,0x5f,0x73,0x72,0x63,0x3a,0x20,0x25,0x78,
+0x20,0x6d,0x61,0x70,0x5f,0x73,0x69,0x7a,0x65,0x3a,0x20,0x25,0x78,0x20,0x70,0x61,
+0x67,0x65,0x5f,0x63,0x6e,0x74,0x3a,0x20,0x25,0x64,0x20,0x66,0x6c,0x61,0x73,0x68,
+0x5f,0x70,0x61,0x67,0x65,0x3a,0x20,0x25,0x64,0x20,0x6d,0x61,0x70,0x5f,0x70,0x74,
+0x72,0x3a,0x20,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,
+0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x70,
+0x70,0x20,0x69,0x6d,0x61,0x67,0x65,0x20,0x68,0x65,0x61,0x64,0x65,0x72,0x20,0x28,
+0x25,0x64,0x29,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x49,0x6e,
+0x76,0x61,0x6c,0x69,0x64,0x20,0x6d,0x61,0x67,0x69,0x63,0x20,0x6e,0x75,0x6d,0x62,
+0x65,0x72,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,0x20,0x61,0x70,0x70,0x20,0x69,
+0x6d,0x61,0x67,0x65,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x46,
+0x6f,0x75,0x6e,0x64,0x20,0x61,0x70,0x70,0x20,0x69,0x6d,0x61,0x67,0x65,0x3a,0x20,
+0x6d,0x61,0x67,0x69,0x63,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,0x25,0x64,0x20,0x73,
+0x65,0x67,0x6d,0x65,0x6e,0x74,0x73,0x2c,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x40,
+0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,
+0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x61,0x70,
+0x70,0x20,0x73,0x65,0x67,0x6d,0x65,0x6e,0x74,0x20,0x68,0x65,0x61,0x64,0x65,0x72,
+0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,
+0x41,0x70,0x70,0x20,0x73,0x65,0x67,0x6d,0x65,0x6e,0x74,0x20,0x25,0x64,0x3a,0x20,
+0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x4d,0x61,0x70,0x70,0x65,0x64,0x20,
+0x73,0x65,0x67,0x6d,0x65,0x6e,0x74,0x20,0x25,0x64,0x3a,0x20,0x25,0x64,0x20,0x62,
+0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x2d,0x3e,0x20,0x30,
+0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x72,0x61,
+0x73,0x65,0x20,0x63,0x68,0x65,0x63,0x6b,0x20,0x73,0x74,0x61,0x72,0x74,0x20,0x25,
+0x64,0x2c,0x20,0x73,0x7a,0x20,0x25,0x64,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,
+0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,
+0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x63,0x68,0x65,0x63,
+0x6b,0x65,0x64,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,0x20,
+0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x68,0x61,0x73,0x68,0x3a,0x20,0x25,
+0x78,0x25,0x78,0x25,0x78,0x2e,0x2e,0x2e,0x25,0x78,0x25,0x78,0x25,0x78,0x0a,0x00,
+0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x49,0x6e,0x69,0x74,0x20,0x61,0x70,0x70,
+0x74,0x72,0x61,0x63,0x65,0x20,0x6d,0x6f,0x64,0x75,0x6c,0x65,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,
+0x69,0x6e,0x69,0x74,0x20,0x61,0x70,0x70,0x74,0x72,0x61,0x63,0x65,0x20,0x6d,0x6f,
+0x64,0x75,0x6c,0x65,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x66,0x61,0x6c,0x73,
+0x65,0x20,0x26,0x26,0x20,0x22,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,
+0x70,0x72,0x6f,0x64,0x75,0x63,0x65,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x74,0x6f,
+0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,0x66,0x65,0x72,0x21,0x22,0x00,0x66,
+0x61,0x6c,0x73,0x65,0x20,0x26,0x26,0x20,0x22,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,
+0x74,0x6f,0x20,0x63,0x6f,0x6e,0x73,0x75,0x6d,0x65,0x20,0x62,0x79,0x74,0x65,0x73,
+0x20,0x66,0x72,0x6f,0x6d,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,0x66,0x65,
+0x72,0x21,0x22,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x72,0x61,0x73,
+0x65,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,
+0x73,0x7a,0x20,0x25,0x64,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,
+0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x66,
+0x6c,0x61,0x73,0x68,0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,
+0x44,0x3a,0x20,0x45,0x72,0x61,0x73,0x65,0x64,0x20,0x25,0x64,0x20,0x62,0x79,0x74,
+0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c,
+0x64,0x20,0x6d,0x73,0x0a,0x00,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x2d,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x57,0x72,0x69,0x74,0x65,0x20,0x25,
+0x73,0x66,0x6c,0x61,0x73,0x68,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x73,0x7a,
+0x20,0x25,0x64,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c,0x64,0x20,0x75,0x73,0x0a,0x00,
+0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x53,0x74,0x61,0x72,0x74,0x20,0x77,0x72,
+0x69,0x74,0x69,0x6e,0x67,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,
+0x20,0x30,0x78,0x25,0x78,0x20,0x6f,0x70,0x74,0x20,0x25,0x78,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x49,0x3a,0x20,0x49,0x6e,0x69,0x74,0x20,0x61,0x70,0x70,0x74,0x72,
+0x61,0x63,0x65,0x20,0x6d,0x6f,0x64,0x75,0x6c,0x65,0x20,0x64,0x6f,0x77,0x6e,0x20,
+0x62,0x75,0x66,0x66,0x65,0x72,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,
+0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,
+0x55,0x6e,0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x64,0x61,0x74,
+0x61,0x20,0x73,0x69,0x7a,0x65,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x56,0x3a,0x20,0x52,0x65,0x71,0x20,0x74,0x72,0x61,
+0x63,0x65,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,
+0x79,0x74,0x65,0x73,0x20,0x25,0x64,0x2d,0x25,0x64,0x0a,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x67,0x65,
+0x74,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,
+0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x56,0x3a,0x20,0x47,0x6f,0x74,0x20,0x74,
+0x72,0x61,0x63,0x65,0x20,0x64,0x6f,0x77,0x6e,0x20,0x62,0x75,0x66,0x20,0x25,0x64,
+0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,
+0x20,0x25,0x6c,0x6c,0x64,0x20,0x75,0x73,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x56,
+0x3a,0x20,0x74,0x69,0x6e,0x66,0x6c,0x5f,0x64,0x65,0x63,0x6f,0x6d,0x70,0x72,0x65,
+0x73,0x73,0x20,0x69,0x6e,0x28,0x25,0x64,0x29,0x20,0x6f,0x75,0x74,0x28,0x25,0x64,
+0x29,0x20,0x28,0x25,0x6c,0x6c,0x64,0x29,0x75,0x73,0x0a,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x45,0x3a,0x20,0x55,0x6e,0x61,0x6c,0x69,0x67,0x6e,0x65,0x64,0x20,0x6f,0x66,
+0x66,0x73,0x65,0x74,0x21,0x20,0x25,0x64,0x2d,0x25,0x64,0x0a,0x00,0x53,0x54,0x55,
+0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,
+0x72,0x69,0x74,0x65,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x28,0x25,0x64,0x29,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,
+0x74,0x6f,0x20,0x69,0x6e,0x66,0x6c,0x61,0x74,0x65,0x20,0x64,0x61,0x74,0x61,0x20,
+0x28,0x25,0x64,0x29,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x4e,0x6f,
+0x74,0x20,0x65,0x6e,0x6f,0x75,0x67,0x68,0x20,0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,
+0x73,0x65,0x64,0x20,0x64,0x61,0x74,0x61,0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x53,
+0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x54,0x6f,0x6f,0x20,0x6d,0x75,0x63,0x68,0x20,
+0x63,0x6f,0x6d,0x70,0x72,0x65,0x73,0x73,0x65,0x64,0x20,0x64,0x61,0x74,0x61,0x20,
+0x28,0x25,0x64,0x29,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,
+0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x70,0x75,0x74,0x20,0x74,0x72,0x61,0x63,
+0x65,0x20,0x62,0x75,0x66,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,
+0x57,0x72,0x6f,0x74,0x65,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,
+0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x63,
+0x70,0x75,0x5f,0x66,0x72,0x65,0x71,0x3a,0x25,0x64,0x20,0x4d,0x68,0x7a,0x0a,0x00,
+0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x69,0x63,0x61,0x63,0x68,0x65,0x5f,0x63,
+0x74,0x72,0x6c,0x5f,0x72,0x65,0x67,0x3a,0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x63,
+0x61,0x63,0x68,0x65,0x5f,0x63,0x74,0x72,0x6c,0x31,0x5f,0x72,0x65,0x67,0x3a,0x20,
+0x30,0x78,0x25,0x78,0x20,0x64,0x62,0x67,0x5f,0x73,0x74,0x61,0x74,0x75,0x73,0x30,
+0x5f,0x72,0x65,0x67,0x3a,0x20,0x30,0x78,0x25,0x78,0x20,0x64,0x62,0x67,0x5f,0x73,
+0x74,0x61,0x74,0x75,0x73,0x31,0x5f,0x72,0x65,0x67,0x3a,0x20,0x30,0x78,0x25,0x78,
+0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x44,0x41,0x54,0x41,0x20,0x30,
+0x78,0x25,0x78,0x2e,0x2e,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,
+0x44,0x3a,0x20,0x42,0x53,0x53,0x20,0x30,0x78,0x25,0x78,0x2e,0x2e,0x30,0x78,0x25,
+0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x63,0x6d,0x64,0x20,0x25,
+0x64,0x3a,0x25,0x73,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,
+0x20,0x61,0x72,0x67,0x31,0x20,0x25,0x78,0x2c,0x20,0x61,0x72,0x67,0x32,0x20,0x25,
+0x64,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x43,0x61,0x63,0x68,0x65,
+0x20,0x6e,0x65,0x65,0x64,0x73,0x20,0x74,0x6f,0x20,0x62,0x65,0x20,0x65,0x6e,0x61,
+0x62,0x6c,0x65,0x64,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,
+0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x41,0x74,0x74,0x61,0x63,0x68,
+0x20,0x73,0x70,0x69,0x20,0x66,0x6c,0x61,0x73,0x68,0x2e,0x2e,0x2e,0x0a,0x00,0x53,
+0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,
+0x20,0x67,0x65,0x74,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,0x73,0x69,0x7a,0x65,0x21,
+0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,
+0x20,0x74,0x6f,0x20,0x75,0x6e,0x6c,0x6f,0x63,0x6b,0x20,0x66,0x6c,0x61,0x73,0x68,
+0x20,0x28,0x25,0x64,0x29,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x53,
+0x74,0x61,0x72,0x74,0x20,0x72,0x65,0x61,0x64,0x69,0x6e,0x67,0x20,0x25,0x64,0x20,
+0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,
+0x67,0x65,0x74,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x21,0x0a,0x00,
+0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x47,0x6f,0x74,0x20,0x74,0x72,0x61,0x63,
+0x65,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,
+0x20,0x30,0x78,0x25,0x78,0x20,0x69,0x6e,0x20,0x25,0x6c,0x6c,0x64,0x20,0x75,0x73,
+0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x52,0x65,0x61,0x64,0x20,0x66,
+0x6c,0x61,0x73,0x68,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x20,0x73,0x7a,0x20,0x25,
+0x64,0x20,0x69,0x6e,0x20,0x25,0x64,0x20,0x6d,0x73,0x0a,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x44,0x3a,0x20,0x46,0x6c,0x75,0x73,0x68,0x20,0x74,0x72,0x61,0x63,0x65,0x20,
+0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,
+0x78,0x25,0x78,0x20,0x5b,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,
+0x20,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x20,0x25,0x78,0x5d,0x0a,0x00,0x53,
+0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,
+0x20,0x66,0x6c,0x75,0x73,0x68,0x20,0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,
+0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x53,0x65,0x6e,0x74,0x20,
+0x74,0x72,0x61,0x63,0x65,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,
+0x65,0x73,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,
+0x45,0x3a,0x20,0x45,0x78,0x69,0x74,0x65,0x64,0x20,0x6c,0x6f,0x6f,0x70,0x20,0x77,
+0x68,0x65,0x6e,0x20,0x72,0x65,0x6d,0x61,0x69,0x6e,0x67,0x20,0x64,0x61,0x74,0x61,
+0x20,0x73,0x69,0x7a,0x65,0x20,0x69,0x73,0x20,0x6d,0x6f,0x72,0x65,0x20,0x74,0x68,
+0x65,0x20,0x34,0x20,0x62,0x79,0x74,0x65,0x73,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x44,0x3a,0x20,0x52,0x65,0x61,0x64,0x20,0x70,0x61,0x64,0x64,0x65,0x64,0x20,
+0x77,0x6f,0x72,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x66,0x6c,0x61,0x73,0x68,0x20,
+0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,
+0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x6c,
+0x61,0x73,0x74,0x20,0x77,0x6f,0x72,0x64,0x20,0x66,0x72,0x6f,0x6d,0x20,0x66,0x6c,
+0x61,0x73,0x68,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,
+0x45,0x3a,0x20,0x53,0x65,0x6e,0x74,0x20,0x6c,0x61,0x73,0x74,0x20,0x74,0x72,0x61,
+0x63,0x65,0x20,0x62,0x75,0x66,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,
+0x40,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,
+0x52,0x65,0x61,0x64,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,
+0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,
+0x3a,0x20,0x30,0x78,0x25,0x78,0x20,0x30,0x78,0x25,0x78,0x0a,0x00,0x53,0x54,0x55,
+0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,
+0x65,0x61,0x64,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x73,0x20,0x74,
+0x61,0x62,0x6c,0x65,0x20,0x65,0x6e,0x74,0x72,0x79,0x20,0x28,0x25,0x64,0x29,0x21,
+0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x49,0x6e,0x76,0x61,0x6c,0x69,
+0x64,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x74,0x61,0x62,0x6c,
+0x65,0x20,0x6d,0x61,0x67,0x69,0x63,0x21,0x20,0x28,0x30,0x78,0x25,0x78,0x29,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x50,0x61,0x72,0x74,0x69,0x74,0x69,
+0x6f,0x6e,0x20,0x25,0x64,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x2d,0x20,
+0x6f,0x66,0x66,0x73,0x65,0x74,0x20,0x30,0x78,0x25,0x78,0x20,0x73,0x69,0x7a,0x65,
+0x20,0x30,0x78,0x25,0x78,0x20,0x65,0x78,0x63,0x65,0x65,0x64,0x73,0x20,0x66,0x6c,
+0x61,0x73,0x68,0x20,0x63,0x68,0x69,0x70,0x20,0x73,0x69,0x7a,0x65,0x20,0x30,0x78,
+0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x46,0x6f,0x75,0x6e,
+0x64,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x20,0x25,0x64,0x2c,0x20,
+0x6d,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,0x74,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,
+0x73,0x74,0x20,0x30,0x78,0x25,0x78,0x2c,0x20,0x6c,0x20,0x27,0x25,0x73,0x27,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x46,0x6f,0x75,0x6e,0x64,0x20,0x61,
+0x70,0x70,0x20,0x70,0x61,0x72,0x74,0x69,0x74,0x69,0x6f,0x6e,0x3a,0x20,0x27,0x25,
+0x73,0x27,0x20,0x25,0x64,0x20,0x4b,0x42,0x20,0x40,0x20,0x30,0x78,0x25,0x78,0x0a,
+0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,
+0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x69,0x6e,0x73,0x6e,0x20,0x73,0x65,0x63,
+0x74,0x6f,0x72,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,
+0x49,0x3a,0x20,0x52,0x65,0x61,0x64,0x20,0x69,0x6e,0x73,0x6e,0x20,0x5b,0x25,0x30,
+0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,
+0x78,0x5d,0x20,0x25,0x64,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,0x30,0x78,
+0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,
+0x65,0x64,0x20,0x74,0x6f,0x20,0x65,0x72,0x61,0x73,0x65,0x20,0x69,0x6e,0x73,0x6e,
+0x20,0x73,0x65,0x63,0x74,0x6f,0x72,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,
+0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x77,0x72,0x69,0x74,
+0x65,0x20,0x62,0x72,0x65,0x61,0x6b,0x20,0x69,0x6e,0x73,0x6e,0x20,0x28,0x25,0x64,
+0x29,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,
+0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x61,0x64,0x20,0x69,0x6e,0x73,0x6e,0x20,
+0x28,0x25,0x64,0x29,0x21,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,
+0x73,0x3a,0x20,0x57,0x52,0x4f,0x54,0x45,0x20,0x30,0x78,0x25,0x78,0x20,0x30,0x78,
+0x25,0x78,0x20,0x5b,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,
+0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,
+0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x5d,0x0a,0x00,0x53,0x54,
+0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20,0x30,0x78,0x25,0x78,0x20,0x30,
+0x78,0x25,0x78,0x20,0x5b,0x25,0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x20,0x25,
+0x30,0x32,0x78,0x20,0x25,0x30,0x32,0x78,0x5d,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,
+0x45,0x3a,0x20,0x46,0x61,0x69,0x6c,0x65,0x64,0x20,0x74,0x6f,0x20,0x72,0x65,0x73,
+0x74,0x6f,0x72,0x65,0x20,0x69,0x6e,0x73,0x6e,0x20,0x28,0x25,0x64,0x29,0x21,0x0a,
+0x00,0x72,0x74,0x63,0x5f,0x63,0x6c,0x6b,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,
+0x3a,0x20,0x75,0x6e,0x73,0x75,0x70,0x70,0x6f,0x72,0x74,0x65,0x64,0x20,0x66,0x72,
+0x65,0x71,0x75,0x65,0x6e,0x63,0x79,0x20,0x63,0x6f,0x6e,0x66,0x69,0x67,0x75,0x72,
+0x61,0x74,0x69,0x6f,0x6e,0x00,0x72,0x74,0x63,0x5f,0x63,0x6c,0x6b,0x5f,0x69,0x6e,
+0x69,0x74,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,0x3a,0x20,0x69,0x6e,0x76,0x61,
+0x6c,0x69,0x64,0x20,0x43,0x50,0x55,0x20,0x66,0x72,0x65,0x71,0x75,0x65,0x6e,0x63,
+0x79,0x20,0x76,0x61,0x6c,0x75,0x65,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,0x3a,
+0x20,0x42,0x42,0x50,0x4c,0x4c,0x20,0x53,0x4f,0x46,0x54,0x57,0x41,0x52,0x45,0x20,
+0x43,0x41,0x4c,0x20,0x46,0x41,0x49,0x4c,0x00,0x25,0x73,0x28,0x65,0x72,0x72,0x29,
+0x3a,0x20,0x69,0x6e,0x76,0x61,0x6c,0x69,0x64,0x20,0x66,0x72,0x65,0x71,0x75,0x65,
+0x6e,0x63,0x79,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x78,0x69,0x74,
+0x20,0x25,0x64,0x0a,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x52,0x45,0x41,0x44,0x00,
+0x46,0x4c,0x41,0x53,0x48,0x5f,0x57,0x52,0x49,0x54,0x45,0x00,0x46,0x4c,0x41,0x53,
+0x48,0x5f,0x45,0x52,0x41,0x53,0x45,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x45,0x52,
+0x41,0x53,0x45,0x5f,0x43,0x48,0x45,0x43,0x4b,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,
+0x53,0x49,0x5a,0x45,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x4d,0x41,0x50,0x5f,0x47,
+0x45,0x54,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x42,0x50,0x5f,0x53,0x45,0x54,0x00,
+0x46,0x4c,0x41,0x53,0x48,0x5f,0x42,0x50,0x5f,0x43,0x4c,0x45,0x41,0x52,0x00,0x46,
+0x4c,0x41,0x53,0x48,0x5f,0x54,0x45,0x53,0x54,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,
+0x57,0x52,0x49,0x54,0x45,0x5f,0x44,0x45,0x46,0x4c,0x41,0x54,0x45,0x44,0x00,0x46,
+0x4c,0x41,0x53,0x48,0x5f,0x43,0x41,0x4c,0x43,0x5f,0x48,0x41,0x53,0x48,0x00,0x43,
+0x4c,0x4f,0x43,0x4b,0x5f,0x43,0x4f,0x4e,0x46,0x49,0x47,0x55,0x52,0x45,0x00,0x00,
+0x28,0x50,0x04,0x00,0xff,0xac,0x00,0x00,0x12,0x9e,0x02,0x40,0xa8,0xa0,0x02,0x40,
+0x87,0xa0,0x02,0x40,0x98,0xa0,0x02,0x40,0x9e,0xaa,0x02,0x40,0xc8,0xa0,0x02,0x40,
+0xaf,0xa1,0x02,0x40,0x04,0xa3,0x02,0x40,0x9e,0xaa,0x02,0x40,0xb0,0xa0,0x02,0x40,
+0xb8,0xa0,0x02,0x40,0x1f,0xa4,0x02,0x40,0x65,0x73,0x70,0x5f,0x61,0x70,0x70,0x74,
+0x72,0x61,0x63,0x65,0x5f,0x6d,0x65,0x6d,0x62,0x75,0x66,0x73,0x5f,0x64,0x6f,0x77,
+0x6e,0x5f,0x62,0x75,0x66,0x66,0x65,0x72,0x5f,0x67,0x65,0x74,0x00,0x73,0x74,0x75,
+0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x63,0x61,0x6c,0x63,0x5f,0x68,0x61,0x73,
+0x68,0x00,0x00,0x00,0x00,0x00,0x04,0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x00,
+0x00,0x00,0x20,0x00,0x00,0x00,0x40,0x00,0x00,0x00,0x80,0x00,0x00,0x00,0x00,0x01,
+0x00,0x00,0x00,0x02,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x04,
+0x00,0x00,0x00,0x08,0x00,0x00,0x00,0x10,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,0x00,
+0x00,0x00,0x00,0x02,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x67,
+0x65,0x74,0x5f,0x73,0x69,0x7a,0x65,0x00,0x73,0x74,0x75,0x62,0x5f,0x63,0x61,0x63,
+0x68,0x65,0x5f,0x69,0x6e,0x69,0x74,0x00,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,
+0x73,0x68,0x5f,0x67,0x65,0x74,0x5f,0x6d,0x61,0x70,0x00,0x73,0x74,0x75,0x62,0x5f,
+0x66,0x6c,0x61,0x73,0x68,0x5f,0x73,0x65,0x74,0x5f,0x62,0x70,0x00,0x73,0x74,0x75,
+0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x63,0x6c,0x65,0x61,0x72,0x5f,0x62,0x70,
+0x00,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x68,0x61,0x6e,0x64,
+0x6c,0x65,0x72,0x00,0x15,0xce,0xfb,0x3f,0x20,0xce,0xfb,0x3f,0x2c,0xce,0xfb,0x3f,
+0x38,0xce,0xfb,0x3f,0x4a,0xce,0xfb,0x3f,0x55,0xce,0xfb,0x3f,0x63,0xce,0xfb,0x3f,
+0x70,0xce,0xfb,0x3f,0x7f,0xce,0xfb,0x3f,0x8a,0xce,0xfb,0x3f,0x9f,0xce,0xfb,0x3f,
+0xaf,0xce,0xfb,0x3f,0x65,0x73,0x70,0x5f,0x61,0x70,0x70,0x74,0x72,0x61,0x63,0x65,
+0x5f,0x6d,0x65,0x6d,0x62,0x75,0x66,0x73,0x5f,0x64,0x6f,0x77,0x6e,0x5f,0x62,0x75,
+0x66,0x66,0x65,0x72,0x5f,0x77,0x72,0x69,0x74,0x65,0x5f,0x6e,0x6f,0x6c,0x6f,0x63,
+0x6b,0x00,0x65,0x73,0x70,0x5f,0x72,0x6f,0x6d,0x5f,0x72,0x65,0x67,0x69,0x32,0x63,
+0x5f,0x77,0x72,0x69,0x74,0x65,0x5f,0x6d,0x61,0x73,0x6b,0x00,
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_image.h 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_image.h
new file mode 100644
index 0000000000..f7013a6fa7
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_image.h
@@ -0,0 +1,17 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#define ESP32S2_STUB_BSS_SIZE 0x000010dUL
+
+#define ESP32S2_STUB_IRAM_ORG 0x040028000UL
+
+#define ESP32S2_STUB_IRAM_LEN 0x000004000UL
+
+#define ESP32S2_STUB_DRAM_ORG 0x03ffbc000UL
+
+#define ESP32S2_STUB_DRAM_LEN 0x000020000UL
+
+#define ESP32S2_STUB_ENTRY_ADDR 0x04002942cUL
+
+#define ESP32S2_STUB_APPTRACE_CTRL_ADDR 0x0
+/*#define ESP32S2_STUB_BUILD_IDF_REV 68e5d9d585
+*/
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_flasher_image_wlog.h 
b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_image_wlog.h
new file mode 100644
index 0000000000..151e05254d
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_flasher_image_wlog.h
@@ -0,0 +1,13 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#define ESP32S2_STUB_WLOG_BSS_SIZE 0x0001118UL
+
+#define ESP32S2_STUB_WLOG_LOG_ADDR 0x03ffbd1b0UL
+
+#define ESP32S2_STUB_WLOG_LOG_SIZE 4100UL
+
+#define ESP32S2_STUB_WLOG_ENTRY_ADDR 0x040029bb4UL
+
+#define ESP32S2_STUB_WLOG_APPTRACE_CTRL_ADDR 0x0
+/*#define ESP32S2_STUB_WLOG_BUILD_IDF_REV 68e5d9d585
+*/
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_rom_chip.h 
b/contrib/loaders/flash/espressif/esp32s2/stub_rom_chip.h
new file mode 100644
index 0000000000..0d60066e69
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_rom_chip.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/***************************************************************************
+ *   ESP32-S2 specific rom header files                                    *
+ *   Copyright (C) 2021 Espressif Systems Ltd.                             *
+ *   Author: Erhan Kurubas <erhan.kuru...@espressif.com>                   *
+ ***************************************************************************/
+#ifndef ESP_STUB_ROM_H
+#define ESP_STUB_ROM_H
+
+#include "esp32s2/rom/ets_sys.h"
+#include "esp32s2/rom/spi_flash.h"
+#include "esp32s2/rom/miniz.h"
+#include "esp32s2/rom/spi_flash.h"
+#include "esp32s2/rom/cache.h"
+#include "esp32s2/rom/efuse.h"
+#include "esp32s2/rom/uart.h"
+#include "esp32s2/rom/rtc.h"
+#include "esp32s2/rom/sha.h"
+#endif
diff --git a/contrib/loaders/flash/espressif/esp32s2/stub_sha.c 
b/contrib/loaders/flash/espressif/esp32s2/stub_sha.c
new file mode 100644
index 0000000000..e81c545c26
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32s2/stub_sha.c
@@ -0,0 +1,32 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+/* Copyright 2021 Espressif Systems (Shanghai) PTE LTD */
+
+#include <string.h>
+#include "stub_rom_chip.h"
+
+static SHA_CTX ctx;
+
+void stub_sha256_start(void)
+{
+       /* Enable SHA hardware */
+       ets_sha_enable();
+       ets_sha_init(&ctx, SHA2_256);
+}
+
+void stub_sha256_data(const void *data, size_t data_len)
+{
+       if (data_len % 4 != 0)
+               return;
+       ets_sha_update(&ctx, data, data_len, false);
+}
+
+void stub_sha256_finish(uint8_t *digest)
+{
+       if (!digest) {
+               bzero(&ctx, sizeof(ctx));
+               return;
+       }
+       ets_sha_finish(&ctx, digest);
+       ets_sha_disable();
+}

-- 

Reply via email to