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/+/8030

-- gerrit

commit f040a8ca545396382b3b67a4467fa832f129e95e
Author: Erhan Kurubas <erhan.kuru...@espressif.com>
Date:   Thu Nov 30 13:19:05 2023 +0100

    loaders/espressif: add esp32c6 stub flasher application code
    
    Special binary program running on the target (ESP32-C6) 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: I7db91a58700195006780a8f9c44354836b8b06f7

diff --git a/contrib/loaders/flash/espressif/esp32c6/Makefile 
b/contrib/loaders/flash/espressif/esp32c6/Makefile
new file mode 100644
index 0000000000..77207c9dfc
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/Makefile
@@ -0,0 +1,41 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+# Makefile to compile flasher stub program
+# Copyright (C) 2022 Espressif Systems Ltd.
+
+# Prefix for ESP32-C6 cross compilers (can include a directory path)
+CROSS ?= riscv32-esp-elf-
+
+# Path to the esp-idf root dir
+IDF_PATH ?= ../..
+
+STUB_ARCH := riscv
+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 := ESP32C6
+
+SRCS := $(IDF_PATH)/components/esp_hw_support/port/esp32c6/rtc_clk_init.c \
+               $(IDF_PATH)/components/esp_hw_support/port/esp32c6/rtc_clk.c \
+               $(IDF_PATH)/components/esp_hw_support/port/esp32c6/rtc_time.c \
+               $(IDF_PATH)/components/app_trace/port/$(STUB_ARCH)/port.c
+
+CFLAGS := -std=gnu17
+
+INCLUDES := -I$(IDF_PATH)/components/soc/esp32c6/include 
-I$(IDF_PATH)/components/riscv/include \
+       -I$(IDF_PATH)/components/hal/esp32c6/include \
+       -I$(IDF_PATH)/components/esp32c6/include \
+       -I$(IDF_PATH)/components/esp_hw_support/port/esp32c6/private_include \
+       -I$(IDF_PATH)/components/esp_rom/include/esp32c6 \
+       -I$(IDF_PATH)/components/esp_hw_support/port/esp32c6 \
+       -I$(IDF_PATH)/components/spi_flash/include \
+       -I$(IDF_PATH)/components/esp_rom/esp32c6
+
+DEFINES :=
+
+LDFLAGS += -T$(IDF_PATH)/components/esp_rom/esp32c6/ld/esp32c6.rom.ld 
-T$(IDF_PATH)/components/esp_rom/esp32c6/ld/esp32c6.rom.newlib.ld \
+               -T$(IDF_PATH)/components/esp_rom/esp32c6/ld/esp32c6.rom.api.ld
+
+include ../stub_common.mk
diff --git a/contrib/loaders/flash/espressif/esp32c6/sdkconfig.h 
b/contrib/loaders/flash/espressif/esp32c6/sdkconfig.h
new file mode 100644
index 0000000000..dde51528bb
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/sdkconfig.h
@@ -0,0 +1,39 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#ifndef _STUB_SDKCONFIG_H_
+#define _STUB_SDKCONFIG_H_
+
+#define CONFIG_IDF_TARGET_ARCH_RISCV    1
+#define CONFIG_IDF_TARGET_ESP32C6       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 16384
+#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_ESP32C6_DEFAULT_CPU_FREQ_MHZ     160
+/* Unused by stub, just for compilation of IDF */
+#define CONFIG_PARTITION_TABLE_OFFSET           0x8000
+#define CONFIG_MMU_PAGE_SIZE                    0x10000        /* 64KB */
+#define CONFIG_HAL_DEFAULT_ASSERTION_LEVEL      0 /* no assert in the hal 
functions */
+
+#define CONFIG_FREERTOS_TASK_NOTIFICATION_ARRAY_ENTRIES 1
+
+#endif /*_STUB_SDKCONFIG_H_ */
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub.ld 
b/contrib/loaders/flash/espressif/esp32c6/stub.ld
new file mode 100644
index 0000000000..d92cfb5d69
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub.ld
@@ -0,0 +1,19 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/***************************************************************************
+ *   LD script for ESP32-C6 flasher stub                                   *
+ *   Copyright (C) 2022 Espressif Systems Ltd.                             *
+ *   Author: Alexey Gerenkov <ale...@espressif.com>                        *
+ *                                                                         *
+ ***************************************************************************/
+
+MEMORY {
+  /* Place sections by starting from the HPSRAM. ESP32-C6 has unified i/d bus
+     0x40800000 - code (OpenOCD workarea address)
+        0x40804000 - data
+  */
+  iram : org = 0x40800000, len = 0x4000
+  dram : org = 0x40804000, len = 0x20000
+}
+
+INCLUDE stub_common.ld
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_chip.c 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_chip.c
new file mode 100644
index 0000000000..a6c0bb7e5b
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_chip.c
@@ -0,0 +1,541 @@
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+/***************************************************************************
+ *   ESP32-C6 specific flasher stub functions                              *
+ *   Copyright (C) 2022 Espressif Systems Ltd.                             *
+ ***************************************************************************/
+#include <string.h>
+#include "sdkconfig.h"
+#include "soc/rtc.h"
+#include "soc/efuse_periph.h"
+#include "soc/spi_mem_reg.h"
+#include "soc/extmem_reg.h"
+#include "soc/gpio_reg.h"
+#include "soc/system_reg.h"
+#include "hal/mmu_ll.h"
+#include "soc/pcr_reg.h"
+#include "esp_app_trace_membufs_proto.h"
+#include "esp_rom_efuse.h"
+#include "stub_rom_chip.h"
+#include "stub_logger.h"
+#include "stub_flasher_int.h"
+#include "stub_flasher_chip.h"
+#include "stub_flasher.h"
+
+/* RTC related definitios */
+#define PCR_SOC_CLK_MAX              1 // CPU_CLK frequency is 160 MHz (source 
is PLL_CLK)
+
+/* Cache MMU related definitions */
+#define STUB_CACHE_CTRL_REG                     EXTMEM_L1_CACHE_CTRL_REG
+#define STUB_CACHE_BUS                          (EXTMEM_L1_CACHE_SHUT_DBUS | 
EXTMEM_L1_CACHE_SHUT_IBUS)
+#define STUB_MMU_DROM_PAGES_END                                        
MMU_ENTRY_NUM
+#define STUB_MMU_DROM_PAGES_START                              
(STUB_MMU_DROM_PAGES_END - 8) /* 8 pages will be more than enough */
+
+#define ESP_APPTRACE_RISCV_BLOCK_LEN_MSK                0x7FFFUL
+#define ESP_APPTRACE_RISCV_BLOCK_LEN(_l_)               ((_l_) & 
ESP_APPTRACE_RISCV_BLOCK_LEN_MSK)
+#define ESP_APPTRACE_RISCV_BLOCK_LEN_GET(_v_)           ((_v_) & 
ESP_APPTRACE_RISCV_BLOCK_LEN_MSK)
+#define ESP_APPTRACE_RISCV_BLOCK_ID_MSK                 0x7FUL
+#define ESP_APPTRACE_RISCV_BLOCK_ID(_id_)               (((_id_) & 
ESP_APPTRACE_RISCV_BLOCK_ID_MSK) << 15)
+#define ESP_APPTRACE_RISCV_BLOCK_ID_GET(_v_)            (((_v_) >> 15) & 
ESP_APPTRACE_RISCV_BLOCK_ID_MSK)
+#define ESP_APPTRACE_RISCV_HOST_DATA                    (BIT(22))
+#define ESP_APPTRACE_RISCV_HOST_CONNECT                 (BIT(23))
+
+/** RISCV memory host iface control block */
+typedef struct {
+       uint32_t ctrl;
+       /* - Guard field. If this register is not zero then CPU is changing 
this struct and */
+       /*   this guard field holds address of the instruction which 
application will execute when
+        * CPU finishes with those modifications. */
+       uint32_t stat;
+       esp_apptrace_mem_block_t *mem_blocks;
+} esp_apptrace_riscv_ctrl_block_t;
+
+static esp_apptrace_riscv_ctrl_block_t *s_apptrace_ctrl;
+#if CONFIG_STUB_STACK_DATA_POOL_SIZE > 0
+static uint8_t *s_stack_data_pool;
+static size_t s_stack_data_pool_sz;
+#endif
+
+/* 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;
+       /* Virtual addr */
+       uint32_t vaddr_start;
+};
+
+typedef struct {
+       mmu_page_size_t page_size;
+       uint32_t vaddr0_start_addr;
+       uint32_t drom_page_start;
+       uint32_t drom_page_end;
+       int shift_count;
+} cache_mmu_config_t;
+
+static cache_mmu_config_t s_cache_mmu_config;
+
+extern void spi_flash_attach(uint32_t ishspi, bool legacy);
+
+uint32_t g_stub_cpu_freq_hz = CONFIG_ESP32C6_DEFAULT_CPU_FREQ_MHZ * MHZ;
+
+void vPortEnterCritical(void)
+{
+}
+
+void vPortExitCritical(void)
+{
+}
+
+int xPortInIsrContext(void)
+{
+       return 0;
+}
+
+void *esp_apptrace_uart_hw_get(int num, void **data)
+{
+       return NULL;
+}
+
+#if STUB_LOG_ENABLE == 1
+void stub_print_cache_mmu_registers(void)
+{
+}
+#endif
+
+static inline uint32_t __attribute__((always_inline)) 
stub_mmu_hal_pages_to_bytes(uint32_t page_num)
+{
+       return page_num << s_cache_mmu_config.shift_count;
+}
+
+static inline uint32_t __attribute__((always_inline)) 
stub_mmu_ll_format_paddr(uint32_t paddr)
+{
+       return paddr >> s_cache_mmu_config.shift_count;
+}
+
+#define STUB_MMU_VADDR_MASK (s_cache_mmu_config.page_size * 
MMU_MAX_PADDR_PAGE_NUM - 1)
+static inline uint32_t __attribute__((always_inline)) 
stub_mmu_ll_get_entry_id(uint32_t vaddr)
+{
+       return (vaddr & STUB_MMU_VADDR_MASK) >> s_cache_mmu_config.shift_count;
+}
+
+static inline void __attribute__((always_inline)) 
stub_mmu_ll_write_entry(uint32_t entry_id, uint32_t mmu_val)
+{
+       uint32_t mmu_raw_value;
+
+       if (stub_get_flash_encryption_mode() != ESP_FLASH_ENC_MODE_DISABLED)
+               mmu_val |= MMU_SENSITIVE;
+
+       mmu_raw_value = mmu_val | MMU_VALID;
+       REG_WRITE(SPI_MEM_MMU_ITEM_INDEX_REG(0), entry_id);
+       REG_WRITE(SPI_MEM_MMU_ITEM_CONTENT_REG(0), mmu_raw_value);
+}
+
+static inline void __attribute__((always_inline)) 
stub_mmu_ll_set_entry_invalid(uint32_t entry_id)
+{
+       REG_WRITE(SPI_MEM_MMU_ITEM_INDEX_REG(0), entry_id);
+       REG_WRITE(SPI_MEM_MMU_ITEM_CONTENT_REG(0), MMU_INVALID);
+}
+
+static inline int __attribute__((always_inline)) 
stub_mmu_ll_read_entry(uint32_t entry_id)
+{
+       uint32_t mmu_raw_value;
+       REG_WRITE(SPI_MEM_MMU_ITEM_INDEX_REG(0), entry_id);
+       mmu_raw_value = REG_READ(SPI_MEM_MMU_ITEM_CONTENT_REG(0));
+
+       if (stub_get_flash_encryption_mode() != ESP_FLASH_ENC_MODE_DISABLED)
+               mmu_raw_value &= ~MMU_SENSITIVE;
+
+       return  mmu_raw_value;
+}
+
+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",
+               rom_spiflash_legacy_data->chip.device_id,
+               rom_spiflash_legacy_data->chip.chip_size,
+               rom_spiflash_legacy_data->chip.block_size,
+               rom_spiflash_legacy_data->chip.sector_size,
+               rom_spiflash_legacy_data->chip.page_size,
+               rom_spiflash_legacy_data->chip.status_mask);
+       WRITE_PERI_REG(PERIPHS_SPI_FLASH_C0, 0);        /* clear register */
+       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 invalidate the
+        * whole ICache */
+       Cache_Invalidate_ICache_All();
+}
+
+void stub_cache_configure(void)
+{
+       s_cache_mmu_config.page_size = mmu_ll_get_page_size(0);
+       s_cache_mmu_config.drom_page_start = STUB_MMU_DROM_PAGES_START;
+       s_cache_mmu_config.drom_page_end = STUB_MMU_DROM_PAGES_END;     /* 256 
*/
+
+       switch (s_cache_mmu_config.page_size) {
+       case MMU_PAGE_64KB:
+               s_cache_mmu_config.shift_count = 16;
+               break;
+       case MMU_PAGE_32KB:
+               s_cache_mmu_config.shift_count = 15;
+               break;
+       case MMU_PAGE_16KB:
+               s_cache_mmu_config.shift_count = 14;
+               break;
+       case MMU_PAGE_8KB:
+               s_cache_mmu_config.shift_count = 13;
+               break;
+       default:
+               STUB_LOGE("Unknown page size!");
+               return;
+       }
+
+       s_cache_mmu_config.vaddr0_start_addr = SOC_DROM_LOW +
+               (s_cache_mmu_config.drom_page_start * 
s_cache_mmu_config.page_size);
+
+       STUB_LOGI("MMU page size:%X drom_page_start:%d drom_page_end:%d 
vaddr0_start_addr:%X\n",
+               s_cache_mmu_config.page_size,
+               s_cache_mmu_config.drom_page_start,
+               s_cache_mmu_config.drom_page_end,
+               s_cache_mmu_config.vaddr0_start_addr);
+}
+
+void stub_cache_init(void)
+{
+       STUB_LOGD("%s\n", __func__);
+
+       SET_PERI_REG_MASK(PCR_CACHE_CONF_REG, PCR_CACHE_CLK_EN_M);
+       SET_PERI_REG_MASK(PCR_CACHE_CONF_REG, PCR_CACHE_RST_EN_M);
+       CLEAR_PERI_REG_MASK(PCR_CACHE_CONF_REG, PCR_CACHE_RST_EN_M);
+
+       REG_CLR_BIT(STUB_CACHE_CTRL_REG, STUB_CACHE_BUS);
+       mmu_ll_set_page_size(0, CONFIG_MMU_PAGE_SIZE);
+       Cache_MMU_Init();
+       Cache_Enable_ICache(0);
+}
+
+static bool stub_is_cache_enabled(void)
+{
+       int cache_ctrl_reg = REG_READ(STUB_CACHE_CTRL_REG);
+       STUB_LOGD("cache_ctrl_reg:%X MMU_VALID:%x\n", cache_ctrl_reg, 
MMU_VALID);
+
+       /* if any of the entry is valid and busses are enabled  we can consider 
that cache is enabled */
+       for (int i = 0; i < MMU_ENTRY_NUM; ++i) {
+               uint32_t mmu_raw_value = stub_mmu_ll_read_entry(i);
+               if ((mmu_raw_value & MMU_VALID) == MMU_VALID)
+                       return !(cache_ctrl_reg & STUB_CACHE_BUS);
+       }
+       return false;
+}
+
+void stub_flash_state_prepare(struct stub_flash_state *state)
+{
+       const uint32_t spiconfig = 0;   /* esp_rom_efuse_get_flash_gpio_info(); 
*/
+
+       state->cache_enabled = stub_is_cache_enabled();
+       if (!state->cache_enabled) {
+               STUB_LOGI("Cache needs to be enabled\n");
+               stub_cache_init();
+       }
+       spi_flash_attach(spiconfig, false);
+       stub_cache_configure();
+}
+
+void stub_flash_state_restore(struct stub_flash_state *state)
+{
+       /* we do not disable or store the cache settings. So, nothing to 
restore*/
+}
+
+int stub_cpu_clock_configure(int conf_reg_val)
+{
+       uint32_t pcr_sysclk_conf_reg = 0;
+
+       /* set to maximum possible value */
+       if (conf_reg_val == -1) {
+               pcr_sysclk_conf_reg = REG_READ(PCR_SYSCLK_CONF_REG);
+               REG_WRITE(PCR_SYSCLK_CONF_REG,
+                       (pcr_sysclk_conf_reg & ~PCR_SOC_CLK_SEL_M) | 
(PCR_SOC_CLK_MAX << PCR_SOC_CLK_SEL_S));
+       } else { // restore old value
+               pcr_sysclk_conf_reg = conf_reg_val;
+               REG_WRITE(PCR_SYSCLK_CONF_REG,
+                       (REG_READ(PCR_SYSCLK_CONF_REG) & ~PCR_SOC_CLK_SEL_M) | 
(pcr_sysclk_conf_reg & PCR_SOC_CLK_SEL_M));
+       }
+
+       STUB_LOGD("pcr_sysclk_conf_reg %x\n", pcr_sysclk_conf_reg);
+
+       return pcr_sysclk_conf_reg;
+}
+
+#if STUB_LOG_ENABLE == 1
+extern uint32_t ets_clk_get_xtal_freq(void);
+void stub_uart_console_configure(int dest)
+{
+       /* set the default parameter to UART module, but don't enable RX 
interrupt */
+       uartAttach(NULL);
+       /* first enable uart0 as printf channel */
+       uint32_t clock = ets_clk_get_xtal_freq();
+       ets_update_cpu_frequency(clock / 1000000);
+
+       Uart_Init(0, APB_CLK_FREQ_ROM);
+       /* install to print later
+        * Non-Flash Boot can print
+        * Flash Boot can print when RTC_CNTL_STORE4_REG bit0 is 0 (can be 1 
after deep sleep, software reset)
+        * and printf boot.
+        * print boot determined by GPIO and efuse, see ets_is_print_boot
+        */
+       ets_install_uart_printf();
+}
+#endif
+
+uint32_t stub_esp_clk_cpu_freq(void)
+{
+       return CONFIG_ESP32C6_DEFAULT_CPU_FREQ_MHZ * 1000000;
+}
+
+/* override apptrace control block advertising func, IDF's implementation 
issues syscall */
+int esp_apptrace_advertise_ctrl_block(void *ctrl_block_addr)
+{
+       s_apptrace_ctrl = ctrl_block_addr;
+       return 0;
+}
+
+#if CONFIG_STUB_STACK_DATA_POOL_SIZE > 0
+void stub_stack_data_pool_init(uint8_t *data, size_t sz)
+{
+       STUB_LOGD("stack data pool %lu bytes @ 0x%x\n", sz, data);
+       s_stack_data_pool = data;
+       s_stack_data_pool_sz = sz;
+}
+
+void esp_apptrace_get_up_buffers(esp_apptrace_mem_block_t mem_blocks_cfg[2])
+{
+       /* use whole stack data pool for apptrace up buffers */
+       mem_blocks_cfg[0].start = s_stack_data_pool;
+       mem_blocks_cfg[0].sz = s_stack_data_pool_sz / 2;
+       mem_blocks_cfg[1].start = s_stack_data_pool + mem_blocks_cfg[0].sz;
+       mem_blocks_cfg[1].sz = mem_blocks_cfg[0].sz;
+}
+#endif
+
+int stub_apptrace_prepare(void)
+{
+       /* imply that host is auto-connected */
+       s_apptrace_ctrl->ctrl |= ESP_APPTRACE_RISCV_HOST_CONNECT;
+       return ESP_STUB_ERR_OK;
+}
+
+int64_t esp_timer_get_time(void)
+{
+       /*
+               This function is used by apptrace code to implement timeouts.
+               unfortunately esp32c6 does not support CPU cycle counter, so we 
have two options:
+               1) Use some HW timer. It can be hard, because we need to ensure 
that it is initialized and
+               possibly restore its state.
+               2) Emulate timer by incrementing some var on every call.
+               Stub flasher uses ESP_APPTRACE_TMO_INFINITE only, so this 
function won't be called by apptrace at all.
+       */
+       return 0;
+}
+
+uint64_t stub_get_time(void)
+{
+       /* this function is used for perf measurements only.
+               unfortunately esp32c6 does not support CPU cycle counter and 
usage of HW timer is problematic */
+       return 0;
+}
+
+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) > rom_spiflash_legacy_data->chip.chip_size)
+               return ESP_ROM_SPIFLASH_RESULT_ERR;
+
+       /* start_addr is aligned as sector boundary */
+       if (0 != (start_addr % rom_spiflash_legacy_data->chip.sector_size))
+               return ESP_ROM_SPIFLASH_RESULT_ERR;
+
+       /* Unlock flash to enable erase */
+       if (esp_rom_spiflash_unlock(/*&rom_spiflash_legacy_data->chip*/) != 
ESP_ROM_SPIFLASH_RESULT_OK)
+               return ESP_ROM_SPIFLASH_RESULT_ERR;
+
+       sector_no = start_addr / rom_spiflash_legacy_data->chip.sector_size;
+       sector_num_per_block = rom_spiflash_legacy_data->chip.block_size / 
rom_spiflash_legacy_data->chip.sector_size;
+       total_sector_num = (0 == (area_len % 
rom_spiflash_legacy_data->chip.sector_size)) ?
+               area_len / rom_spiflash_legacy_data->chip.sector_size :
+               1 + (area_len / rom_spiflash_legacy_data->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 s_mode = ESP_FLASH_ENC_MODE_DEVELOPMENT;
+       static bool s_first = true;
+
+       if (s_first) {
+               if (!esp_flash_encryption_enabled())
+                       s_mode = ESP_FLASH_ENC_MODE_DISABLED;
+               s_first = false;
+               STUB_LOGD("flash_encryption_mode: %d\n", s_mode);
+       }
+       return s_mode;
+}
+
+static void stub_mmu_hal_map_region(uint32_t vaddr, uint32_t paddr, uint32_t 
len)
+{
+       uint32_t page_size_in_bytes = stub_mmu_hal_pages_to_bytes(1);
+       uint32_t page_num = (len + page_size_in_bytes - 1) / page_size_in_bytes;
+       uint32_t entry_id = 0;
+       uint32_t mmu_val = stub_mmu_ll_format_paddr(paddr);     /* This is the 
physical address in the format that MMU
+                                                                * supported */
+
+       while (page_num) {
+               entry_id = stub_mmu_ll_get_entry_id(vaddr);
+               stub_mmu_ll_write_entry(entry_id, mmu_val);
+               Cache_Invalidate_Addr(vaddr, page_size_in_bytes);
+               STUB_LOGD("mmap page_num:%d entry_id:%d vaddr:%x mmu_val:%x 
size:%d page_size_in_bytes:%x\n",
+                       page_num, entry_id, vaddr, mmu_val, len, 
page_size_in_bytes);
+               vaddr += page_size_in_bytes;
+               mmu_val++;
+               page_num--;
+       }
+}
+
+static void stub_mmu_hal_unmap_region(uint32_t vaddr, uint32_t len)
+{
+       uint32_t page_size_in_bytes = stub_mmu_hal_pages_to_bytes(1);
+       uint32_t page_num = (len + page_size_in_bytes - 1) / page_size_in_bytes;
+       uint32_t entry_id = 0;
+
+       while (page_num) {
+               entry_id = stub_mmu_ll_get_entry_id(vaddr);
+               stub_mmu_ll_set_entry_invalid(entry_id);
+               STUB_LOGD("unmap page_num:%d entry_id:%d vaddr:%x 
page_size_in_bytes:%x\n",
+                       page_num, entry_id, vaddr, page_size_in_bytes);
+               vaddr += page_size_in_bytes;
+               page_num--;
+       }
+}
+
+static int stub_flash_mmap(struct spiflash_map_req *req)
+{
+       uint32_t map_src = req->src_addr & (~(s_cache_mmu_config.page_size - 
1));       /* start of the page */
+       uint32_t map_size = req->src_addr - map_src + req->size;
+       uint32_t saved_state = Cache_Suspend_ICache();
+
+       req->vaddr_start = s_cache_mmu_config.vaddr0_start_addr;
+       req->ptr = (void *)req->vaddr_start + req->src_addr - map_src;
+
+       STUB_LOGD("map_ptr: %x size:%d req->src_addr:%x map_src:%x 
map_size:%x\n",
+               req->ptr, req->size, req->src_addr, map_src, map_size);
+
+       stub_mmu_hal_map_region(req->vaddr_start, req->src_addr, map_size);
+
+       REG_CLR_BIT(STUB_CACHE_CTRL_REG, STUB_CACHE_BUS);
+
+       Cache_Resume_ICache(saved_state);
+
+       return 0;
+}
+
+static void stub_flash_ummap(const struct spiflash_map_req *req)
+{
+       uint32_t map_src = req->src_addr & (~(s_cache_mmu_config.page_size - 
1));       /* start of the page */
+       uint32_t map_size = req->src_addr - map_src + req->size;
+       uint32_t saved_state = Cache_Suspend_ICache();
+       stub_mmu_hal_unmap_region(req->vaddr_start, map_size);
+       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/esp32c6/stub_flasher_chip.h 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_chip.h
new file mode 100644
index 0000000000..2a26806a96
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_chip.h
@@ -0,0 +1,47 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/***************************************************************************
+ *   ESP32-C6 flasher stub definitions                                     *
+ *   Copyright (C) 2022 Espressif Systems Ltd.                             *
+ ***************************************************************************/
+#ifndef ESP32C6_FLASHER_STUB_H
+#define ESP32C6_FLASHER_STUB_H
+
+#include "sdkconfig.h"
+
+#ifndef SOC_MMU_PAGE_SIZE
+#define SOC_MMU_PAGE_SIZE CONFIG_MMU_PAGE_SIZE
+#endif
+
+#define STUB_FLASH_SECTOR_SIZE  0x1000
+/* Flash geometry constants */
+#define STUB_FLASH_BLOCK_SIZE   0x10000
+#define STUB_FLASH_PAGE_SIZE    0x100
+#define STUB_FLASH_STATUS_MASK  0xFFFF
+
+struct stub_flash_state {
+       uint32_t cache_flags[2];
+       bool cache_enabled;
+};
+
+#define ESP_APPTRACE_USR_DATA_LEN_MAX   (CONFIG_APPTRACE_BUF_SIZE - 2)
+#define RISCV_EBREAK    0x9002
+
+extern bool ets_efuse_flash_octal_mode(void);
+
+uint32_t stub_esp_clk_cpu_freq(void);
+
+static inline uint8_t stub_get_insn_size(uint8_t *insn)
+{
+       /* we use 16bit `c.ebreak`. it works perfectly with either 32bit and 
16bit code */
+       return 2;
+}
+
+static inline uint32_t stub_get_break_insn(uint8_t insn_sz)
+{
+       return RISCV_EBREAK;
+}
+
+void stub_stack_data_pool_init(uint8_t *data, size_t sz);
+
+#endif /*ESP32C6_FLASHER_STUB_H */
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_code.inc 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_code.inc
new file mode 100644
index 0000000000..e7ca350f1b
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_code.inc
@@ -0,0 +1,328 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc7,0x83,0xd7,0xc5,0xff,0x01,0x45,0x23,0x9f,
+0xf5,0xfe,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,
+0x81,0xcb,0x50,0xd5,0x10,0xd5,0x23,0x28,0x05,0x02,0x4c,0xd1,0x23,0x2a,0x05,0x02,
+0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xe7,0x13,0x05,0x30,0x10,0x82,0x80,
+0x01,0x45,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xcb,0xb7,0x47,0x80,0x40,
+0x03,0xa5,0x47,0x14,0x5d,0x81,0x05,0x89,0x82,0x80,0x01,0x45,0x82,0x80,0xb7,0x47,
+0x80,0x40,0x23,0xa4,0x07,0x14,0x82,0x80,0xb7,0x47,0x80,0x40,0x37,0x07,0x80,0x40,
+0x93,0x87,0x47,0x14,0x13,0x07,0x67,0x06,0xd8,0xc3,0x98,0x43,0xb7,0x07,0x80,0x00,
+0xf9,0x8f,0x9d,0xc3,0x93,0x57,0xf7,0x00,0xa9,0x8f,0x46,0x07,0x93,0xf7,0xf7,0x07,
+0x45,0x83,0xd9,0x8f,0x01,0x45,0x99,0xcb,0x41,0x11,0x06,0xc6,0xc9,0x37,0xb2,0x40,
+0x13,0x05,0x10,0x10,0x41,0x01,0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0x37,0x47,
+0x80,0x40,0x13,0x07,0x47,0x14,0x14,0x43,0xb7,0x07,0x80,0x00,0xc6,0x05,0xf5,0x8f,
+0xc5,0x81,0xb7,0x86,0x3f,0x00,0x3e,0x05,0x41,0x11,0x75,0x8d,0xcd,0x8f,0x06,0xc6,
+0xc9,0x8f,0x1c,0xc3,0x69,0x37,0xb2,0x40,0x01,0x45,0x41,0x01,0x82,0x80,0x01,0x45,
+0x82,0x80,0xb7,0x47,0x80,0x40,0x03,0xa5,0x47,0x14,0x59,0x81,0x05,0x89,0x82,0x80,
+0xb7,0x37,0x00,0x60,0x23,0xac,0x07,0x04,0x37,0x07,0x00,0x10,0x98,0xc3,0x88,0x43,
+0x7d,0xfd,0xbc,0x4f,0x13,0x07,0x70,0x02,0xc1,0x83,0x93,0xf7,0xf7,0x0f,0xb9,0x17,
+0x63,0x69,0xf7,0x00,0x37,0x47,0x80,0x40,0x8a,0x07,0x13,0x07,0xc7,0x09,0xba,0x97,
+0x88,0x43,0x82,0x80,0xb7,0x46,0x80,0x40,0x83,0xc7,0x06,0x14,0x85,0xc3,0xb7,0x17,
+0x0b,0x60,0x83,0xa7,0x47,0x83,0x01,0x47,0xc9,0x83,0x9d,0x8b,0x89,0xef,0x09,0xe7,
+0xb7,0x47,0x80,0x40,0x23,0xae,0x07,0x12,0x23,0x80,0x06,0x14,0xb7,0x47,0x80,0x40,
+0x03,0xa5,0xc7,0x13,0x82,0x80,0x13,0xf6,0x17,0x00,0x19,0xc2,0x13,0x47,0x17,0x00,
+0x85,0x83,0xe9,0xbf,0x01,0x11,0x22,0xcc,0x37,0x44,0x80,0x40,0x93,0x07,0x44,0x14,
+0xdc,0x4b,0x26,0xca,0x06,0xce,0xaa,0x84,0x2e,0x86,0x13,0x04,0x44,0x14,0x81,0xcb,
+0xdc,0x4b,0x91,0xc7,0x2e,0xc6,0xaa,0x85,0x08,0x4c,0x82,0x97,0x32,0x46,0x5c,0x4c,
+0x91,0xcb,0xdc,0x4b,0x81,0xcb,0x08,0x50,0x62,0x44,0xf2,0x40,0xa6,0x85,0xd2,0x44,
+0x05,0x61,0x82,0x87,0xf2,0x40,0x62,0x44,0xd2,0x44,0x05,0x61,0x82,0x80,0x1c,0x41,
+0xb9,0xc3,0xb7,0x47,0x80,0x40,0x83,0xc7,0xc7,0x26,0xaa,0x85,0x01,0x45,0x95,0xcf,
+0xb7,0x47,0x80,0x40,0x93,0x87,0x47,0x14,0xc8,0x4b,0x05,0xc9,0x18,0x4d,0x01,0x45,
+0x0d,0xc7,0x88,0x4f,0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,
+0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,
+0xb2,0x50,0x45,0x61,0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0x31,0xc5,0xb7,0x47,
+0x80,0x40,0x83,0xc7,0xc7,0x26,0xaa,0x85,0x13,0x05,0x30,0x10,0xa9,0xc3,0xb7,0x47,
+0x80,0x40,0x93,0x87,0x47,0x14,0xd8,0x4b,0x13,0x05,0x60,0x10,0x0d,0xcb,0x14,0x4f,
+0x9d,0xc6,0x58,0x4f,0x88,0x4f,0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,
+0x06,0xd6,0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,
+0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80,0x13,0x05,0x20,0x10,0x82,0x80,0x82,0x80,
+0x39,0xc1,0xb7,0x47,0x80,0x40,0x83,0xc7,0xc7,0x26,0xaa,0x85,0x01,0x45,0x95,0xcf,
+0xb7,0x47,0x80,0x40,0x93,0x87,0x47,0x14,0xc8,0x4b,0x05,0xc9,0x58,0x41,0x01,0x45,
+0x0d,0xc7,0x88,0x4f,0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,
+0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,
+0xb2,0x50,0x45,0x61,0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0x29,0xc5,0xb7,0x47,
+0x80,0x40,0x83,0xc7,0xc7,0x26,0xaa,0x85,0x13,0x05,0x30,0x10,0xa1,0xc3,0xb7,0x47,
+0x80,0x40,0x93,0x87,0x47,0x14,0xd8,0x4b,0x13,0x05,0x60,0x10,0x05,0xcb,0x18,0x47,
+0x15,0xc7,0x88,0x4f,0x79,0x71,0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,
+0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,
+0xb2,0x50,0x45,0x61,0x82,0x80,0x13,0x05,0x20,0x10,0x82,0x80,0x82,0x80,0xb7,0x47,
+0x80,0x40,0x83,0xc7,0xc7,0x26,0x13,0x05,0x30,0x10,0x8d,0xcf,0xb7,0x47,0x80,0x40,
+0x93,0x87,0x47,0x14,0xd8,0x4b,0x13,0x05,0x60,0x10,0x0d,0xc7,0x18,0x4b,0x1d,0xc3,
+0x79,0x71,0x01,0x45,0x2a,0xc4,0x2a,0xcc,0x88,0x4f,0x81,0x45,0x7d,0x56,0xfd,0x56,
+0x06,0xd6,0x2e,0xc6,0x2e,0xce,0x32,0xc8,0x36,0xca,0x2c,0x00,0x02,0x97,0xb2,0x50,
+0x45,0x61,0x82,0x80,0x82,0x80,0x03,0x47,0x05,0x00,0x1d,0xef,0xb7,0x47,0x80,0x40,
+0x23,0x26,0x05,0x02,0x83,0xa6,0x87,0x27,0xb7,0x47,0x80,0x40,0x23,0x24,0x05,0x02,
+0x83,0xa7,0x47,0x27,0x23,0x28,0x05,0x02,0x23,0x2a,0x05,0x02,0x85,0x83,0x23,0x26,
+0x05,0x00,0x54,0xc9,0x23,0x28,0x05,0x00,0xbe,0x96,0x23,0x22,0x05,0x02,0x1c,0xcd,
+0x54,0xcd,0x1c,0xd1,0x23,0x24,0x05,0x00,0x13,0x67,0x17,0x00,0xb7,0x47,0x80,0x40,
+0x23,0x00,0xe5,0x00,0x93,0x87,0x47,0x14,0x51,0x05,0x37,0x47,0x80,0x40,0x88,0xc7,
+0x23,0x2e,0xf7,0x26,0x01,0x45,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x52,0xc4,
+0x06,0xce,0x4a,0xc8,0x4e,0xc6,0x56,0xc2,0x5a,0xc0,0x2a,0x84,0xae,0x84,0x7d,0x5a,
+0x1c,0x40,0x03,0x29,0x44,0x00,0x48,0x40,0x9c,0x43,0x82,0x97,0xaa,0x89,0x63,0x12,
+0x05,0x12,0x93,0x44,0xf9,0xff,0x85,0x88,0x93,0x97,0x24,0x00,0xa2,0x97,0x23,0xa4,
+0x07,0x00,0x5c,0x40,0x26,0x85,0x89,0x04,0x85,0x07,0x5c,0xc0,0x1c,0x40,0x8e,0x04,
+0xa2,0x94,0xdc,0x43,0x82,0x97,0x1c,0x40,0x83,0xaa,0x04,0x00,0xdc,0x47,0x82,0x97,
+0x61,0xc5,0x03,0xdb,0x0a,0x00,0x63,0x01,0x0b,0x0c,0x01,0x4a,0x58,0x54,0x1c,0x58,
+0x63,0xe7,0xe7,0x04,0x54,0x50,0x18,0x58,0xb3,0x87,0xe6,0x40,0x63,0x84,0xe6,0x0a,
+0x58,0x54,0x19,0xe3,0xfd,0x17,0xd9,0xcf,0xb3,0x04,0x4b,0x41,0x63,0xf3,0x97,0x00,
+0xbe,0x84,0x18,0x58,0x54,0x54,0x1c,0x58,0x08,0x50,0x63,0xe0,0xd7,0x06,0x1c,0x58,
+0x54,0x50,0xa6,0x97,0x63,0xe1,0xd7,0x06,0x5c,0x54,0xb9,0xc7,0x1c,0x58,0x54,0x50,
+0xa6,0x97,0x63,0x9b,0xd7,0x00,0x23,0x28,0x04,0x02,0x3a,0x95,0x2d,0xa8,0x5c,0x54,
+0x18,0x58,0xfd,0x17,0x99,0x8f,0xc1,0xb7,0x5c,0x54,0xfd,0x17,0x63,0xe6,0x97,0x02,
+0x1c,0x58,0x1c,0xd4,0x23,0x28,0x04,0x02,0x58,0x54,0x1c,0x54,0x63,0x1a,0xf7,0x00,
+0x23,0x26,0x04,0x02,0x18,0x54,0x5c,0x50,0x63,0x74,0xf7,0x00,0x5c,0x50,0x1c,0xd4,
+0x1c,0x58,0xa6,0x97,0x1c,0xd8,0x01,0xed,0x01,0xa0,0x5c,0x54,0x14,0x58,0xfd,0x17,
+0x95,0x8f,0xe3,0xeb,0x97,0xfe,0x1c,0x58,0xa6,0x97,0x1c,0xd8,0x7d,0xb7,0x93,0x05,
+0x2a,0x00,0x26,0x86,0xd6,0x95,0x26,0x9a,0x97,0x00,0x80,0xff,0xe7,0x80,0x40,0x00,
+0xe3,0x66,0x6a,0xf5,0x23,0x90,0x0a,0x00,0x1c,0x40,0x13,0x79,0x19,0x00,0x0a,0x09,
+0x22,0x99,0x48,0x40,0x9c,0x47,0x83,0x25,0x89,0x00,0x82,0x97,0xf2,0x40,0x62,0x44,
+0xd2,0x44,0x42,0x49,0x22,0x4a,0x92,0x4a,0x02,0x4b,0x4e,0x85,0xb2,0x49,0x05,0x61,
+0x82,0x80,0x90,0x44,0xd4,0x44,0x63,0x14,0x46,0x01,0xe3,0x83,0x46,0xed,0x98,0x40,
+0xdc,0x40,0xb3,0x05,0xe0,0x40,0xb3,0x07,0xf0,0x40,0x33,0x37,0xe0,0x00,0x99,0x8f,
+0x8c,0xc8,0xdc,0xc8,0xe3,0xc6,0xd7,0xea,0x63,0x94,0xf6,0x00,0xe3,0xe2,0xc5,0xea,
+0x93,0x09,0x70,0x10,0x65,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xe3,0x01,0x45,
+0x82,0x80,0x1c,0x45,0x41,0x11,0x22,0xc4,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,
+0x9c,0x47,0x26,0xc2,0x06,0xc6,0x4a,0xc0,0xf1,0x17,0x2a,0x84,0xae,0x84,0x63,0xe5,
+0xb7,0x0a,0x1c,0x45,0x13,0x89,0x45,0x00,0x85,0x8b,0x8a,0x07,0xaa,0x97,0xd8,0x47,
+0x1c,0x45,0x4a,0x97,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf1,
+0xe7,0x06,0xb2,0x85,0x11,0x05,0x0d,0x3d,0x41,0xe1,0x1c,0x44,0x13,0x17,0x09,0x01,
+0x41,0x83,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd4,0x47,0x1c,0x44,0x36,0x97,0x85,0x8b,
+0x89,0x07,0x8e,0x07,0xa2,0x97,0x9c,0x47,0x63,0xe0,0xe7,0x06,0x1c,0x44,0x18,0x44,
+0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x22,0x97,0xa2,0x97,0x58,0x47,
+0xc8,0x43,0x3a,0x95,0x31,0xc1,0x1c,0x44,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd8,0x47,
+0x4a,0x97,0xd8,0xc7,0x23,0x10,0x95,0x00,0x23,0x11,0x05,0x00,0x11,0x05,0x35,0xa0,
+0x1c,0x45,0x18,0x45,0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x2a,0x97,
+0xaa,0x97,0x58,0x47,0xc8,0x43,0x1c,0x44,0x3a,0x95,0x85,0x8b,0x8a,0x07,0x3e,0x94,
+0x5c,0x44,0xca,0x97,0x5c,0xc4,0x79,0xf5,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44,
+0x02,0x49,0x41,0x01,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x4a,0xc8,0x4e,0xc6,
+0x52,0xc4,0x06,0xce,0x83,0x47,0x05,0x00,0x2a,0x84,0x2e,0x89,0x85,0x8b,0xb2,0x84,
+0x13,0x0a,0x45,0x00,0xfd,0x59,0xb9,0xe7,0x01,0x45,0xf2,0x40,0x62,0x44,0xd2,0x44,
+0x42,0x49,0xb2,0x49,0x22,0x4a,0x05,0x61,0x82,0x80,0x58,0x54,0x89,0xa0,0x18,0x58,
+0x54,0x54,0x3e,0x97,0x63,0xe0,0xe6,0x02,0x18,0x58,0x54,0x54,0x3e,0x97,0x63,0x1e,
+0xd7,0x04,0x58,0x54,0x1c,0x54,0x63,0x74,0xf7,0x00,0x1c,0x54,0x5c,0xd4,0x23,0x28,
+0x04,0x02,0x61,0xf5,0x01,0xa0,0x5c,0x40,0xdc,0x47,0x82,0x97,0x39,0xc1,0xa6,0x85,
+0x52,0x85,0x1d,0x3b,0x18,0x58,0x5c,0x58,0xe3,0xe1,0xe7,0xfc,0x58,0x58,0x1c,0x58,
+0x1d,0x8f,0x75,0xd3,0x83,0x27,0x09,0x00,0x63,0x73,0xf7,0x00,0xba,0x87,0x23,0x20,
+0xf9,0x00,0x18,0x58,0x48,0x50,0x14,0x58,0x3a,0x95,0x58,0x58,0xe3,0x61,0xd7,0xfa,
+0x18,0x58,0x54,0x58,0x3e,0x97,0xe3,0xef,0xe6,0xfa,0x18,0x58,0xba,0x97,0x1c,0xd8,
+0x4d,0xbf,0x8c,0x44,0xd4,0x44,0x63,0x94,0x35,0x01,0xe3,0x8d,0x36,0xfb,0x98,0x40,
+0xdc,0x40,0x33,0x06,0xe0,0x40,0xb3,0x07,0xf0,0x40,0x33,0x37,0xe0,0x00,0x99,0x8f,
+0x90,0xc8,0xdc,0xc8,0xe3,0xc0,0xd7,0xfa,0xe3,0x98,0xf6,0xf4,0xe3,0x6c,0xb6,0xf8,
+0xa1,0xb7,0x5c,0x41,0x85,0x8b,0x8a,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf6,0xb7,0x02,
+0x01,0x45,0x82,0x80,0xca,0x85,0x22,0x85,0x45,0x39,0x09,0xe9,0x5c,0x40,0x85,0x8b,
+0x8a,0x07,0xa2,0x97,0x9c,0x47,0xe3,0xe7,0xf4,0xfe,0x01,0x45,0xb2,0x40,0x22,0x44,
+0x92,0x44,0x02,0x49,0x41,0x01,0x82,0x80,0x41,0x11,0x22,0xc4,0x26,0xc2,0x4a,0xc0,
+0x06,0xc6,0x2a,0x84,0xae,0x84,0x32,0x89,0xd1,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,
+0x99,0xc3,0x11,0x05,0x7d,0xb7,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,
+0x2e,0x86,0x85,0x8b,0x81,0xc7,0x81,0x45,0x11,0x05,0x61,0xbf,0x13,0x05,0x30,0x10,
+0x82,0x80,0x41,0x11,0x22,0xc4,0x26,0xc2,0x4a,0xc0,0x06,0xc6,0x2a,0x84,0xae,0x84,
+0x32,0x89,0x91,0xee,0xc1,0x3a,0x22,0x85,0x22,0x44,0xb2,0x40,0x4a,0x86,0xa6,0x85,
+0x02,0x49,0x92,0x44,0x41,0x01,0x17,0x03,0x80,0xff,0x67,0x00,0x63,0x9e,0x5d,0x3a,
+0x19,0xcd,0x4d,0x3a,0x6d,0xd1,0x22,0x85,0x22,0x44,0xb2,0x40,0x4a,0x86,0xa6,0x85,
+0x02,0x49,0x92,0x44,0x41,0x01,0x17,0x03,0x80,0xff,0x67,0x00,0xe3,0x98,0xb2,0x40,
+0x22,0x44,0x92,0x44,0x02,0x49,0x7d,0x55,0x41,0x01,0x82,0x80,0x85,0x67,0x01,0x11,
+0xfd,0x17,0x22,0xcc,0x26,0xca,0x06,0xce,0x4a,0xc8,0x4e,0xc6,0x52,0xc4,0x56,0xc2,
+0x33,0x77,0xf5,0x00,0x2a,0x84,0xae,0x84,0x01,0xc7,0x7d,0x77,0x33,0x74,0xe5,0x00,
+0x33,0xf7,0xf4,0x00,0x01,0xc7,0xbe,0x94,0xfd,0x77,0xfd,0x8c,0xb7,0x09,0x88,0x40,
+0x03,0xa7,0xc9,0xfe,0xb3,0x07,0x94,0x00,0x54,0x43,0x63,0xfc,0xf6,0x00,0x7d,0x55,
+0xf2,0x40,0x62,0x44,0xd2,0x44,0x42,0x49,0xb2,0x49,0x22,0x4a,0x92,0x4a,0x05,0x61,
+0x82,0x80,0x5c,0x47,0xb3,0x77,0xf4,0x02,0xfd,0xf3,0x97,0x00,0x80,0xff,0xe7,0x80,
+0xa0,0x95,0x2a,0x89,0x69,0xfd,0x03,0xa7,0xc9,0xfe,0x5c,0x47,0x83,0x29,0x87,0x00,
+0xb3,0xf5,0xf4,0x02,0x33,0xd7,0xf4,0x02,0x33,0x54,0xf4,0x02,0x93,0x04,0x17,0x00,
+0xb3,0xd9,0xf9,0x02,0x91,0xe1,0xba,0x84,0x33,0x7a,0x34,0x03,0x33,0x8a,0x49,0x41,
+0x63,0xd3,0x44,0x01,0x26,0x8a,0xb3,0x0a,0x8a,0x00,0xb3,0x87,0x8a,0x40,0x63,0x42,
+0xf0,0x02,0xb3,0x84,0x44,0x41,0x63,0xea,0x99,0x02,0x26,0x94,0x33,0x05,0x94,0x40,
+0x63,0x50,0x90,0x02,0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0x8f,0x09,0xe9,0xfd,0x14,
+0xf5,0xb7,0x22,0x85,0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0x8e,0x09,0xc5,0x05,0x49,
+0x33,0x05,0x20,0x41,0xb5,0xb7,0x05,0x04,0xc9,0xb7,0x33,0x55,0x34,0x03,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xa0,0x8c,0x65,0xf5,0x4e,0x94,0xb3,0x84,0x34,0x41,0x65,0xbf,
+0x5d,0x71,0x6a,0xd0,0x37,0x4d,0x80,0x40,0xa2,0xc4,0x13,0x04,0x4d,0x14,0xa6,0xc2,
+0x44,0x50,0xca,0xc0,0x4e,0xde,0xb3,0x04,0x90,0x40,0x2a,0x89,0xe9,0x8c,0x52,0xdc,
+0x56,0xda,0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x66,0xd2,0x6e,0xce,0xb2,0x89,0x86,0xc6,
+0x2e,0xc6,0x97,0x00,0x80,0xff,0xe7,0x80,0x60,0xdd,0x5c,0x58,0x05,0x4c,0x83,0x2c,
+0x84,0x02,0x33,0x1c,0xfc,0x00,0x13,0x04,0xfc,0xff,0x4e,0x94,0x4a,0x94,0x05,0x8c,
+0xb3,0x0a,0x99,0x01,0xb3,0x5d,0xf9,0x00,0x33,0x54,0xf4,0x00,0x2a,0x8b,0xb3,0x8a,
+0x9a,0x40,0x6e,0x94,0x66,0x8a,0x13,0x0d,0x4d,0x14,0xb7,0x2b,0x00,0x60,0x63,0x1e,
+0xb4,0x07,0x37,0x87,0x0c,0x60,0x5c,0x43,0x5a,0x85,0xf1,0x9b,0x5c,0xc3,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xe0,0xd8,0x32,0x45,0x4e,0x86,0xd6,0x85,0x97,0x00,0x80,0xff,
+0xe7,0x80,0x00,0xb9,0x03,0x24,0x4d,0x02,0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0xd7,
+0x03,0x26,0x4d,0x03,0x85,0x46,0x7d,0x14,0xb3,0x96,0xc6,0x00,0x93,0x87,0xf6,0xff,
+0x33,0x74,0x24,0x01,0xce,0x97,0xa2,0x97,0xb3,0xd7,0xc7,0x00,0xb7,0x25,0x00,0x60,
+0xb5,0xe7,0x97,0x00,0x80,0xff,0xe7,0x80,0xa0,0xd4,0xb6,0x40,0x26,0x44,0x96,0x44,
+0x06,0x49,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,0x92,0x5c,
+0x02,0x5d,0xf2,0x4d,0x01,0x45,0x61,0x61,0x82,0x80,0x83,0x24,0x4d,0x02,0x03,0x27,
+0x4d,0x03,0xa2,0x04,0xfd,0x14,0xb3,0xf4,0x44,0x01,0xb3,0xd4,0xe4,0x00,0xef,0xf0,
+0x6f,0xf9,0x6e,0x87,0x19,0xc1,0x13,0xe7,0x0d,0x40,0x93,0x86,0x0b,0x38,0x84,0xc2,
+0x13,0x67,0x07,0x20,0x93,0x86,0xcb,0x37,0x52,0x85,0x98,0xc2,0xe2,0x85,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xa0,0xc9,0x62,0x9a,0x85,0x0d,0x91,0xb7,0x03,0x27,0x4d,0x02,
+0xfd,0x17,0x22,0x07,0x7d,0x17,0x33,0x77,0x97,0x01,0x33,0x57,0xc7,0x00,0x23,0xa0,
+0xe5,0x38,0x13,0x87,0xc5,0x37,0x23,0x20,0x07,0x00,0xb6,0x9c,0x95,0xbf,0xe1,0x72,
+0x39,0x71,0xc1,0x02,0x06,0xde,0x22,0xdc,0x26,0xda,0x4e,0xd6,0x52,0xd4,0x56,0xd2,
+0x5a,0xd0,0x5e,0xce,0x4a,0xd8,0x16,0x91,0xaa,0x8a,0x2e,0x84,0xb2,0x89,0x97,0x00,
+0x80,0xff,0xe7,0x80,0x60,0xd7,0x37,0x45,0x80,0x40,0x89,0x45,0x13,0x05,0xc5,0x17,
+0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0xd7,0xa1,0x67,0xb7,0x44,0x80,0x40,0x21,0x6b,
+0x8a,0x97,0x01,0x4a,0x93,0x84,0xc4,0x17,0xb3,0x8b,0x67,0x41,0x0d,0xe8,0x63,0x9e,
+0x09,0x04,0x93,0x05,0x80,0x0d,0x26,0x85,0x97,0x00,0x80,0xff,0xe7,0x80,0x80,0xa9,
+0x01,0x45,0xa1,0x62,0xc1,0x12,0x16,0x91,0xf2,0x50,0x62,0x54,0xd2,0x54,0x42,0x59,
+0xb2,0x59,0x22,0x5a,0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x21,0x61,0x82,0x80,0x22,0x89,
+0x63,0x73,0x8b,0x00,0x21,0x69,0x4a,0x86,0xde,0x85,0x33,0x05,0x5a,0x01,0x0d,0x35,
+0x05,0xe9,0x81,0x46,0x4a,0x86,0xde,0x85,0x26,0x85,0x97,0x00,0x80,0xff,0xe7,0x80,
+0x20,0xd1,0x33,0x04,0x24,0x41,0x4a,0x9a,0x55,0xb7,0xce,0x85,0x26,0x85,0x97,0x00,
+0x80,0xff,0xe7,0x80,0x20,0xd0,0x97,0x00,0x80,0xff,0xe7,0x80,0x20,0xce,0x4d,0xb7,
+0x7d,0x55,0x45,0xb7,0x13,0x01,0x01,0xdd,0x23,0x24,0x81,0x22,0x23,0x22,0x91,0x22,
+0x23,0x2e,0x31,0x21,0x23,0x2a,0x51,0x21,0x23,0x28,0x61,0x21,0x23,0x26,0x71,0x21,
+0x23,0x26,0x11,0x22,0x23,0x20,0x21,0x23,0x23,0x2c,0x41,0x21,0x2a,0x84,0xb3,0x04,
+0xa6,0x00,0xb3,0x09,0xb5,0x00,0x85,0x4a,0x13,0x0b,0x00,0x20,0x93,0x0b,0xf0,0x0f,
+0x63,0x68,0x34,0x03,0x01,0x45,0x83,0x20,0xc1,0x22,0x03,0x24,0x81,0x22,0x83,0x24,
+0x41,0x22,0x03,0x29,0x01,0x22,0x83,0x29,0xc1,0x21,0x03,0x2a,0x81,0x21,0x83,0x2a,
+0x41,0x21,0x03,0x2b,0x01,0x21,0x83,0x2b,0xc1,0x20,0x13,0x01,0x01,0x23,0x82,0x80,
+0x13,0x19,0xc4,0x00,0x05,0x6a,0x23,0x80,0x54,0x01,0x4a,0x9a,0x13,0x06,0x00,0x20,
+0x8a,0x85,0x4a,0x85,0xb5,0x33,0x1d,0xe5,0xb3,0x07,0xa1,0x00,0x83,0xc7,0x07,0x00,
+0x63,0x87,0x77,0x01,0x23,0x80,0x04,0x00,0x05,0x04,0x85,0x04,0x55,0xb7,0x05,0x05,
+0xe3,0x14,0x65,0xff,0x83,0xc7,0x04,0x00,0xe5,0xdb,0x13,0x09,0x09,0x20,0xe3,0x17,
+0x49,0xfd,0xdd,0xb7,0x7d,0x55,0x41,0xbf,0x5d,0x71,0x4e,0xde,0x61,0x46,0xae,0x89,
+0x2c,0x00,0xa2,0xc4,0x86,0xc6,0xa6,0xc2,0xca,0xc0,0x52,0xdc,0x56,0xda,0x5a,0xd8,
+0x5e,0xd6,0x62,0xd4,0x2a,0x84,0x29,0x3b,0x15,0xed,0x03,0x47,0x81,0x00,0x93,0x07,
+0x90,0x0e,0x61,0x59,0x63,0x19,0xf7,0x02,0x2a,0x89,0x61,0x04,0x01,0x4a,0x81,0x44,
+0xb7,0x0a,0x00,0xbe,0x37,0x0b,0x00,0x01,0x85,0x4b,0x31,0x4c,0x83,0x47,0x91,0x00,
+0x63,0x45,0xfa,0x00,0x23,0xa0,0x99,0x00,0x39,0xa0,0x21,0x46,0x8a,0x85,0x22,0x85,
+0xc5,0x31,0x19,0xcd,0x7d,0x59,0xb6,0x40,0x26,0x44,0x96,0x44,0xf2,0x59,0x62,0x5a,
+0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,0x4a,0x85,0x06,0x49,0x61,0x61,0x82,0x80,
+0x02,0x47,0xb3,0x07,0x57,0x01,0x63,0xf0,0x67,0x03,0xe3,0xe5,0x9b,0xfc,0xb3,0x87,
+0x84,0x03,0x85,0x04,0x93,0x06,0x84,0x00,0xc2,0x04,0xc1,0x80,0xce,0x97,0x98,0xc7,
+0x12,0x47,0xd4,0xc3,0xd8,0xc7,0x92,0x47,0x05,0x0a,0xa1,0x07,0x3e,0x94,0x79,0xbf,
+0x41,0x11,0x26,0xc2,0xb7,0x44,0x80,0x40,0x93,0x84,0x44,0x14,0x22,0xc4,0x13,0x84,
+0xc4,0x00,0x61,0x46,0x81,0x45,0x22,0x85,0x06,0xc6,0x97,0x00,0x80,0xff,0xe7,0x80,
+0xe0,0x88,0xb7,0x47,0x80,0x40,0x93,0x87,0x07,0x00,0xdc,0xc8,0x93,0x87,0x47,0x02,
+0x9c,0xcc,0x05,0x47,0xb7,0x47,0x80,0x40,0x23,0x86,0xe7,0x26,0x93,0x84,0x44,0x02,
+0x1c,0x40,0x91,0xeb,0x21,0x04,0xe3,0x9d,0x84,0xfe,0x01,0x45,0xb2,0x40,0x22,0x44,
+0x92,0x44,0x41,0x01,0x82,0x80,0x9c,0x43,0x48,0x40,0x82,0x97,0x65,0xd5,0xfd,0xb7,
+0x41,0x11,0x06,0xc6,0x71,0x3f,0x09,0xed,0xb7,0x47,0x80,0x40,0x03,0xa7,0xc7,0x27,
+0xb7,0x06,0x80,0x00,0x1c,0x43,0xd5,0x8f,0x1c,0xc3,0xb2,0x40,0x41,0x01,0x82,0x80,
+0x7d,0x55,0xe5,0xbf,0xa1,0x66,0x39,0x71,0xe1,0x72,0xe1,0x77,0xc1,0x06,0x4a,0xd8,
+0x56,0xd2,0x5a,0xd0,0x06,0xde,0x22,0xdc,0x26,0xda,0x4e,0xd6,0x52,0xd4,0x5e,0xce,
+0xbe,0x96,0x16,0x91,0xb3,0x87,0x26,0x00,0x37,0x47,0x80,0x40,0x23,0x2c,0xf7,0x26,
+0xb7,0x47,0x80,0x40,0x21,0x67,0xaa,0x8a,0x2e,0x8b,0x23,0xaa,0xe7,0x26,0x4d,0x37,
+0x2a,0x89,0x11,0xe5,0x91,0x6b,0x81,0x44,0xf9,0x1b,0x63,0xe0,0x64,0x03,0xa1,0x62,
+0x16,0x91,0xf2,0x50,0x4a,0x85,0x62,0x54,0xd2,0x54,0x42,0x59,0xb2,0x59,0x22,0x5a,
+0x92,0x5a,0x02,0x5b,0xf2,0x4b,0x21,0x61,0x82,0x80,0x33,0x04,0x9b,0x40,0xa2,0x89,
+0x63,0xfc,0x8b,0x02,0x13,0xf4,0xcb,0xff,0x22,0x85,0xef,0xf0,0x6f,0xd5,0x2a,0x8a,
+0x15,0xc1,0xaa,0x85,0x22,0x86,0x33,0x85,0x54,0x01,0x59,0x36,0xaa,0x89,0x52,0x85,
+0xef,0xf0,0xcf,0xd8,0xb3,0xe9,0xa9,0x00,0x63,0x96,0x09,0x00,0xa2,0x94,0xef,0xf0,
+0x0f,0xdd,0x45,0xd5,0x7d,0x59,0x65,0xb7,0x93,0x77,0x34,0x00,0xf1,0xd7,0x71,0x98,
+0x61,0xf4,0x8d,0x47,0xe3,0xe8,0x37,0xff,0x61,0x74,0xa1,0x67,0x71,0x14,0xc1,0x07,
+0xa2,0x97,0x33,0x84,0x27,0x00,0x11,0x46,0xa2,0x85,0x33,0x85,0x54,0x01,0x89,0x36,
+0x71,0xf9,0x4e,0x85,0xef,0xf0,0xcf,0xcf,0xaa,0x84,0x69,0xd5,0x4e,0x86,0xa2,0x85,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0xc0,0x74,0x26,0x85,0xef,0xf0,0x2f,0xd3,0x5d,0xf9,
+0xef,0xf0,0xef,0xd7,0x29,0xdd,0x7d,0xb7,0x1c,0x4d,0x5d,0x71,0x66,0xd2,0x85,0x8b,
+0xb7,0x4c,0x80,0x40,0xc1,0x66,0xc1,0x72,0x23,0xa8,0xfc,0x26,0xc1,0x06,0xe1,0x77,
+0xca,0xc0,0x4e,0xde,0x86,0xc6,0xa2,0xc4,0xa6,0xc2,0x52,0xdc,0x56,0xda,0x5a,0xd8,
+0x5e,0xd6,0x62,0xd4,0x6a,0xd0,0x6e,0xce,0xbe,0x96,0x16,0x91,0xb3,0x87,0x26,0x00,
+0x37,0x47,0x80,0x40,0x23,0x2c,0xf7,0x26,0xb7,0x47,0x80,0x40,0x21,0x67,0x2a,0x89,
+0x23,0xaa,0xe7,0x26,0x71,0x3d,0xaa,0x89,0x63,0x1e,0x05,0x0e,0xb7,0x47,0x80,0x40,
+0x83,0xc7,0xc7,0x26,0x99,0xc7,0x83,0x25,0xc9,0x00,0x03,0x25,0x89,0x00,0xef,0xf0,
+0x6f,0xb8,0x03,0x27,0x09,0x00,0x37,0x44,0x80,0x40,0x93,0x07,0x44,0x14,0x93,0x87,
+0x07,0x10,0x98,0xcb,0x03,0x27,0x09,0x01,0x41,0x7a,0x71,0x1a,0xd8,0xcb,0x18,0x08,
+0x98,0xd3,0xd8,0xd3,0xc1,0x67,0xc1,0x07,0xd2,0x97,0x01,0x4b,0x13,0x04,0x44,0x14,
+0x33,0x8a,0x27,0x00,0xa1,0x6b,0x83,0x27,0x49,0x00,0x63,0x75,0xfb,0x0a,0xb3,0x87,
+0x67,0x41,0x52,0x85,0x3e,0xc6,0xef,0xf0,0x8f,0xb8,0xaa,0x8a,0x59,0xc9,0xb2,0x4d,
+0x2a,0x8c,0x63,0x85,0x0d,0x00,0x83,0x27,0x44,0x11,0x99,0xe3,0x81,0x44,0x95,0xa8,
+0x03,0x25,0x44,0x12,0x83,0x24,0x04,0x12,0x6e,0x8d,0xb3,0x04,0x95,0x40,0xb3,0x87,
+0xb4,0x01,0x63,0xf4,0xfb,0x00,0x33,0x8d,0x9b,0x40,0xe2,0x85,0x6a,0x86,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xe0,0x64,0x83,0x27,0x44,0x12,0xea,0x94,0xb3,0x8d,0xad,0x41,
+0xea,0x97,0x23,0x22,0xf4,0x12,0x83,0x27,0x44,0x11,0x6a,0x9c,0x63,0x84,0xf4,0x00,
+0xe3,0x99,0x74,0xfb,0x83,0xa6,0x0c,0x27,0x83,0x25,0x04,0x12,0x03,0x25,0x04,0x11,
+0xb3,0x36,0xd0,0x00,0x26,0x86,0x75,0x30,0x01,0xed,0x93,0x07,0x04,0x10,0x98,0x4b,
+0x26,0x97,0x98,0xcb,0xd8,0x4b,0x05,0x8f,0xd8,0xcb,0x98,0x53,0xd8,0xd3,0x51,0xb7,
+0xfd,0x54,0x56,0x85,0xef,0xf0,0x8f,0xb4,0x09,0xe5,0x9d,0xe4,0xb2,0x47,0x3e,0x9b,
+0x99,0xbf,0xfd,0x59,0xc1,0x62,0x16,0x91,0xb6,0x40,0x4e,0x85,0x26,0x44,0x96,0x44,
+0x06,0x49,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,0x92,0x5c,
+0x02,0x5d,0xf2,0x4d,0x61,0x61,0x82,0x80,0xf5,0x59,0xe9,0xbf,0x1c,0x4d,0x5d,0x71,
+0xb5,0x72,0x66,0xd2,0x93,0x82,0x02,0x50,0x85,0x8b,0xb7,0x4c,0x80,0x40,0xcd,0x66,
+0xca,0xc0,0x6a,0xd0,0x86,0xc6,0xa2,0xc4,0xa6,0xc2,0x4e,0xde,0x52,0xdc,0x56,0xda,
+0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x6e,0xce,0x23,0xa8,0xfc,0x26,0x16,0x91,0xe1,0x77,
+0x93,0x86,0x06,0xb0,0xbe,0x96,0x1c,0x08,0xb6,0x97,0x37,0x47,0x80,0x40,0x23,0x2c,
+0xf7,0x26,0xb7,0x47,0x80,0x40,0x21,0x67,0x2a,0x8d,0x23,0xaa,0xe7,0x26,0x0d,0x33,
+0x2a,0x89,0x63,0x10,0x05,0x18,0xb7,0x47,0x80,0x40,0x83,0xc7,0xc7,0x26,0x99,0xc7,
+0x83,0x25,0xcd,0x00,0x03,0x25,0x8d,0x00,0xef,0xf0,0xcf,0xa0,0x03,0x27,0x0d,0x00,
+0xb7,0x44,0x80,0x40,0x93,0x87,0x44,0x14,0x93,0x87,0x07,0x10,0x98,0xcb,0x03,0x27,
+0x0d,0x01,0x4d,0x66,0xb5,0x76,0xd8,0xcb,0x03,0x27,0x4d,0x00,0x93,0x05,0x06,0xb0,
+0xb5,0x7a,0x98,0xcf,0x13,0x87,0x06,0x51,0xba,0x95,0x18,0x08,0x2e,0x97,0xd8,0xcf,
+0x93,0x05,0x06,0xb0,0x41,0x77,0xba,0x95,0x18,0x08,0x2e,0x97,0x98,0xd3,0xd8,0xd3,
+0x13,0x07,0x06,0xb0,0x36,0x97,0x14,0x08,0x36,0x97,0x3a,0xc0,0x23,0x28,0x07,0x50,
+0x13,0x8b,0xca,0x50,0x13,0x07,0x06,0xb0,0x93,0x8b,0x8a,0x50,0x93,0x07,0x06,0xb0,
+0x5a,0x97,0xde,0x97,0x36,0x97,0xb6,0x97,0x01,0x4a,0x93,0x84,0x44,0x14,0x3a,0xc4,
+0x3e,0xc6,0x83,0x27,0x4d,0x00,0x63,0x76,0xfa,0x0e,0x02,0x47,0xb3,0x87,0x47,0x41,
+0x13,0x85,0x4a,0x50,0x23,0x22,0xf7,0x50,0xcd,0x67,0x93,0x87,0x07,0xb0,0xaa,0x97,
+0x18,0x08,0x33,0x85,0xe7,0x00,0xef,0xf0,0x8f,0x9b,0x2a,0xc2,0x63,0x0d,0x05,0x10,
+0x82,0x47,0x2a,0x8c,0x05,0x4b,0x83,0xab,0x47,0x50,0xa1,0x69,0x63,0x8f,0x0b,0x06,
+0x03,0xa7,0x44,0x11,0x3d,0xcb,0x63,0x55,0x60,0x0b,0x82,0x47,0x83,0xa6,0x04,0x12,
+0x03,0xa7,0x44,0x12,0x13,0x84,0x07,0x50,0x03,0xa8,0x84,0x11,0xb3,0x87,0x36,0x01,
+0x99,0x8f,0x5c,0xc4,0x32,0x46,0xa2,0x47,0x03,0xa5,0xc4,0x11,0x33,0xb8,0x0b,0x01,
+0xe2,0x85,0x06,0x08,0x23,0x24,0x74,0x01,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x00,0x0b,
+0x18,0x44,0x83,0xa6,0x84,0x11,0x83,0xa7,0x44,0x12,0xb3,0x8b,0xeb,0x40,0x99,0x8e,
+0x3a,0x9c,0x58,0x44,0x83,0xa5,0x04,0x12,0x23,0xac,0xd4,0x10,0x33,0x84,0xe7,0x00,
+0x23,0xa2,0x84,0x12,0x2a,0x8b,0x0d,0x8c,0x63,0x59,0xa0,0x02,0x63,0x07,0x34,0x03,
+0x63,0x85,0x0b,0x00,0x03,0xa7,0x44,0x11,0x49,0xfb,0x63,0x4b,0x0b,0x02,0x03,0xa7,
+0x44,0x11,0x63,0x10,0x0b,0x08,0x0d,0xe7,0x12,0x45,0xef,0xf0,0x2f,0x96,0x25,0xed,
+0x82,0x47,0x83,0xa7,0x47,0x50,0x3e,0x9a,0x2d,0xb7,0x03,0xa7,0x44,0x11,0x3a,0x86,
+0x63,0x73,0xe4,0x00,0x22,0x86,0x39,0xc2,0x63,0x79,0x36,0x03,0x63,0x77,0xe4,0x02,
+0x75,0x59,0xcd,0x62,0x93,0x82,0x02,0xb0,0x16,0x91,0xb6,0x40,0x4a,0x85,0x26,0x44,
+0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a,0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,
+0x92,0x5c,0x02,0x5d,0xf2,0x4d,0x61,0x61,0x82,0x80,0x83,0xa6,0x0c,0x27,0x03,0xa5,
+0x04,0x11,0xb3,0x36,0xd0,0x00,0xef,0xf0,0xcf,0xe4,0x79,0xf1,0x13,0x87,0x04,0x10,
+0x14,0x4b,0xa2,0x96,0x14,0xcb,0x54,0x4b,0x81,0x8e,0x54,0xcb,0x14,0x53,0x54,0xd3,
+0xf5,0xbd,0x59,0xf3,0x75,0xb7,0x7d,0x59,0x6d,0xb7,0x19,0x71,0xba,0xd8,0xbe,0xda,
+0x37,0x47,0x80,0x40,0xb7,0x47,0x80,0x40,0xca,0xc8,0x86,0xce,0xa2,0xcc,0xa6,0xca,
+0xce,0xc6,0xd2,0xc4,0xd6,0xc2,0xda,0xc0,0x5e,0xde,0x62,0xdc,0x2a,0x89,0xae,0xd2,
+0xb2,0xd4,0xb6,0xd6,0xc2,0xdc,0xc6,0xde,0x93,0x87,0x47,0x14,0x13,0x07,0x07,0x28,
+0x63,0xe9,0xe7,0x10,0xdc,0x10,0x3e,0xc6,0x2d,0x47,0x79,0x54,0x63,0x46,0x27,0x0f,
+0xb7,0x87,0x0c,0x60,0x96,0x54,0xa6,0x59,0x36,0x5a,0x03,0xab,0x47,0x00,0x81,0x4a,
+0xb7,0x2b,0x00,0x60,0x13,0x0c,0x00,0x10,0x93,0x87,0x0b,0x38,0x23,0xa0,0x57,0x01,
+0x93,0x87,0xcb,0x37,0x80,0x43,0xef,0xe0,0xff,0xf9,0x19,0xc1,0x13,0x74,0xf4,0xbf,
+0x13,0x74,0x04,0x20,0x79,0xc8,0x13,0x7b,0x3b,0x00,0x63,0x06,0x0b,0x04,0xb7,0x67,
+0x09,0x60,0x93,0x87,0x47,0x10,0x98,0x43,0x13,0x67,0x17,0x00,0x98,0xc3,0x98,0x43,
+0x13,0x67,0x27,0x00,0x98,0xc3,0x98,0x43,0x75,0x9b,0x98,0xc3,0x37,0x87,0x0c,0x60,
+0x5c,0x43,0xf1,0x9b,0x5c,0xc3,0xb7,0x27,0x00,0x60,0x93,0x87,0x47,0x38,0x98,0x43,
+0x1d,0x9b,0x98,0xc3,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x00,0x4e,0x01,0x45,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0x60,0x4b,0x81,0x45,0x01,0x45,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0x20,0xff,0xb7,0x27,0x00,0x60,0x83,0xa7,0x47,0x38,0x8d,0x83,0x8d,0x8b,0xb5,0xcb,
+0x05,0x47,0x63,0x8b,0xe7,0x06,0x09,0x47,0x63,0x9b,0xe7,0x06,0xb9,0x46,0x91,0x67,
+0x37,0x47,0x80,0x40,0x13,0x07,0x47,0x14,0x13,0x06,0x80,0x0f,0x5c,0xd3,0xb3,0x87,
+0xc7,0x02,0x54,0xdb,0xb7,0x06,0x00,0x42,0x93,0x05,0x00,0x10,0x0c,0xdb,0x50,0xd7,
+0xb6,0x97,0x1c,0xd7,0xef,0xe0,0xdf,0xeb,0xaa,0x85,0x29,0xe5,0x13,0x05,0xc9,0xff,
+0x33,0x35,0xa0,0x00,0x33,0x04,0xa0,0x40,0xf6,0x40,0x22,0x85,0x66,0x44,0xd6,0x44,
+0x46,0x49,0xb6,0x49,0x26,0x4a,0x96,0x4a,0x06,0x4b,0xf2,0x5b,0x62,0x5c,0x09,0x61,
+0x82,0x80,0x23,0xa0,0x07,0x00,0x91,0x07,0xe5,0xb5,0x85,0x0a,0xe3,0x96,0x8a,0xf1,
+0x3d,0xb7,0xc1,0x46,0xc1,0x67,0x69,0xbf,0xbd,0x46,0xa1,0x67,0x51,0xbf,0xb5,0x46,
+0x89,0x67,0x79,0xb7,0x91,0x47,0x2a,0x84,0xe3,0x00,0xf9,0xfc,0xb7,0x07,0x88,0x40,
+0x03,0xa8,0xc7,0xfe,0xc1,0x67,0xfd,0x17,0x03,0x25,0x08,0x00,0x13,0x07,0x00,0x10,
+0x85,0x66,0x41,0x66,0x97,0xf0,0x7f,0xff,0xe7,0x80,0xc0,0xeb,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0x80,0xea,0x19,0xc1,0x7d,0x54,0x41,0xbf,0xad,0x47,0x63,0xe5,0x27,0x1b,
+0xb7,0x47,0x80,0x40,0x93,0x87,0xc7,0x06,0x0a,0x09,0x3e,0x99,0x83,0x27,0x09,0x00,
+0x82,0x87,0xce,0x85,0x26,0x85,0x7d,0x32,0x2a,0x84,0xbd,0xb7,0xce,0x85,0x26,0x85,
+0xef,0xf0,0xcf,0xcb,0xd5,0xbf,0x52,0x86,0xce,0x85,0x26,0x85,0xef,0xf0,0x8f,0xfb,
+0xe5,0xb7,0x26,0x85,0x51,0x34,0xcd,0xb7,0x26,0x85,0xcd,0x3e,0xf1,0xbf,0x52,0x86,
+0xce,0x85,0x26,0x85,0xef,0xf0,0xaf,0xed,0xc1,0xbf,0xef,0xe0,0x7f,0xde,0xfd,0x57,
+0x23,0xa0,0x09,0x00,0x2a,0x84,0x21,0x69,0x63,0x9e,0xf4,0x02,0x95,0x64,0x93,0x84,
+0xa4,0x0a,0x13,0x06,0x00,0x02,0x0c,0x08,0x4a,0x85,0xef,0xf0,0x6f,0xd6,0x41,0xf5,
+0x83,0x57,0x01,0x01,0x63,0x95,0x97,0x02,0x52,0x45,0x63,0x64,0xa4,0x02,0xe2,0x47,
+0xaa,0x97,0x63,0x60,0xf4,0x02,0x83,0x47,0x21,0x01,0x13,0x09,0x09,0x02,0xf1,0xfb,
+0xce,0x85,0x19,0xa0,0xce,0x85,0x26,0x85,0xef,0xf0,0x1f,0x80,0xb5,0xbf,0x69,0x54,
+0xe5,0xb5,0x65,0x54,0xd5,0xb5,0x7d,0x79,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x2e,
+0x33,0xf9,0x24,0x01,0x09,0x66,0xd2,0x85,0x4a,0x85,0xef,0xf0,0x6f,0xd1,0x19,0xc1,
+0x01,0x45,0x99,0xbf,0x13,0x94,0x44,0x01,0x51,0x80,0x52,0x94,0xa2,0x85,0x09,0x46,
+0x4e,0x85,0x97,0xf0,0x7f,0xff,0xe7,0x80,0xa0,0x11,0x89,0x45,0x26,0x85,0xef,0xf0,
+0xef,0xbf,0x79,0xfd,0x89,0x47,0x23,0x00,0xf4,0x00,0x93,0x07,0x00,0xf9,0xa3,0x00,
+0xf4,0x00,0xef,0xe0,0x3f,0xd7,0xb3,0x36,0xa0,0x00,0x09,0x66,0xd2,0x85,0x4a,0x85,
+0xef,0xf0,0x2f,0xb8,0x55,0xfd,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0x28,0x09,0x45,
+0x21,0xb7,0x7d,0x79,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0x27,0x33,0xf9,0x24,0x01,
+0x09,0x66,0xd2,0x85,0x4a,0x85,0xef,0xf0,0xaf,0xca,0xe3,0x16,0x05,0xec,0x89,0x45,
+0x26,0x85,0xef,0xf0,0xaf,0xba,0x2a,0x84,0xe3,0x1f,0x05,0xea,0x83,0xc7,0x09,0x00,
+0xd2,0x04,0xd1,0x80,0xd2,0x94,0x23,0x80,0xf4,0x00,0x83,0xc7,0x19,0x00,0xa3,0x80,
+0xf4,0x00,0xef,0xe0,0x3f,0xd1,0xb3,0x36,0xa0,0x00,0x09,0x66,0xd2,0x85,0x4a,0x85,
+0xef,0xf0,0x2f,0xb2,0xe3,0x19,0x05,0xe8,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x22,
+0x21,0xbd,0x37,0x67,0x09,0x60,0xfd,0x57,0x13,0x07,0x07,0x11,0x63,0x9c,0xf4,0x00,
+0x04,0x43,0xb7,0x07,0xfd,0xff,0xfd,0x17,0xe5,0x8f,0xc1,0x66,0xd5,0x8f,0x1c,0xc3,
+0x26,0x84,0xdd,0xbb,0x1c,0x43,0xb7,0x06,0xfd,0xff,0xfd,0x16,0xf5,0x8f,0xb7,0x06,
+0x03,0x00,0xe5,0x8e,0xe5,0xb7,0x79,0x54,0xc5,0xb3,
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_code_wlog.inc 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_code_wlog.inc
new file mode 100644
index 0000000000..ec4208c3a2
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_code_wlog.inc
@@ -0,0 +1,543 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xc7,0x83,0xd7,0xc5,0xff,0x01,0x45,0x23,0x9f,
+0xf5,0xfe,0x82,0x80,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,
+0x81,0xcb,0x50,0xd5,0x10,0xd5,0x23,0x28,0x05,0x02,0x4c,0xd1,0x23,0x2a,0x05,0x02,
+0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xe7,0x13,0x05,0x30,0x10,0x82,0x80,
+0x01,0x45,0x82,0x80,0x83,0x47,0x05,0x00,0x85,0x8b,0x81,0xcb,0xb7,0x57,0x80,0x40,
+0x03,0xa5,0x07,0x14,0x5d,0x81,0x05,0x89,0x82,0x80,0x01,0x45,0x82,0x80,0xb7,0x57,
+0x80,0x40,0x23,0xa2,0x07,0x14,0x82,0x80,0xb7,0x57,0x80,0x40,0x37,0x07,0x80,0x40,
+0x93,0x87,0x07,0x14,0x13,0x07,0x67,0x06,0xd8,0xc3,0x98,0x43,0xb7,0x07,0x80,0x00,
+0xf9,0x8f,0x9d,0xc3,0x93,0x57,0xf7,0x00,0xa9,0x8f,0x46,0x07,0x93,0xf7,0xf7,0x07,
+0x45,0x83,0xd9,0x8f,0x01,0x45,0x99,0xcb,0x41,0x11,0x06,0xc6,0xc9,0x37,0xb2,0x40,
+0x13,0x05,0x10,0x10,0x41,0x01,0x82,0x80,0x01,0x45,0x82,0x80,0x82,0x80,0x37,0x57,
+0x80,0x40,0x13,0x07,0x07,0x14,0x14,0x43,0xb7,0x07,0x80,0x00,0xc6,0x05,0xf5,0x8f,
+0xc5,0x81,0xb7,0x86,0x3f,0x00,0x3e,0x05,0x41,0x11,0x75,0x8d,0xcd,0x8f,0x06,0xc6,
+0xc9,0x8f,0x1c,0xc3,0x69,0x37,0xb2,0x40,0x01,0x45,0x41,0x01,0x82,0x80,0x01,0x45,
+0x82,0x80,0xb7,0x57,0x80,0x40,0x03,0xa5,0x07,0x14,0x59,0x81,0x05,0x89,0x82,0x80,
+0x37,0x57,0x80,0x40,0x13,0x07,0x87,0x26,0x1c,0x43,0xb3,0x06,0xf7,0x00,0x85,0x07,
+0xd2,0x07,0xd1,0x83,0x23,0x82,0xa6,0x00,0x1c,0xc3,0x82,0x80,0x01,0x11,0x22,0xcc,
+0x37,0x54,0x80,0x40,0x93,0x07,0x04,0x14,0xdc,0x4b,0x26,0xca,0x06,0xce,0xaa,0x84,
+0x2e,0x86,0x13,0x04,0x04,0x14,0x81,0xcb,0xdc,0x4b,0x91,0xc7,0x2e,0xc6,0xaa,0x85,
+0x08,0x4c,0x82,0x97,0x32,0x46,0x5c,0x4c,0x91,0xcb,0xdc,0x4b,0x81,0xcb,0x08,0x50,
+0x62,0x44,0xf2,0x40,0xa6,0x85,0xd2,0x44,0x05,0x61,0x82,0x87,0xf2,0x40,0x62,0x44,
+0xd2,0x44,0x05,0x61,0x82,0x80,0x1c,0x41,0xb9,0xc3,0xb7,0x67,0x80,0x40,0x83,0xc7,
+0xc7,0x26,0xaa,0x85,0x01,0x45,0x95,0xcf,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0x14,
+0xc8,0x4b,0x05,0xc9,0x18,0x4d,0x01,0x45,0x0d,0xc7,0x88,0x4f,0x79,0x71,0x01,0x48,
+0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,
+0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80,0x01,0x45,
+0x82,0x80,0x82,0x80,0x31,0xc5,0xb7,0x67,0x80,0x40,0x83,0xc7,0xc7,0x26,0xaa,0x85,
+0x13,0x05,0x30,0x10,0xa9,0xc3,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0x14,0xd8,0x4b,
+0x13,0x05,0x60,0x10,0x0d,0xcb,0x14,0x4f,0x9d,0xc6,0x58,0x4f,0x88,0x4f,0x79,0x71,
+0x01,0x48,0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4,0x46,0xc6,
+0x36,0xca,0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80,
+0x13,0x05,0x20,0x10,0x82,0x80,0x82,0x80,0x39,0xc1,0xb7,0x67,0x80,0x40,0x83,0xc7,
+0xc7,0x26,0xaa,0x85,0x01,0x45,0x95,0xcf,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0x14,
+0xc8,0x4b,0x05,0xc9,0x58,0x41,0x01,0x45,0x0d,0xc7,0x88,0x4f,0x79,0x71,0x01,0x48,
+0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,
+0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80,0x01,0x45,
+0x82,0x80,0x82,0x80,0x29,0xc5,0xb7,0x67,0x80,0x40,0x83,0xc7,0xc7,0x26,0xaa,0x85,
+0x13,0x05,0x30,0x10,0xa1,0xc3,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0x14,0xd8,0x4b,
+0x13,0x05,0x60,0x10,0x05,0xcb,0x18,0x47,0x15,0xc7,0x88,0x4f,0x79,0x71,0x01,0x48,
+0x81,0x48,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x32,0xc8,0x42,0xc4,0x46,0xc6,0x36,0xca,
+0x42,0xcc,0x46,0xce,0x30,0x00,0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80,0x13,0x05,
+0x20,0x10,0x82,0x80,0x82,0x80,0xb7,0x67,0x80,0x40,0x83,0xc7,0xc7,0x26,0x13,0x05,
+0x30,0x10,0x8d,0xcf,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0x14,0xd8,0x4b,0x13,0x05,
+0x60,0x10,0x0d,0xc7,0x18,0x4b,0x1d,0xc3,0x79,0x71,0x01,0x45,0x2a,0xc4,0x2a,0xcc,
+0x88,0x4f,0x81,0x45,0x7d,0x56,0xfd,0x56,0x06,0xd6,0x2e,0xc6,0x2e,0xce,0x32,0xc8,
+0x36,0xca,0x2c,0x00,0x02,0x97,0xb2,0x50,0x45,0x61,0x82,0x80,0x82,0x80,0x03,0x47,
+0x05,0x00,0x1d,0xef,0xb7,0x67,0x80,0x40,0x23,0x26,0x05,0x02,0x83,0xa6,0x87,0x27,
+0xb7,0x67,0x80,0x40,0x23,0x24,0x05,0x02,0x83,0xa7,0x47,0x27,0x23,0x28,0x05,0x02,
+0x23,0x2a,0x05,0x02,0x85,0x83,0x23,0x26,0x05,0x00,0x54,0xc9,0x23,0x28,0x05,0x00,
+0xbe,0x96,0x23,0x22,0x05,0x02,0x1c,0xcd,0x54,0xcd,0x1c,0xd1,0x23,0x24,0x05,0x00,
+0x13,0x67,0x17,0x00,0xb7,0x57,0x80,0x40,0x23,0x00,0xe5,0x00,0x93,0x87,0x07,0x14,
+0x51,0x05,0x37,0x67,0x80,0x40,0x88,0xc7,0x23,0x2e,0xf7,0x26,0x01,0x45,0x82,0x80,
+0x41,0x11,0x4a,0xc0,0x37,0x69,0x80,0x40,0x83,0x27,0x09,0x28,0x22,0xc4,0x06,0xc6,
+0x26,0xc2,0x0d,0x44,0x63,0x75,0xf4,0x04,0xb7,0x55,0x80,0x40,0x37,0x45,0x80,0x40,
+0x93,0x85,0x05,0xf8,0x13,0x05,0xc5,0x06,0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0xcc,
+0x83,0x27,0x09,0x28,0x63,0x75,0xf4,0x02,0xb7,0x07,0x88,0x40,0x83,0xa5,0xc7,0xfe,
+0x37,0x45,0x80,0x40,0x13,0x05,0x05,0x08,0x03,0xa8,0x45,0x01,0x9c,0x49,0xd8,0x45,
+0x94,0x45,0xd0,0x41,0x8c,0x41,0x97,0x00,0x80,0xff,0xe7,0x80,0x20,0xc9,0xb7,0x37,
+0x00,0x60,0x23,0xac,0x07,0x04,0x37,0x07,0x00,0x10,0x98,0xc3,0x84,0x43,0xfd,0xfc,
+0xa0,0x4f,0x03,0x27,0x09,0x28,0x8d,0x47,0x22,0x04,0x21,0x80,0x63,0xfb,0xe7,0x00,
+0x37,0x45,0x80,0x40,0xa2,0x85,0x13,0x05,0x85,0x0b,0x97,0x00,0x80,0xff,0xe7,0x80,
+0xe0,0xc5,0x93,0x55,0x04,0x01,0x93,0x87,0xe5,0xfe,0x13,0x07,0x70,0x02,0x63,0x6a,
+0xf7,0x00,0x13,0x97,0x27,0x00,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0xf8,0xba,0x97,
+0xc4,0x4b,0x03,0x27,0x09,0x28,0x8d,0x47,0x63,0xfc,0xe7,0x00,0x37,0x45,0x80,0x40,
+0x13,0xd6,0xa4,0x00,0x13,0x05,0x45,0x0d,0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0xc2,
+0xb2,0x40,0x22,0x44,0x02,0x49,0x26,0x85,0x92,0x44,0x41,0x01,0x82,0x80,0xb7,0x56,
+0x80,0x40,0x83,0xc7,0x86,0x13,0xad,0xc3,0xb7,0x17,0x0b,0x60,0x83,0xa7,0x47,0x83,
+0x01,0x47,0xc9,0x83,0x9d,0x8b,0xb1,0xe3,0xb7,0x57,0x80,0x40,0x19,0xe3,0x23,0xaa,
+0x07,0x12,0x83,0xa5,0x47,0x13,0xb7,0x67,0x80,0x40,0x03,0xa7,0x07,0x28,0x23,0x8c,
+0x06,0x12,0x8d,0x47,0x63,0xfa,0xe7,0x02,0x37,0x45,0x80,0x40,0x41,0x11,0x13,0x05,
+0x85,0x0f,0x06,0xc6,0x97,0x00,0x80,0xff,0xe7,0x80,0x40,0xbc,0xb2,0x40,0xb7,0x57,
+0x80,0x40,0x03,0xa5,0x47,0x13,0x41,0x01,0x82,0x80,0x13,0xf6,0x17,0x00,0x19,0xc2,
+0x13,0x47,0x17,0x00,0x85,0x83,0x45,0xbf,0xb7,0x57,0x80,0x40,0x03,0xa5,0x47,0x13,
+0x82,0x80,0xb7,0x67,0x80,0x40,0x03,0xa7,0x07,0x28,0x41,0x11,0x22,0xc4,0x06,0xc6,
+0x8d,0x47,0x2a,0x84,0x63,0xfc,0xe7,0x00,0x2a,0x86,0x37,0x45,0x80,0x40,0xa1,0x65,
+0x13,0x05,0xc5,0x11,0x97,0x00,0x80,0xff,0xe7,0x80,0x40,0xb7,0xb7,0x67,0x80,0x40,
+0x23,0xac,0x87,0x26,0xb2,0x40,0x22,0x44,0xb7,0x67,0x80,0x40,0x21,0x67,0x23,0xaa,
+0xe7,0x26,0x41,0x01,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x52,0xc4,0x06,0xce,
+0x4a,0xc8,0x4e,0xc6,0x56,0xc2,0x5a,0xc0,0x2a,0x84,0xae,0x84,0x7d,0x5a,0x1c,0x40,
+0x03,0x29,0x44,0x00,0x48,0x40,0x9c,0x43,0x82,0x97,0xaa,0x89,0x63,0x1a,0x05,0x14,
+0x93,0x44,0xf9,0xff,0x85,0x88,0x93,0x97,0x24,0x00,0xa2,0x97,0x23,0xa4,0x07,0x00,
+0x5c,0x40,0x26,0x85,0x89,0x04,0x85,0x07,0x5c,0xc0,0x1c,0x40,0x8e,0x04,0xa2,0x94,
+0xdc,0x43,0x82,0x97,0x1c,0x40,0x83,0xaa,0x04,0x00,0xdc,0x47,0x82,0x97,0x5d,0xcd,
+0x03,0xdb,0x0a,0x00,0x63,0x0c,0x0b,0x0a,0x01,0x4a,0x58,0x54,0x1c,0x58,0x63,0xe4,
+0xe7,0x04,0x54,0x50,0x18,0x58,0xb3,0x87,0xe6,0x40,0x63,0x8f,0xe6,0x08,0x58,0x54,
+0x19,0xe3,0xfd,0x17,0xd1,0xcb,0xb3,0x04,0x4b,0x41,0x63,0xf3,0x97,0x00,0xbe,0x84,
+0x18,0x58,0x54,0x54,0x1c,0x58,0x08,0x50,0x63,0xe7,0xd7,0x0a,0x1c,0x58,0x54,0x50,
+0xa6,0x97,0x63,0xe8,0xd7,0x0a,0x5c,0x54,0x81,0xef,0xb7,0x67,0x80,0x40,0x83,0xa7,
+0x07,0x28,0xc5,0xe7,0x01,0xa0,0x5c,0x54,0x18,0x58,0xfd,0x17,0x99,0x8f,0xd9,0xb7,
+0x1c,0x58,0x54,0x50,0xa6,0x97,0x63,0x96,0xd7,0x00,0x23,0x28,0x04,0x02,0x3a,0x95,
+0x05,0xa8,0x5c,0x54,0xfd,0x17,0xe3,0xea,0x97,0xfc,0x1c,0x58,0x1c,0xd4,0x23,0x28,
+0x04,0x02,0x58,0x54,0x1c,0x54,0x63,0x1a,0xf7,0x00,0x23,0x26,0x04,0x02,0x18,0x54,
+0x5c,0x50,0x63,0x74,0xf7,0x00,0x5c,0x50,0x1c,0xd4,0x1c,0x58,0xa6,0x97,0x1c,0xd8,
+0x4d,0xd5,0x93,0x05,0x2a,0x00,0x26,0x86,0xd6,0x95,0x26,0x9a,0x97,0x00,0x80,0xff,
+0xe7,0x80,0x00,0xed,0xe3,0x6b,0x6a,0xf5,0x23,0x90,0x0a,0x00,0x1c,0x40,0x13,0x79,
+0x19,0x00,0x0a,0x09,0x22,0x99,0x48,0x40,0x9c,0x47,0x83,0x25,0x89,0x00,0x82,0x97,
+0xf2,0x40,0x62,0x44,0xd2,0x44,0x42,0x49,0x22,0x4a,0x92,0x4a,0x02,0x4b,0x4e,0x85,
+0xb2,0x49,0x05,0x61,0x82,0x80,0x5c,0x54,0x14,0x58,0xfd,0x17,0x95,0x8f,0xe3,0xee,
+0x97,0xf4,0x1c,0x58,0xa6,0x97,0x1c,0xd8,0x9d,0xbf,0xb7,0x46,0x80,0x40,0xb7,0x55,
+0x80,0x40,0x37,0x45,0x80,0x40,0x93,0x86,0x86,0x14,0x13,0x06,0x40,0x0d,0x93,0x85,
+0x45,0x03,0x13,0x05,0xc5,0x17,0x97,0x00,0x80,0xff,0xe7,0x80,0x20,0x9e,0x1d,0xbf,
+0x90,0x44,0xd4,0x44,0x63,0x14,0x46,0x01,0xe3,0x8b,0x46,0xe9,0x98,0x40,0xdc,0x40,
+0xb3,0x05,0xe0,0x40,0xb3,0x07,0xf0,0x40,0x33,0x37,0xe0,0x00,0x99,0x8f,0x8c,0xc8,
+0xdc,0xc8,0xe3,0xce,0xd7,0xe6,0x63,0x94,0xf6,0x00,0xe3,0xea,0xc5,0xe6,0x93,0x09,
+0x70,0x10,0xbd,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,0x99,0xe3,0x01,0x45,0x82,0x80,
+0x1c,0x45,0x41,0x11,0x22,0xc4,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47,
+0x26,0xc2,0x06,0xc6,0x4a,0xc0,0xf1,0x17,0x2a,0x84,0xae,0x84,0x63,0xe5,0xb7,0x0a,
+0x1c,0x45,0x13,0x89,0x45,0x00,0x85,0x8b,0x8a,0x07,0xaa,0x97,0xd8,0x47,0x1c,0x45,
+0x4a,0x97,0x85,0x8b,0x89,0x07,0x8e,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf1,0xe7,0x06,
+0xb2,0x85,0x11,0x05,0x09,0x35,0x41,0xe1,0x1c,0x44,0x13,0x17,0x09,0x01,0x41,0x83,
+0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd4,0x47,0x1c,0x44,0x36,0x97,0x85,0x8b,0x89,0x07,
+0x8e,0x07,0xa2,0x97,0x9c,0x47,0x63,0xe0,0xe7,0x06,0x1c,0x44,0x18,0x44,0x85,0x8b,
+0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x22,0x97,0xa2,0x97,0x58,0x47,0xc8,0x43,
+0x3a,0x95,0x31,0xc1,0x1c,0x44,0x85,0x8b,0x8a,0x07,0xa2,0x97,0xd8,0x47,0x4a,0x97,
+0xd8,0xc7,0x23,0x10,0x95,0x00,0x23,0x11,0x05,0x00,0x11,0x05,0x35,0xa0,0x1c,0x45,
+0x18,0x45,0x85,0x8b,0x05,0x8b,0x89,0x07,0x0a,0x07,0x8e,0x07,0x2a,0x97,0xaa,0x97,
+0x58,0x47,0xc8,0x43,0x1c,0x44,0x3a,0x95,0x85,0x8b,0x8a,0x07,0x3e,0x94,0x5c,0x44,
+0xca,0x97,0x5c,0xc4,0x79,0xf5,0x01,0x45,0xb2,0x40,0x22,0x44,0x92,0x44,0x02,0x49,
+0x41,0x01,0x82,0x80,0x01,0x11,0x22,0xcc,0x26,0xca,0x4a,0xc8,0x4e,0xc6,0x52,0xc4,
+0x06,0xce,0x83,0x47,0x05,0x00,0x2a,0x84,0x2e,0x89,0x85,0x8b,0xb2,0x84,0x13,0x0a,
+0x45,0x00,0xfd,0x59,0xb5,0xef,0x01,0x45,0xf2,0x40,0x62,0x44,0xd2,0x44,0x42,0x49,
+0xb2,0x49,0x22,0x4a,0x05,0x61,0x82,0x80,0x58,0x54,0x85,0xa8,0x18,0x58,0x54,0x54,
+0x3e,0x97,0x63,0xea,0xe6,0x08,0x18,0x58,0x54,0x54,0x3e,0x97,0x63,0x1c,0xd7,0x00,
+0x58,0x54,0x1c,0x54,0x63,0x74,0xf7,0x00,0x1c,0x54,0x5c,0xd4,0x23,0x28,0x04,0x02,
+0x61,0xf5,0x95,0xa8,0x18,0x58,0xba,0x97,0x1c,0xd8,0xdd,0xbf,0xb7,0x46,0x80,0x40,
+0xb7,0x55,0x80,0x40,0x37,0x45,0x80,0x40,0x93,0x86,0xc6,0x19,0x13,0x06,0x50,0x0a,
+0x93,0x85,0x45,0x06,0x13,0x05,0xc5,0x17,0x97,0x00,0x80,0xff,0xe7,0x80,0x00,0x84,
+0x81,0xa8,0x5c,0x40,0xdc,0x47,0x82,0x97,0x29,0xc5,0xa6,0x85,0x52,0x85,0xe1,0x39,
+0x18,0x58,0x5c,0x58,0xe3,0xea,0xe7,0xf8,0x58,0x58,0x1c,0x58,0x1d,0x8f,0x75,0xd3,
+0x83,0x27,0x09,0x00,0x63,0x73,0xf7,0x00,0xba,0x87,0x23,0x20,0xf9,0x00,0x18,0x58,
+0x48,0x50,0x14,0x58,0x3a,0x95,0x58,0x58,0xe3,0x6a,0xd7,0xf6,0x18,0x58,0x54,0x58,
+0x3e,0x97,0xe3,0xf9,0xe6,0xf8,0xb7,0x67,0x80,0x40,0x83,0xa7,0x07,0x28,0xd9,0xf7,
+0x01,0xa0,0x8c,0x44,0xd4,0x44,0x63,0x94,0x35,0x01,0xe3,0x8b,0x36,0xfb,0x98,0x40,
+0xdc,0x40,0x33,0x06,0xe0,0x40,0xb3,0x07,0xf0,0x40,0x33,0x37,0xe0,0x00,0x99,0x8f,
+0x90,0xc8,0xdc,0xc8,0xe3,0xce,0xd7,0xf8,0xe3,0x9f,0xf6,0xf0,0xe3,0x6a,0xb6,0xf8,
+0x19,0xbf,0x5c,0x41,0x85,0x8b,0x8a,0x07,0xaa,0x97,0x9c,0x47,0x63,0xf6,0xb7,0x02,
+0x01,0x45,0x82,0x80,0xca,0x85,0x22,0x85,0xb9,0x31,0x09,0xe9,0x5c,0x40,0x85,0x8b,
+0x8a,0x07,0xa2,0x97,0x9c,0x47,0xe3,0xe7,0xf4,0xfe,0x01,0x45,0xb2,0x40,0x22,0x44,
+0x92,0x44,0x02,0x49,0x41,0x01,0x82,0x80,0x41,0x11,0x22,0xc4,0x26,0xc2,0x4a,0xc0,
+0x06,0xc6,0x2a,0x84,0xae,0x84,0x32,0x89,0xd1,0xbf,0x83,0x47,0x05,0x00,0x85,0x8b,
+0x99,0xc3,0x11,0x05,0x7d,0xb7,0x13,0x05,0x30,0x10,0x82,0x80,0x83,0x47,0x05,0x00,
+0x2e,0x86,0x85,0x8b,0x81,0xc7,0x81,0x45,0x11,0x05,0x61,0xbf,0x13,0x05,0x30,0x10,
+0x82,0x80,0x01,0x11,0x26,0xca,0x4a,0xc8,0x4e,0xc6,0x06,0xce,0x22,0xcc,0xaa,0x84,
+0xae,0x89,0x32,0x89,0x8d,0xea,0x25,0x36,0x4a,0x86,0xce,0x85,0x26,0x85,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xe0,0x84,0xb7,0x67,0x80,0x40,0x03,0xa7,0x07,0x28,0x8d,0x47,
+0x2a,0x84,0x63,0xef,0xe7,0x04,0xf2,0x40,0x22,0x85,0x62,0x44,0xd2,0x44,0x42,0x49,
+0xb2,0x49,0x05,0x61,0x82,0x80,0xe5,0x3c,0x7d,0x54,0x75,0xd5,0xcd,0x3c,0x69,0xd5,
+0x4a,0x86,0xce,0x85,0x26,0x85,0x97,0xf0,0x7f,0xff,0xe7,0x80,0xe0,0x7d,0xb7,0x67,
+0x80,0x40,0x03,0xa7,0x07,0x28,0x8d,0x47,0x2a,0x84,0xe3,0xf6,0xe7,0xfc,0xb7,0x45,
+0x80,0x40,0x93,0x85,0x45,0x1d,0x37,0x45,0x80,0x40,0x01,0x47,0x81,0x47,0xca,0x86,
+0x26,0x86,0x13,0x05,0x05,0x1e,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0x6c,0x65,0xb7,
+0xb7,0x45,0x80,0x40,0x93,0x85,0x05,0x4e,0xf9,0xbf,0x85,0x67,0x79,0x71,0xfd,0x17,
+0x4a,0xd0,0x4e,0xce,0x06,0xd6,0x22,0xd4,0x26,0xd2,0x52,0xcc,0x56,0xca,0x5a,0xc8,
+0x5e,0xc6,0x33,0x77,0xf5,0x00,0xaa,0x89,0x2e,0x89,0x01,0xc7,0x7d,0x77,0xb3,0x79,
+0xe5,0x00,0x33,0x77,0xf9,0x00,0x09,0xc7,0xca,0x97,0x7d,0x79,0x33,0xf9,0x27,0x01,
+0x37,0x6b,0x80,0x40,0x03,0x27,0x0b,0x28,0x8d,0x47,0x63,0xfc,0xe7,0x00,0x37,0x45,
+0x80,0x40,0x4a,0x86,0xce,0x85,0x13,0x05,0x05,0x21,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0xe0,0x65,0x37,0x04,0x88,0x40,0x03,0x27,0xc4,0xfe,0xb3,0x87,0x29,0x01,0x54,0x43,
+0x63,0xfa,0xf6,0x02,0x83,0x27,0x0b,0x28,0x91,0xcb,0x37,0x45,0x80,0x40,0x85,0x45,
+0x13,0x05,0x45,0x23,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x63,0x7d,0x55,0xb2,0x50,
+0x22,0x54,0x92,0x54,0x02,0x59,0xf2,0x49,0x62,0x4a,0xd2,0x4a,0x42,0x4b,0xb2,0x4b,
+0x45,0x61,0x82,0x80,0x5c,0x47,0xb3,0xf7,0xf9,0x02,0xe9,0xf7,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0x80,0x73,0x61,0xf1,0x03,0x27,0xc4,0xfe,0x5c,0x47,0x03,0x2a,0x87,0x00,
+0x33,0xd4,0xf9,0x02,0x33,0x57,0xf9,0x02,0x33,0x5a,0xfa,0x02,0x93,0x04,0x17,0x00,
+0xb3,0x77,0xf9,0x02,0x91,0xe3,0xba,0x84,0xb3,0x7a,0x44,0x03,0xb3,0x0a,0x5a,0x41,
+0x63,0xd3,0x54,0x01,0xa6,0x8a,0xb3,0x8b,0x8a,0x00,0xb3,0x87,0x8b,0x40,0x63,0x4e,
+0xf0,0x02,0xb3,0x84,0x54,0x41,0x63,0x62,0x9a,0x04,0x26,0x94,0x33,0x05,0x94,0x40,
+0x63,0x48,0x90,0x04,0x03,0x27,0x0b,0x28,0x8d,0x47,0x63,0xfe,0xe7,0x00,0x37,0x45,
+0x80,0x40,0x01,0x47,0x81,0x47,0x4e,0x86,0xca,0x85,0x13,0x05,0x85,0x25,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xa0,0x59,0x01,0x45,0x9d,0xb7,0x22,0x85,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0x80,0x6a,0x21,0xf1,0x05,0x04,0x4d,0xbf,0x33,0x55,0x44,0x03,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xa0,0x69,0x1d,0xf5,0x52,0x94,0xb3,0x84,0x44,0x41,0x65,0xb7,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x68,0x11,0xfd,0xfd,0x14,0x45,0xb7,0x1d,0x71,
+0x62,0xdc,0x37,0x5c,0x80,0x40,0xa6,0xca,0x93,0x04,0x0c,0x14,0xd8,0x50,0xb3,0x07,
+0xc5,0x00,0xa2,0xcc,0x33,0x07,0xe0,0x40,0x69,0x8f,0x99,0x8f,0xca,0xc8,0xd6,0xc2,
+0xda,0xc0,0x2a,0x84,0x3a,0xc6,0x3e,0xc4,0x86,0xce,0xce,0xc6,0xd2,0xc4,0x5e,0xde,
+0x66,0xda,0x6a,0xd8,0x6e,0xd6,0x2e,0xca,0x32,0x89,0x97,0x00,0x80,0xff,0xe7,0x80,
+0xe0,0xb8,0x84,0x54,0x32,0x47,0x37,0x6b,0x80,0x40,0xb3,0x0a,0x94,0x00,0x83,0x26,
+0x0b,0x28,0xb3,0x87,0xea,0x40,0x3e,0xc6,0x2a,0xc8,0x8d,0x47,0x13,0x0c,0x0c,0x14,
+0x63,0xfe,0xd7,0x00,0xa2,0x47,0xb2,0x45,0x37,0x45,0x80,0x40,0xa2,0x86,0x4a,0x86,
+0x13,0x05,0x45,0x28,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x4e,0x83,0x27,0x4c,0x03,
+0x22,0x47,0x85,0x49,0xb3,0x99,0xf9,0x00,0x13,0x83,0xf9,0xff,0x3a,0x93,0xb3,0x5b,
+0xf3,0x00,0x33,0x57,0xf4,0x00,0xb3,0x87,0xeb,0x00,0x26,0x8a,0x3e,0xcc,0xb7,0x2c,
+0x00,0x60,0x0d,0x4d,0xb7,0x4d,0x80,0x40,0xe2,0x47,0xb3,0x8a,0x77,0x41,0x63,0x93,
+0x0b,0x08,0x37,0x87,0x0c,0x60,0x5c,0x43,0x42,0x45,0x05,0x4a,0xf1,0x9b,0x5c,0xc3,
+0x97,0x00,0x80,0xff,0xe7,0x80,0xc0,0xb0,0xb2,0x45,0x52,0x45,0x4a,0x86,0xb7,0x4b,
+0x80,0x40,0x97,0x00,0x80,0xff,0xe7,0x80,0xa0,0x90,0x83,0x2a,0x4c,0x02,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xa0,0xae,0x83,0x27,0x4c,0x03,0xfd,0x1a,0xb3,0xfa,0x8a,0x00,
+0x33,0x1a,0xfa,0x00,0x13,0x04,0xfa,0xff,0x4a,0x94,0x56,0x94,0xaa,0x89,0x33,0x54,
+0xf4,0x00,0x37,0x29,0x00,0x60,0x8d,0x4a,0x51,0xe8,0x4e,0x85,0x97,0x00,0x80,0xff,
+0xe7,0x80,0x00,0xac,0xf6,0x40,0x66,0x44,0xd6,0x44,0x46,0x49,0xb6,0x49,0x26,0x4a,
+0x96,0x4a,0x06,0x4b,0xf2,0x5b,0x62,0x5c,0xd2,0x5c,0x42,0x5d,0xb2,0x5d,0x01,0x45,
+0x25,0x61,0x82,0x80,0x03,0x26,0x4c,0x02,0x83,0x27,0x4c,0x03,0x22,0x06,0x7d,0x16,
+0x33,0x76,0x46,0x01,0x33,0x56,0xf6,0x00,0x32,0xce,0xef,0xf0,0x5f,0x80,0x72,0x46,
+0xd6,0x87,0x19,0xc1,0x93,0xe7,0x0a,0x40,0x93,0x86,0x0c,0x38,0x90,0xc2,0x93,0xe7,
+0x07,0x20,0x32,0xce,0x93,0x86,0xcc,0x37,0x9c,0xc2,0xce,0x85,0x52,0x85,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xa0,0xa0,0x83,0x27,0x0b,0x28,0x72,0x46,0x63,0x7d,0xfd,0x00,
+0xa2,0x47,0x4e,0x88,0x56,0x87,0xd2,0x86,0xde,0x85,0x13,0x85,0xcd,0x2c,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xa0,0x3c,0x4e,0x9a,0xfd,0x1b,0x39,0xb7,0x03,0x26,0x4c,0x02,
+0x83,0x27,0x4c,0x03,0x22,0x06,0x7d,0x16,0x65,0x8e,0x33,0x56,0xf6,0x00,0x93,0x07,
+0x09,0x38,0x90,0xc3,0x93,0x07,0xc9,0x37,0x23,0xa0,0x07,0x00,0x83,0x27,0x0b,0x28,
+0x63,0xfb,0xfa,0x00,0x52,0x87,0xa6,0x86,0xa2,0x85,0x13,0x85,0x4b,0x32,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xa0,0x38,0xd2,0x94,0x7d,0x14,0x3d,0xb7,0x39,0x71,0x56,0xd2,
+0xb7,0x6a,0x80,0x40,0x03,0xa7,0x0a,0x28,0xe1,0x72,0x22,0xdc,0x26,0xda,0x52,0xd4,
+0x06,0xde,0x4a,0xd8,0x4e,0xd6,0x5a,0xd0,0x5e,0xce,0x62,0xcc,0xc1,0x02,0x8d,0x47,
+0x16,0x91,0x2a,0x8a,0xae,0x84,0x32,0x84,0x63,0xf0,0xe7,0x02,0xaa,0x86,0x2e,0x86,
+0x37,0x45,0x80,0x40,0xb7,0x55,0x80,0x40,0x93,0x85,0xc5,0x08,0x13,0x05,0xc5,0x36,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0x33,0x97,0x00,0x80,0xff,0xe7,0x80,0xc0,0xa7,
+0x37,0x55,0x80,0x40,0x89,0x45,0x13,0x05,0x85,0x17,0x97,0x00,0x80,0xff,0xe7,0x80,
+0x60,0xa7,0xa1,0x67,0x37,0x59,0x80,0x40,0xa1,0x6b,0x8a,0x97,0x01,0x4b,0x13,0x09,
+0x89,0x17,0x33,0x8c,0x77,0x41,0xa1,0xe4,0x4d,0xe4,0x93,0x05,0x80,0x0d,0x4a,0x85,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x00,0x7a,0x03,0xa7,0x0a,0x28,0x8d,0x47,0x63,0xf6,
+0xe7,0x02,0x03,0x48,0xf4,0x01,0x83,0x47,0xe4,0x01,0x03,0x47,0xd4,0x01,0x83,0x46,
+0x24,0x00,0x03,0x46,0x14,0x00,0x83,0x45,0x04,0x00,0x37,0x45,0x80,0x40,0x13,0x05,
+0xc5,0x3a,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0x2c,0x01,0x45,0x05,0xa8,0xa6,0x89,
+0x63,0xf3,0x9b,0x00,0xa1,0x69,0xe2,0x85,0x4e,0x86,0x33,0x05,0x4b,0x01,0x81,0x3b,
+0xaa,0x85,0x05,0xcd,0x83,0xa7,0x0a,0x28,0x89,0xcb,0x37,0x45,0x80,0x40,0x13,0x05,
+0x85,0x38,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0x29,0x7d,0x55,0xa1,0x62,0xc1,0x12,
+0x16,0x91,0xf2,0x50,0x62,0x54,0xd2,0x54,0x42,0x59,0xb2,0x59,0x22,0x5a,0x92,0x5a,
+0x02,0x5b,0xf2,0x4b,0x62,0x4c,0x21,0x61,0x82,0x80,0x81,0x46,0x4e,0x86,0xe2,0x85,
+0x4a,0x85,0x97,0x00,0x80,0xff,0xe7,0x80,0xa0,0x9c,0xb3,0x84,0x34,0x41,0x4e,0x9b,
+0x99,0xbf,0xa2,0x85,0x4a,0x85,0x97,0x00,0x80,0xff,0xe7,0x80,0xa0,0x9b,0x97,0x00,
+0x80,0xff,0xe7,0x80,0xa0,0x99,0x89,0xbf,0x13,0x01,0x01,0xdd,0x23,0x2c,0x41,0x21,
+0x37,0x6a,0x80,0x40,0x03,0x27,0x0a,0x28,0x23,0x24,0x81,0x22,0x23,0x22,0x91,0x22,
+0x23,0x20,0x21,0x23,0x23,0x26,0x11,0x22,0x23,0x2e,0x31,0x21,0x23,0x2a,0x51,0x21,
+0x23,0x28,0x61,0x21,0x23,0x26,0x71,0x21,0x23,0x24,0x81,0x21,0x8d,0x47,0x2a,0x84,
+0x2e,0x89,0xb2,0x84,0x63,0xfc,0xe7,0x00,0x2e,0x86,0xaa,0x85,0x37,0x45,0x80,0x40,
+0x13,0x05,0xc5,0x3c,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x1f,0xa2,0x94,0x22,0x99,
+0x05,0x4b,0x93,0x0b,0x00,0x20,0x13,0x0c,0xf0,0x0f,0x63,0x61,0x24,0x03,0x03,0x27,
+0x0a,0x28,0x8d,0x47,0x63,0xfa,0xe7,0x00,0x37,0x45,0x80,0x40,0x13,0x05,0x45,0x3f,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0x1c,0x01,0x45,0x15,0xa8,0x93,0x19,0xc4,0x00,
+0x85,0x6a,0x23,0x80,0x64,0x01,0xce,0x9a,0x8a,0x85,0x13,0x06,0x00,0x20,0x4e,0x85,
+0xb9,0x31,0xaa,0x85,0x21,0xc5,0x83,0x27,0x0a,0x28,0x89,0xcb,0x37,0x45,0x80,0x40,
+0x13,0x05,0x85,0x38,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0x19,0x7d,0x55,0x83,0x20,
+0xc1,0x22,0x03,0x24,0x81,0x22,0x83,0x24,0x41,0x22,0x03,0x29,0x01,0x22,0x83,0x29,
+0xc1,0x21,0x03,0x2a,0x81,0x21,0x83,0x2a,0x41,0x21,0x03,0x2b,0x01,0x21,0x83,0x2b,
+0xc1,0x20,0x03,0x2c,0x81,0x20,0x13,0x01,0x01,0x23,0x82,0x80,0x81,0x47,0x33,0x07,
+0xf1,0x00,0x03,0x47,0x07,0x00,0x63,0x07,0x87,0x01,0x23,0x80,0x04,0x00,0x05,0x04,
+0x85,0x04,0xa5,0xb7,0x85,0x07,0xe3,0x94,0x77,0xff,0x83,0xc7,0x04,0x00,0xe5,0xdb,
+0x93,0x89,0x09,0x20,0xe3,0x92,0x59,0xf9,0xdd,0xb7,0x1d,0x71,0xce,0xc6,0x61,0x46,
+0xae,0x89,0x2c,0x00,0xa2,0xcc,0xca,0xc8,0x86,0xce,0xa6,0xca,0xd2,0xc4,0xd6,0xc2,
+0xda,0xc0,0x5e,0xde,0x62,0xdc,0x66,0xda,0x6a,0xd8,0x6e,0xd6,0x2a,0x84,0x45,0x3e,
+0x37,0x69,0x80,0x40,0x19,0xcd,0x83,0x27,0x09,0x28,0x91,0xcb,0xaa,0x85,0x37,0x45,
+0x80,0x40,0x13,0x05,0xc5,0x40,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0x0f,0x7d,0x55,
+0x1d,0xa0,0x83,0x45,0x81,0x00,0x13,0x07,0x90,0x0e,0x83,0x27,0x09,0x28,0x63,0x8b,
+0xe5,0x02,0x89,0xcb,0x37,0x45,0x80,0x40,0x13,0x05,0xc5,0x43,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0xc0,0x0c,0x61,0x55,0xf6,0x40,0x66,0x44,0xd6,0x44,0x46,0x49,0xb6,0x49,
+0x26,0x4a,0x96,0x4a,0x06,0x4b,0xf2,0x5b,0x62,0x5c,0xd2,0x5c,0x42,0x5d,0xb2,0x5d,
+0x25,0x61,0x82,0x80,0x09,0x47,0x63,0x7f,0xf7,0x00,0xb2,0x46,0x03,0x46,0x91,0x00,
+0x37,0x45,0x80,0x40,0x93,0x05,0x90,0x0e,0x13,0x05,0x05,0x47,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0xc0,0x08,0x61,0x04,0x01,0x4a,0x81,0x44,0x89,0x4a,0x37,0x4b,0x80,0x40,
+0xb7,0x0b,0x00,0xbe,0x37,0x0c,0x00,0x01,0x85,0x4c,0x31,0x4d,0xb7,0x4d,0x80,0x40,
+0x83,0x47,0x91,0x00,0x63,0x46,0xfa,0x00,0x23,0xa0,0x99,0x00,0x01,0x45,0x61,0xbf,
+0x8a,0x85,0x21,0x46,0x22,0x85,0xe5,0x3c,0x83,0x27,0x09,0x28,0xaa,0x85,0x19,0xc5,
+0xb9,0xdf,0x37,0x45,0x80,0x40,0x13,0x05,0x05,0x4b,0xb1,0xb7,0x63,0xfb,0xfa,0x00,
+0x82,0x46,0x12,0x46,0xd2,0x85,0x13,0x05,0x4b,0x4e,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0xe0,0x02,0x02,0x47,0xb3,0x07,0x77,0x01,0x63,0xff,0x87,0x03,0x83,0x27,0x09,0x28,
+0x63,0xfc,0xfa,0x00,0x12,0x46,0x93,0x06,0x84,0x00,0xa6,0x85,0x13,0x85,0x0d,0x51,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0x00,0xe3,0xe0,0x9c,0xfa,0xb3,0x87,0xa4,0x03,
+0x13,0x07,0x84,0x00,0x85,0x04,0xc2,0x04,0xc1,0x80,0xce,0x97,0xd8,0xc3,0x02,0x47,
+0x98,0xc7,0x12,0x47,0xd8,0xc7,0x92,0x47,0x05,0x0a,0xa1,0x07,0x3e,0x94,0x8d,0xbf,
+0x41,0x11,0x26,0xc2,0xb7,0x54,0x80,0x40,0x93,0x84,0x04,0x14,0x22,0xc4,0x13,0x84,
+0xc4,0x00,0x61,0x46,0x81,0x45,0x22,0x85,0x06,0xc6,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0xe0,0x43,0xb7,0x47,0x80,0x40,0x93,0x87,0x07,0x00,0xdc,0xc8,0x93,0x87,0x47,0x02,
+0x9c,0xcc,0x05,0x47,0xb7,0x67,0x80,0x40,0x23,0x86,0xe7,0x26,0x93,0x84,0x44,0x02,
+0x1c,0x40,0x91,0xeb,0x21,0x04,0xe3,0x9d,0x84,0xfe,0x01,0x45,0xb2,0x40,0x22,0x44,
+0x92,0x44,0x41,0x01,0x82,0x80,0x9c,0x43,0x48,0x40,0x82,0x97,0x65,0xd5,0xfd,0xb7,
+0x41,0x11,0x22,0xc4,0x37,0x64,0x80,0x40,0x03,0x27,0x04,0x28,0x06,0xc6,0x89,0x47,
+0x63,0xfa,0xe7,0x00,0x37,0x45,0x80,0x40,0x13,0x05,0x45,0x54,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0xc0,0xf5,0xb5,0x3f,0x15,0xc1,0x83,0x27,0x04,0x28,0x91,0xcb,0xaa,0x85,
+0x37,0x45,0x80,0x40,0x13,0x05,0x45,0x56,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x00,0xf4,
+0x7d,0x55,0xb2,0x40,0x22,0x44,0x41,0x01,0x82,0x80,0xb7,0x67,0x80,0x40,0x03,0xa7,
+0xc7,0x27,0xb7,0x06,0x80,0x00,0x1c,0x43,0xd5,0x8f,0x1c,0xc3,0xdd,0xb7,0x59,0x71,
+0xe1,0x72,0xa1,0x67,0x86,0xd6,0xd2,0xcc,0xd6,0xca,0xda,0xc8,0xa2,0xd4,0xa6,0xd2,
+0xca,0xd0,0xce,0xce,0xde,0xc6,0xe2,0xc4,0xe6,0xc2,0xea,0xc0,0x6e,0xde,0xaa,0x8a,
+0x16,0x91,0x61,0x75,0x93,0x87,0x07,0x02,0xaa,0x97,0x18,0x08,0x33,0x85,0xe7,0x00,
+0x2e,0x8a,0xef,0xf0,0x0f,0xb5,0xad,0x37,0x2a,0x8b,0x63,0x1a,0x05,0x10,0x37,0x64,
+0x80,0x40,0x03,0x27,0x04,0x28,0x89,0x47,0x63,0xfc,0xe7,0x00,0x37,0x45,0x80,0x40,
+0x56,0x86,0xd2,0x85,0x13,0x05,0x45,0x59,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x00,0xec,
+0x91,0x6b,0x81,0x49,0xf9,0x1b,0x0d,0x4c,0x37,0x4d,0x80,0x40,0xb7,0x4d,0x80,0x40,
+0x63,0xe2,0x49,0x03,0x03,0x27,0x04,0x28,0x8d,0x47,0x63,0xfa,0xe7,0x0c,0x37,0x45,
+0x80,0x40,0x56,0x86,0xd2,0x85,0x13,0x05,0x85,0x7c,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0xe0,0xe8,0x75,0xa8,0x33,0x09,0x3a,0x41,0xca,0x84,0x63,0xf1,0x2b,0x03,0x13,0xf9,
+0xcb,0xff,0x4a,0x85,0xef,0xf0,0x4f,0x84,0x83,0x27,0x04,0x28,0xaa,0x84,0x0d,0xe9,
+0xd1,0xcf,0x37,0x45,0x80,0x40,0x13,0x05,0xc5,0x5b,0xd1,0xa0,0x93,0x77,0x39,0x00,
+0xed,0xd3,0x13,0x79,0xc9,0xff,0xe3,0x1e,0x09,0xfc,0x8d,0x4b,0x63,0xf4,0x9b,0x12,
+0x83,0x27,0x04,0x28,0xa5,0xcf,0x37,0x45,0x80,0x40,0x13,0x05,0x45,0x6f,0x45,0xa0,
+0x63,0x7c,0xfc,0x00,0x2a,0x86,0x01,0x47,0x81,0x47,0xca,0x85,0x13,0x05,0x0d,0x5e,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0xe2,0xb3,0x87,0x59,0x01,0x3e,0x85,0x4a,0x86,
+0xa6,0x85,0x3e,0xce,0x6d,0x38,0x83,0x27,0x04,0x28,0xaa,0x8c,0x63,0x7f,0xfc,0x00,
+0xb7,0x46,0x80,0x40,0x01,0x47,0x81,0x47,0x4a,0x86,0xb3,0x85,0x59,0x01,0x13,0x85,
+0x46,0x61,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0xdf,0x26,0x85,0xef,0xf0,0x8f,0x80,
+0x83,0x27,0x04,0x28,0x63,0x8f,0x0c,0x02,0x91,0xcb,0x37,0x45,0x80,0x40,0xe6,0x85,
+0x13,0x05,0x85,0x38,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0xdd,0x7d,0x5b,0xa1,0x62,
+0x16,0x91,0xb6,0x50,0x5a,0x85,0x26,0x54,0x96,0x54,0x06,0x59,0xf6,0x49,0x66,0x4a,
+0xd6,0x4a,0x46,0x4b,0xb6,0x4b,0x26,0x4c,0x96,0x4c,0x06,0x4d,0xf2,0x5d,0x65,0x61,
+0x82,0x80,0x19,0xc9,0xe1,0xdf,0x37,0x45,0x80,0x40,0x13,0x05,0x05,0x64,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xa0,0xd9,0xd9,0xb7,0xca,0x99,0x63,0x7f,0xfc,0x02,0x03,0xc6,
+0x34,0x00,0x83,0xc8,0x04,0x00,0x03,0xc8,0xf4,0xff,0x83,0xc7,0xe4,0xff,0x03,0xc7,
+0xd4,0xff,0x83,0xc6,0xc4,0xff,0x32,0xc4,0x03,0xc6,0x24,0x00,0x37,0x45,0x80,0x40,
+0xca,0x85,0x32,0xc2,0x03,0xc6,0x14,0x00,0x13,0x05,0x45,0x66,0x32,0xc0,0x26,0x86,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0xd5,0xef,0xe0,0xff,0xfb,0x83,0x27,0x04,0x28,
+0x19,0xc5,0xad,0xdf,0x37,0x45,0x80,0x40,0x13,0x05,0x85,0x6a,0x4d,0xb7,0xe3,0x79,
+0xfc,0xe8,0x26,0x86,0xca,0x85,0x13,0x85,0xcd,0x6c,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0xe0,0xd2,0xbd,0xbd,0xe1,0x75,0xa1,0x67,0xf1,0x15,0x93,0x87,0x07,0x02,0xae,0x97,
+0x18,0x08,0xd6,0x99,0xb3,0x85,0xe7,0x00,0x11,0x46,0x4e,0x85,0xef,0xf0,0x2f,0xfb,
+0x83,0x27,0x04,0x28,0x2a,0x89,0x63,0xfb,0xfb,0x00,0x37,0x45,0x80,0x40,0xce,0x85,
+0x13,0x05,0x85,0x73,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0xcf,0x63,0x0b,0x09,0x00,
+0x83,0x27,0x04,0x28,0x81,0xdf,0x37,0x45,0x80,0x40,0xca,0x85,0x13,0x05,0x45,0x76,
+0x11,0xb7,0x26,0x85,0xef,0xe0,0x5f,0xea,0x2a,0x89,0x01,0xe5,0x83,0x27,0x04,0x28,
+0x85,0xb5,0xe1,0x75,0xa1,0x67,0xf1,0x15,0x93,0x87,0x07,0x02,0xae,0x97,0x18,0x08,
+0x26,0x86,0xb3,0x85,0xe7,0x00,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0x13,0x4a,0x85,
+0xef,0xe0,0x5f,0xec,0x01,0xc5,0x83,0x27,0x04,0x28,0xed,0xbd,0x03,0x27,0x04,0x28,
+0x8d,0x47,0x63,0xff,0xe7,0x02,0x03,0x46,0x39,0x00,0x83,0x48,0x09,0x00,0x03,0x48,
+0xf9,0xff,0x83,0x47,0xe9,0xff,0x03,0x47,0xd9,0xff,0x83,0x46,0xc9,0xff,0x32,0xc4,
+0x03,0x46,0x29,0x00,0x37,0x45,0x80,0x40,0xa6,0x85,0x32,0xc2,0x03,0x46,0x19,0x00,
+0x13,0x05,0x45,0x66,0x32,0xc0,0x4a,0x86,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x00,0xc6,
+0xef,0xe0,0x7f,0xec,0x83,0x27,0x04,0x28,0xe3,0x15,0x05,0xf0,0xe3,0x84,0x07,0xda,
+0x37,0x45,0x80,0x40,0x4a,0x86,0xa6,0x85,0x13,0x05,0x85,0x79,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0xc0,0xc3,0x41,0xbb,0x1d,0x71,0xce,0xc6,0xb7,0x69,0x80,0x40,0x03,0xa7,
+0x09,0x28,0xa2,0xcc,0x86,0xce,0xa6,0xca,0xca,0xc8,0xd2,0xc4,0xd6,0xc2,0xda,0xc0,
+0x5e,0xde,0x62,0xdc,0x66,0xda,0x6a,0xd8,0x6e,0xd6,0xc1,0x72,0x8d,0x47,0x16,0x91,
+0x2a,0x84,0x63,0xfd,0xe7,0x00,0x14,0x4d,0x10,0x41,0x4c,0x41,0x37,0x45,0x80,0x40,
+0x13,0x05,0x85,0x7e,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x40,0xbf,0x1c,0x4c,0xb7,0x6c,
+0x80,0x40,0x61,0x75,0x85,0x8b,0x23,0xa8,0xfc,0x26,0xc1,0x67,0xc1,0x07,0xaa,0x97,
+0x18,0x08,0x33,0x85,0xe7,0x00,0xef,0xf0,0xcf,0x83,0x99,0x39,0x2a,0x8a,0x79,0xe5,
+0x03,0xa7,0x09,0x28,0x89,0x47,0x63,0xfc,0xe7,0x00,0x10,0x44,0x4c,0x44,0x37,0x55,
+0x80,0x40,0x13,0x05,0x85,0x81,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0xbb,0xb7,0x67,
+0x80,0x40,0x83,0xc7,0xc7,0x26,0x89,0xc7,0x4c,0x44,0x08,0x44,0xef,0xe0,0x1f,0xc8,
+0x18,0x40,0xb7,0x54,0x80,0x40,0x93,0x87,0x04,0x14,0x93,0x87,0x07,0x10,0x98,0xcb,
+0x18,0x48,0xc1,0x7a,0xf1,0x1a,0xd8,0xcb,0x18,0x10,0x98,0xd3,0xd8,0xd3,0xc1,0x67,
+0xc1,0x07,0xd6,0x97,0x18,0x08,0xba,0x97,0x01,0x4b,0x93,0x84,0x04,0x14,0x37,0x5d,
+0x80,0x40,0x3e,0xc2,0xb7,0x5d,0x80,0x40,0xa1,0x6b,0x50,0x40,0x83,0xa7,0x09,0x28,
+0x63,0x60,0xcb,0x02,0x0d,0x47,0x63,0x7b,0xf7,0x04,0x10,0x40,0x0c,0x48,0x37,0x55,
+0x80,0x40,0x13,0x05,0x45,0x90,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0xb4,0x3d,0xa8,
+0xb3,0x05,0x66,0x41,0x2e,0xce,0x11,0x47,0x63,0x79,0xf7,0x00,0xda,0x86,0x13,0x05,
+0x4d,0x85,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0xb2,0x12,0x45,0xef,0xe0,0xbf,0xc4,
+0x2a,0x89,0x1d,0xed,0x83,0xa7,0x09,0x28,0x89,0xcb,0x37,0x55,0x80,0x40,0x13,0x05,
+0x05,0x88,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0xb0,0x7d,0x5a,0xc1,0x62,0x16,0x91,
+0xf6,0x40,0x52,0x85,0x66,0x44,0xd6,0x44,0x46,0x49,0xb6,0x49,0x26,0x4a,0x96,0x4a,
+0x06,0x4b,0xf2,0x5b,0x62,0x5c,0xd2,0x5c,0x42,0x5d,0xb2,0x5d,0x25,0x61,0x82,0x80,
+0x03,0xa7,0x09,0x28,0x91,0x47,0x63,0xfc,0xe7,0x00,0xf2,0x45,0x2a,0x86,0x01,0x47,
+0x81,0x47,0x13,0x85,0x8d,0x8a,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0xac,0xf2,0x4a,
+0x4a,0x8c,0x63,0x85,0x0a,0x00,0x83,0xa7,0x44,0x11,0x81,0xeb,0x4a,0x85,0xef,0xe0,
+0x7f,0xc2,0x41,0xe1,0xf2,0x47,0x3e,0x9b,0x89,0xb7,0x03,0xa5,0x44,0x12,0x83,0xa7,
+0x04,0x12,0x56,0x86,0xb3,0x07,0xf5,0x40,0x33,0x87,0x57,0x01,0x63,0xf4,0xeb,0x00,
+0x33,0x86,0xfb,0x40,0xe2,0x85,0x3e,0xc6,0x32,0xc4,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0x20,0xf0,0x22,0x46,0x03,0xa7,0x44,0x12,0xb2,0x47,0xb3,0x8a,0xca,0x40,0x32,0x97,
+0x23,0xa2,0xe4,0x12,0x03,0xa7,0x44,0x11,0xb2,0x97,0x32,0x9c,0x63,0x84,0xe7,0x00,
+0xe3,0x91,0x77,0xfb,0x83,0xa6,0x0c,0x27,0x83,0xa5,0x04,0x12,0x03,0xa5,0x04,0x11,
+0x3e,0x86,0xb3,0x36,0xd0,0x00,0x3e,0xc4,0xef,0xf0,0xaf,0xaf,0xa2,0x47,0xaa,0x85,
+0x15,0xc9,0x83,0xa7,0x09,0x28,0x91,0xef,0x4a,0x85,0xef,0xe0,0xbf,0xba,0x75,0x5a,
+0x15,0xd5,0x83,0xa7,0x09,0x28,0x95,0xd3,0x37,0x45,0x80,0x40,0x13,0x05,0x05,0x64,
+0x09,0xbf,0x37,0x55,0x80,0x40,0x13,0x05,0x05,0x8e,0x97,0xf0,0x7f,0xff,0xe7,0x80,
+0xe0,0xa0,0xd9,0xbf,0x13,0x87,0x04,0x10,0x14,0x4b,0xbe,0x96,0x14,0xcb,0x54,0x4b,
+0x9d,0x8e,0x1c,0x53,0x54,0xcb,0x5c,0xd3,0x2d,0xbf,0x5d,0x71,0xa6,0xc2,0xb7,0x64,
+0x80,0x40,0x03,0xa7,0x04,0x28,0xb5,0x72,0xa2,0xc4,0x86,0xc6,0xca,0xc0,0x4e,0xde,
+0x52,0xdc,0x56,0xda,0x5a,0xd8,0x5e,0xd6,0x62,0xd4,0x66,0xd2,0x6a,0xd0,0x6e,0xce,
+0x93,0x82,0x02,0x50,0x8d,0x47,0x16,0x91,0x2a,0x84,0x63,0xfd,0xe7,0x00,0x14,0x4d,
+0x10,0x41,0x4c,0x41,0x37,0x45,0x80,0x40,0x13,0x05,0x85,0x7e,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0xc0,0x9a,0x1c,0x4c,0x37,0x6c,0x80,0x40,0x61,0x75,0x85,0x8b,0x23,0x28,
+0xfc,0x26,0xcd,0x67,0x93,0x87,0x07,0xb0,0xaa,0x97,0x18,0x08,0x33,0x85,0xe7,0x00,
+0xef,0xe0,0x3f,0xdf,0x31,0x34,0x2a,0x8a,0x63,0x11,0x05,0x24,0x03,0xa7,0x04,0x28,
+0x89,0x47,0x63,0xfc,0xe7,0x00,0x10,0x44,0x4c,0x44,0x37,0x55,0x80,0x40,0x13,0x05,
+0x85,0x81,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x60,0x96,0xb7,0x67,0x80,0x40,0x83,0xc7,
+0xc7,0x26,0x89,0xc7,0x4c,0x44,0x08,0x44,0xef,0xe0,0x5f,0xa3,0x03,0xa7,0x04,0x28,
+0x89,0x47,0x63,0xfb,0xe7,0x00,0x0c,0x48,0x37,0x55,0x80,0x40,0x13,0x05,0x45,0x92,
+0x97,0xf0,0x7f,0xff,0xe7,0x80,0x80,0x93,0x18,0x40,0x37,0x59,0x80,0x40,0x93,0x07,
+0x09,0x14,0x93,0x87,0x07,0x10,0x98,0xcb,0x18,0x48,0x4d,0x66,0xb5,0x76,0xd8,0xcb,
+0x58,0x40,0x93,0x05,0x06,0xb0,0xb5,0x79,0x98,0xcf,0x13,0x87,0x06,0x51,0xba,0x95,
+0x18,0x08,0x2e,0x97,0xd8,0xcf,0x93,0x05,0x06,0xb0,0x41,0x77,0xba,0x95,0x18,0x08,
+0x2e,0x97,0x98,0xd3,0xd8,0xd3,0x93,0x07,0x06,0xb0,0xb6,0x97,0x14,0x08,0xb6,0x97,
+0x23,0xa8,0x07,0x50,0x93,0x06,0x06,0xb0,0x93,0x87,0xc9,0x50,0xbe,0x96,0x1c,0x08,
+0xb6,0x97,0x3e,0xc2,0x13,0x07,0x06,0xb0,0x93,0x87,0x89,0x50,0x3e,0x97,0x1c,0x08,
+0xba,0x97,0x01,0x4b,0x13,0x09,0x09,0x14,0x3e,0xc4,0x50,0x40,0x83,0xa7,0x04,0x28,
+0x63,0x60,0xcb,0x02,0x0d,0x47,0x63,0x7a,0xf7,0x16,0x10,0x40,0x0c,0x48,0x37,0x55,
+0x80,0x40,0x13,0x05,0x45,0x90,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0x8a,0xb1,0xaa,
+0xb3,0x05,0x66,0x41,0x2e,0xca,0x11,0x47,0x63,0x7b,0xf7,0x00,0xb7,0x57,0x80,0x40,
+0xda,0x86,0x13,0x85,0x47,0x85,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0x88,0xcd,0x67,
+0x13,0x85,0x49,0x50,0x93,0x87,0x07,0xb0,0xaa,0x97,0x18,0x08,0x33,0x85,0xe7,0x00,
+0xef,0xe0,0x7f,0x99,0xaa,0x8a,0x11,0xed,0x83,0xa7,0x04,0x28,0x89,0xcb,0x37,0x55,
+0x80,0x40,0x13,0x05,0x05,0x88,0x97,0xf0,0x7f,0xff,0xe7,0x80,0x20,0x85,0x7d,0x5a,
+0x29,0xa2,0x03,0xa7,0x04,0x28,0x91,0x47,0x63,0xfe,0xe7,0x00,0xd2,0x45,0x2a,0x86,
+0x37,0x55,0x80,0x40,0x01,0x47,0x81,0x47,0x13,0x05,0x85,0x8a,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0xc0,0x82,0x52,0x4d,0xd6,0x8b,0x85,0x4d,0x63,0x08,0x0d,0x08,0x83,0x25,
+0x49,0x11,0xc1,0xc5,0x63,0x54,0xb0,0x15,0xa1,0x6c,0x13,0x05,0x09,0x10,0x14,0x51,
+0x58,0x51,0x03,0x28,0x85,0x01,0xb3,0x87,0x96,0x01,0x99,0x8f,0x3e,0xce,0x22,0x46,
+0x92,0x47,0x48,0x4d,0x33,0x38,0x0d,0x01,0x06,0x08,0xde,0x85,0x6a,0xcc,0x97,0xf0,
+0x7f,0xff,0xe7,0x80,0xa0,0x8b,0x83,0xa7,0x04,0x28,0x11,0x47,0xaa,0x8d,0x63,0x7e,
+0xf7,0x00,0x72,0x46,0xe2,0x45,0xb7,0x56,0x80,0x40,0x01,0x47,0x81,0x47,0x13,0x85,
+0x06,0x95,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x60,0x7c,0x13,0x07,0x09,0x10,0xe2,0x47,
+0x14,0x4f,0x0c,0x53,0x33,0x0d,0xfd,0x40,0x9d,0x8e,0x14,0xcf,0xbe,0x9b,0xf2,0x46,
+0x5c,0x53,0xb6,0x97,0x5c,0xd3,0x8d,0x8f,0x63,0x58,0xb0,0x03,0x63,0x86,0x97,0x03,
+0x63,0x05,0x0d,0x00,0x83,0x27,0x49,0x11,0xc9,0xf3,0x63,0xc3,0x0d,0x0c,0x83,0x25,
+0x49,0x11,0x63,0x98,0x0d,0x0c,0xe5,0xc1,0x83,0xa7,0x04,0x28,0x95,0xcf,0x37,0x55,
+0x80,0x40,0x13,0x05,0x05,0x9d,0x51,0xa0,0x03,0x26,0x49,0x11,0x32,0x87,0x63,0xf3,
+0xc7,0x00,0x3e,0x87,0x41,0xc3,0xa1,0x66,0x63,0x75,0xd7,0x04,0x63,0xf3,0xc7,0x04,
+0x83,0xa7,0x04,0x28,0x91,0xcb,0x37,0x55,0x80,0x40,0xba,0x85,0x13,0x05,0x45,0x98,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0x80,0x74,0x75,0x5a,0xcd,0x62,0x93,0x82,0x02,0xb0,
+0x16,0x91,0xb6,0x40,0x52,0x85,0x26,0x44,0x96,0x44,0x06,0x49,0xf2,0x59,0x62,0x5a,
+0xd2,0x5a,0x42,0x5b,0xb2,0x5b,0x22,0x5c,0x92,0x5c,0x02,0x5d,0xf2,0x4d,0x61,0x61,
+0x82,0x80,0x83,0x26,0x0c,0x27,0x03,0x25,0x09,0x11,0x3a,0x86,0xb3,0x36,0xd0,0x00,
+0x3e,0xc6,0xef,0xe0,0x1f,0xfc,0xb2,0x47,0xaa,0x85,0x09,0xcd,0x83,0xa7,0x04,0x28,
+0xc5,0xdf,0x37,0x55,0x80,0x40,0x13,0x05,0x05,0x8e,0x97,0xe0,0x7f,0xff,0xe7,0x80,
+0xe0,0x6e,0x5d,0xb7,0x13,0x07,0x09,0x10,0x14,0x4b,0xbe,0x96,0x14,0xcb,0x54,0x4b,
+0xb3,0x87,0xf6,0x40,0x5c,0xcb,0x1c,0x53,0x5c,0xd3,0x45,0xbd,0xe3,0x86,0x0d,0xf4,
+0x83,0xa7,0x04,0x28,0xd1,0xd3,0x37,0x55,0x80,0x40,0xee,0x85,0x13,0x05,0x85,0x9a,
+0xe9,0xb7,0x91,0xe9,0x83,0xa7,0x04,0x28,0xa5,0xdb,0x37,0x55,0x80,0x40,0xea,0x85,
+0x13,0x05,0xc5,0x9f,0x5d,0xbf,0x56,0x85,0xef,0xe0,0xdf,0x81,0x11,0xc9,0x83,0xa7,
+0x04,0x28,0xe3,0x86,0x07,0xe4,0x37,0x45,0x80,0x40,0x13,0x05,0x05,0x64,0x25,0xbd,
+0xd2,0x47,0x3e,0x9b,0xd9,0xb3,0x75,0x71,0xca,0xd0,0xce,0xce,0x37,0x59,0x80,0x40,
+0xb7,0x69,0x80,0x40,0xd2,0xcc,0x3a,0xc1,0x3e,0xc3,0x86,0xd6,0xa2,0xd4,0xa6,0xd2,
+0xd6,0xca,0xda,0xc8,0xde,0xc6,0xe2,0xc4,0xe6,0xc2,0xea,0xc0,0x2a,0x8a,0xae,0xda,
+0xb2,0xdc,0xb6,0xde,0x42,0xc5,0x46,0xc7,0x93,0x07,0x09,0x14,0x13,0x87,0x49,0x28,
+0x63,0xed,0xe7,0x26,0x37,0x05,0x80,0x40,0x13,0x05,0x05,0x0f,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0x00,0x64,0x01,0x45,0x97,0xe0,0x7f,0xff,0xe7,0x80,0xa0,0x63,0xb7,0x57,
+0x80,0x40,0x37,0x55,0x80,0x40,0x23,0xa4,0x07,0x26,0xb7,0x64,0x80,0x40,0x95,0x47,
+0x37,0x5b,0x80,0x40,0x0d,0x44,0x93,0x05,0x00,0x0a,0x13,0x05,0x45,0xa2,0x23,0xa0,
+0xf4,0x28,0x23,0x2e,0x8b,0x12,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x20,0x60,0x83,0xa7,
+0x04,0x28,0x63,0x73,0xf4,0x24,0x37,0x56,0x80,0x40,0xb7,0x45,0x80,0x40,0x37,0x55,
+0x80,0x40,0x13,0x06,0x06,0x14,0x93,0x85,0x05,0x00,0x13,0x05,0x05,0xa4,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0xa0,0x5d,0x83,0xa7,0x04,0x28,0x63,0x7f,0xf4,0x20,0x37,0x55,
+0x80,0x40,0x13,0x86,0x49,0x28,0x93,0x05,0x09,0x14,0x13,0x05,0xc5,0xa5,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0xa0,0x5b,0x83,0xa7,0x04,0x28,0x63,0x7f,0xf4,0x1e,0xad,0x47,
+0x37,0x55,0x80,0x40,0x63,0xef,0x47,0x1d,0xb7,0x57,0x80,0x40,0x13,0x17,0x2a,0x00,
+0x93,0x87,0x07,0xf8,0xba,0x97,0x03,0xa6,0x47,0x12,0xd2,0x85,0x13,0x05,0x45,0xa7,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0x80,0x58,0xdc,0x18,0x3e,0xce,0xf2,0x47,0x03,0xa7,
+0x04,0x28,0x03,0xa9,0x07,0x00,0x83,0xa9,0x47,0x00,0x83,0xaa,0x87,0x00,0x8d,0x47,
+0x63,0xf0,0xe7,0x02,0xb7,0x55,0x80,0x40,0x37,0x55,0x80,0x40,0xce,0x86,0x4a,0x86,
+0x93,0x85,0x45,0x0d,0x13,0x05,0x85,0xa8,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x00,0x55,
+0xb7,0x87,0x0c,0x60,0x03,0xa7,0x04,0x28,0x03,0xac,0x47,0x00,0x8d,0x47,0x63,0xfd,
+0xe7,0x00,0x37,0x55,0x80,0x40,0x13,0x06,0x00,0x20,0xe2,0x85,0x13,0x05,0x85,0xaa,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0x80,0x52,0x81,0x4b,0xb7,0x2c,0x00,0x60,0x13,0x0d,
+0x00,0x10,0x93,0x87,0x0c,0x38,0x23,0xa0,0x77,0x01,0x93,0x87,0xcc,0x37,0x80,0x43,
+0xef,0xe0,0xff,0x8f,0x19,0xc1,0x13,0x74,0xf4,0xbf,0x13,0x74,0x04,0x20,0x63,0x08,
+0x04,0x18,0x13,0x7c,0x3c,0x00,0x63,0x04,0x0c,0x08,0x03,0xa7,0x04,0x28,0x89,0x47,
+0x63,0xfa,0xe7,0x00,0x37,0x55,0x80,0x40,0x13,0x05,0x05,0xad,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0xc0,0x4d,0x03,0xa7,0x04,0x28,0x8d,0x47,0x63,0xfe,0xe7,0x00,0xb7,0x55,
+0x80,0x40,0x37,0x55,0x80,0x40,0x93,0x85,0x85,0x0e,0x13,0x05,0x45,0xaf,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0xa0,0x4b,0xb7,0x67,0x09,0x60,0x93,0x87,0x47,0x10,0x98,0x43,
+0x13,0x67,0x17,0x00,0x98,0xc3,0x98,0x43,0x13,0x67,0x27,0x00,0x98,0xc3,0x98,0x43,
+0x75,0x9b,0x98,0xc3,0x37,0x87,0x0c,0x60,0x5c,0x43,0xf1,0x9b,0x5c,0xc3,0xb7,0x27,
+0x00,0x60,0x93,0x87,0x47,0x38,0x98,0x43,0x1d,0x9b,0x98,0xc3,0x97,0xf0,0x7f,0xff,
+0xe7,0x80,0x80,0xb0,0x01,0x45,0x97,0xf0,0x7f,0xff,0xe7,0x80,0xe0,0xad,0x81,0x45,
+0x01,0x45,0x97,0xe0,0x7f,0xff,0xe7,0x80,0xa0,0x61,0xb7,0x27,0x00,0x60,0x83,0xa7,
+0x47,0x38,0x8d,0x83,0x8d,0x8b,0xe5,0xcb,0x05,0x47,0x63,0x89,0xe7,0x0e,0x09,0x47,
+0x63,0x99,0xe7,0x0e,0xb9,0x46,0x91,0x65,0xb7,0x57,0x80,0x40,0x93,0x87,0x07,0x14,
+0x13,0x07,0x80,0x0f,0xd8,0xd7,0x33,0x87,0xe5,0x02,0xd4,0xdb,0xb7,0x06,0x00,0x42,
+0x13,0x06,0x00,0x10,0xcc,0xd3,0x90,0xdb,0x36,0x97,0x83,0xa6,0x04,0x28,0x98,0xd7,
+0x89,0x47,0x63,0xfe,0xd7,0x00,0x37,0x55,0x80,0x40,0x93,0x06,0x00,0x10,0x13,0x06,
+0x80,0x0f,0x13,0x05,0x05,0xb0,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x20,0x40,0xef,0xe0,
+0x2f,0xf1,0xaa,0x85,0x55,0xe1,0x83,0xa7,0x04,0x28,0x89,0xcb,0x37,0x55,0x80,0x40,
+0x13,0x05,0x45,0xb5,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x40,0x3e,0x13,0x04,0xca,0xff,
+0x33,0x34,0x80,0x00,0x33,0x04,0x80,0x40,0x35,0xa0,0x23,0xa0,0x07,0x00,0x91,0x07,
+0x41,0xb3,0x37,0x46,0x80,0x40,0x13,0x06,0x06,0x4e,0xd2,0x85,0x13,0x05,0x45,0xa7,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0x80,0x3b,0xdc,0x18,0x3e,0xce,0xad,0x47,0x79,0x54,
+0xe3,0xd6,0x47,0xe3,0x03,0xa7,0x04,0x28,0x8d,0x47,0x63,0xfb,0xe7,0x00,0x37,0x55,
+0x80,0x40,0xa2,0x85,0x13,0x05,0x45,0xe8,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x00,0x39,
+0xb6,0x50,0x22,0x85,0x26,0x54,0x96,0x54,0x06,0x59,0xf6,0x49,0x66,0x4a,0xd6,0x4a,
+0x46,0x4b,0xb6,0x4b,0x26,0x4c,0x96,0x4c,0x06,0x4d,0x49,0x61,0x82,0x80,0x85,0x0b,
+0xe3,0x99,0xab,0xe5,0x9d,0xbd,0xc1,0x46,0xc1,0x65,0x39,0xbf,0xbd,0x46,0xa1,0x65,
+0x21,0xbf,0xb5,0x46,0x89,0x65,0x09,0xbf,0x91,0x47,0x2a,0x84,0xe3,0x04,0xfa,0xfa,
+0xb7,0x07,0x88,0x40,0x03,0xa5,0xc7,0xfe,0xc1,0x67,0xfd,0x17,0x08,0x41,0x13,0x07,
+0x00,0x10,0x85,0x66,0x41,0x66,0x97,0xe0,0x7f,0xff,0xe7,0x80,0xa0,0x46,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0x60,0x45,0x2a,0x84,0x19,0xcd,0x83,0xa7,0x04,0x28,0x91,0xcb,
+0xaa,0x85,0x37,0x55,0x80,0x40,0x13,0x05,0x85,0xb7,0x97,0xe0,0x7f,0xff,0xe7,0x80,
+0xe0,0x30,0x7d,0x54,0x85,0xb7,0xad,0x47,0x63,0xe9,0x47,0x4b,0xb7,0x57,0x80,0x40,
+0x93,0x87,0x07,0xf5,0x0a,0x0a,0x3e,0x9a,0x83,0x27,0x0a,0x00,0x82,0x87,0xce,0x85,
+0x4a,0x85,0xef,0xf0,0xcf,0xbc,0x2a,0x84,0x35,0xbf,0xce,0x85,0x4a,0x85,0xef,0xe0,
+0xdf,0xc2,0xd5,0xbf,0x56,0x86,0xce,0x85,0x4a,0x85,0xef,0xf0,0xef,0x88,0xe5,0xb7,
+0x4a,0x85,0xef,0xf0,0x4f,0xe9,0xc5,0xb7,0x4a,0x85,0xc1,0x38,0xe9,0xbf,0x56,0x86,
+0xce,0x85,0x4a,0x85,0xef,0xe0,0x9f,0xf3,0xf9,0xb7,0xef,0xe0,0x6f,0xdc,0x03,0xa7,
+0x04,0x28,0x8d,0x47,0x2a,0x8a,0x63,0xf0,0xe7,0x02,0xb7,0x55,0x80,0x40,0x37,0x55,
+0x80,0x40,0xce,0x86,0x4a,0x86,0x93,0x85,0x85,0x0f,0x13,0x05,0x05,0xba,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0xa0,0x28,0x23,0xa0,0x09,0x00,0xfd,0x57,0x63,0x1b,0xf9,0x02,
+0x15,0x69,0xa1,0x6a,0x13,0x09,0xa9,0x0a,0x0d,0x4b,0xb7,0x5b,0x80,0x40,0x13,0x15,
+0x54,0x00,0x0c,0x10,0x13,0x06,0x00,0x02,0x56,0x95,0xef,0xe0,0x5f,0xd0,0xaa,0x85,
+0x11,0xcd,0x83,0xa7,0x04,0x28,0xb1,0xd7,0x37,0x55,0x80,0x40,0x13,0x05,0x85,0xbb,
+0x2d,0xbf,0xce,0x85,0x4a,0x85,0xef,0xf0,0x4f,0x91,0xb1,0xbf,0x83,0x55,0x01,0x02,
+0x83,0xa7,0x04,0x28,0x63,0x8d,0x25,0x01,0x89,0xcb,0x37,0x55,0x80,0x40,0x13,0x05,
+0x05,0xbf,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x60,0x22,0x69,0x54,0xa5,0xbd,0x12,0x56,
+0x63,0x66,0xca,0x00,0x22,0x57,0x32,0x97,0x63,0x70,0xea,0x02,0x81,0xcf,0xa2,0x56,
+0x37,0x55,0x80,0x40,0x52,0x87,0xa2,0x85,0x13,0x05,0x05,0xc2,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0xc0,0x1f,0x65,0x54,0xb9,0xb5,0x63,0x7f,0xfb,0x00,0x03,0x47,0x31,0x02,
+0x83,0x46,0x21,0x02,0x7c,0x10,0x4a,0x86,0xa2,0x85,0x13,0x85,0x4b,0xc7,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0xa0,0x1d,0x83,0x47,0x21,0x02,0x8d,0xe7,0x03,0xa7,0x04,0x28,
+0x89,0x47,0x63,0xfe,0xe7,0x00,0x22,0x56,0x92,0x56,0x37,0x55,0x80,0x40,0x29,0x82,
+0x6c,0x10,0x13,0x05,0x45,0xcb,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x20,0x1b,0x12,0x55,
+0xce,0x85,0x95,0xb7,0x05,0x04,0x25,0xbf,0x03,0xa7,0x04,0x28,0x8d,0x47,0x63,0xf0,
+0xe7,0x02,0xb7,0x55,0x80,0x40,0x37,0x55,0x80,0x40,0xce,0x86,0x4a,0x86,0x93,0x85,
+0xc5,0x10,0x13,0x05,0x05,0xba,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x20,0x18,0x7d,0x7a,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0xc0,0x79,0x33,0x7a,0x49,0x01,0xd6,0x85,0x09,0x66,
+0x52,0x85,0xef,0xe0,0xdf,0xc0,0xaa,0x85,0x09,0xcd,0x83,0xa7,0x04,0x28,0xbd,0xcb,
+0x37,0x55,0x80,0x40,0x13,0x05,0x45,0xce,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x00,0x15,
+0x95,0xa0,0x13,0x14,0x49,0x01,0x51,0x80,0x56,0x94,0x09,0x46,0xa2,0x85,0x4e,0x85,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0xc0,0x5b,0x03,0xa7,0x04,0x28,0x89,0x47,0x63,0xf3,
+0xe7,0x02,0x03,0x47,0x34,0x00,0x83,0x46,0x24,0x00,0x03,0x46,0x14,0x00,0x83,0x45,
+0x04,0x00,0x37,0x55,0x80,0x40,0x4a,0x88,0x13,0x05,0x05,0xd1,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0xc0,0x10,0x89,0x45,0x4a,0x85,0xef,0xe0,0x3f,0xa5,0x11,0xcd,0x83,0xa7,
+0x04,0x28,0x89,0xcb,0x37,0x55,0x80,0x40,0x13,0x05,0xc5,0xd4,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0xc0,0x0e,0x01,0x44,0x3d,0xbb,0x89,0x47,0x23,0x00,0xf4,0x00,0x93,0x07,
+0x00,0xf9,0xa3,0x00,0xf4,0x00,0xef,0xe0,0x8f,0xcc,0xb3,0x36,0xa0,0x00,0xd6,0x85,
+0x09,0x66,0x52,0x85,0xef,0xe0,0xff,0x97,0xaa,0x85,0x09,0xc9,0x83,0xa7,0x04,0x28,
+0xf1,0xdb,0x37,0x55,0x80,0x40,0x13,0x05,0x45,0xd7,0xb9,0xbf,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0x00,0x6d,0x83,0xa7,0x04,0x28,0x0d,0x44,0x63,0x7c,0xf4,0x06,0x0c,0x10,
+0x21,0x46,0x13,0x75,0xc9,0xff,0xef,0xe0,0x9f,0xb3,0x83,0xa7,0x04,0x28,0xaa,0x85,
+0x09,0xcd,0x89,0xcb,0x37,0x55,0x80,0x40,0x13,0x05,0x05,0xda,0x97,0xe0,0x7f,0xff,
+0xe7,0x80,0xc0,0x07,0x13,0x04,0xf0,0x0f,0xf1,0xb1,0x63,0x74,0xf4,0x04,0x83,0x47,
+0x71,0x02,0x83,0x48,0x31,0x02,0x03,0x48,0x21,0x02,0x3e,0xc6,0x83,0x47,0x61,0x02,
+0x03,0x47,0x01,0x02,0xb7,0x55,0x80,0x40,0x3e,0xc4,0x83,0x47,0x51,0x02,0x37,0x55,
+0x80,0x40,0xce,0x86,0x3e,0xc2,0x83,0x47,0x41,0x02,0x4a,0x86,0x93,0x85,0xc5,0x10,
+0x3e,0xc0,0x83,0x47,0x11,0x02,0x13,0x05,0x45,0xdc,0x97,0xe0,0x7f,0xff,0xe7,0x80,
+0xe0,0x02,0x09,0x44,0x41,0xb1,0x03,0xa7,0x04,0x28,0x8d,0x47,0x63,0xf8,0xe7,0x02,
+0x83,0xc8,0x39,0x00,0x03,0xc8,0x29,0x00,0x83,0xc7,0x19,0x00,0x03,0xc7,0x09,0x00,
+0xb7,0x55,0x80,0x40,0x37,0x55,0x80,0x40,0xce,0x86,0x4a,0x86,0x93,0x85,0x05,0x12,
+0x13,0x05,0xc5,0xe0,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x40,0xff,0x7d,0x7a,0x97,0xe0,
+0x7f,0xff,0xe7,0x80,0xe0,0x60,0x33,0x7a,0x49,0x01,0xd6,0x85,0x09,0x66,0x52,0x85,
+0xef,0xe0,0xff,0xa7,0xaa,0x85,0x11,0xc9,0x83,0xa7,0x04,0x28,0xe3,0x83,0x07,0xcc,
+0x37,0x55,0x80,0x40,0x13,0x05,0x45,0xce,0x4d,0xb9,0x89,0x45,0x4a,0x85,0xef,0xe0,
+0xdf,0x90,0x2a,0x84,0x11,0xcd,0x83,0xa7,0x04,0x28,0xe3,0x84,0x07,0xca,0x37,0x55,
+0x80,0x40,0x13,0x05,0xc5,0xd4,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x20,0xfa,0x51,0xb9,
+0x03,0xc7,0x09,0x00,0x93,0x17,0x49,0x01,0xd1,0x83,0xd6,0x97,0x23,0x80,0xe7,0x00,
+0x03,0xc7,0x19,0x00,0xa3,0x80,0xe7,0x00,0xef,0xe0,0x6f,0xb7,0xb3,0x36,0xa0,0x00,
+0xd6,0x85,0x09,0x66,0x52,0x85,0xef,0xe0,0xdf,0x82,0xaa,0x85,0x11,0xc9,0x83,0xa7,
+0x04,0x28,0xe3,0x80,0x07,0xc6,0x37,0x55,0x80,0x40,0x13,0x05,0xc5,0xe3,0xb1,0xb1,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0xc0,0x57,0x83,0xa7,0x04,0x28,0x0d,0x4a,0xe3,0x73,
+0xfa,0xba,0x0c,0x10,0x21,0x46,0x13,0x75,0xc9,0xff,0xef,0xe0,0x5f,0x9e,0x83,0xa7,
+0x04,0x28,0xaa,0x85,0x01,0xc9,0xe3,0x86,0x07,0xc2,0x37,0x55,0x80,0x40,0x13,0x05,
+0x05,0xda,0x21,0xb9,0xe3,0x70,0xfa,0xb8,0x83,0x47,0x71,0x02,0x83,0x48,0x31,0x02,
+0x03,0x48,0x21,0x02,0x3e,0xc6,0x83,0x47,0x61,0x02,0x03,0x47,0x01,0x02,0xb7,0x55,
+0x80,0x40,0x3e,0xc4,0x83,0x47,0x51,0x02,0x37,0x55,0x80,0x40,0xce,0x86,0x3e,0xc2,
+0x83,0x47,0x41,0x02,0x4a,0x86,0x93,0x85,0x05,0x12,0x3e,0xc0,0x83,0x47,0x11,0x02,
+0x13,0x05,0x45,0xdc,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x40,0xee,0x25,0xbe,0x37,0x67,
+0x09,0x60,0xfd,0x57,0x13,0x07,0x07,0x11,0x63,0x17,0xf9,0x06,0x03,0x29,0x07,0x00,
+0xb7,0x07,0xfd,0xff,0xfd,0x17,0xb3,0x77,0xf9,0x00,0xc1,0x66,0xd5,0x8f,0x1c,0xc3,
+0x03,0xa7,0x04,0x28,0x8d,0x47,0x63,0xfb,0xe7,0x00,0x37,0x55,0x80,0x40,0xca,0x85,
+0x13,0x05,0x45,0xe6,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x40,0xea,0x03,0x27,0xcb,0x13,
+0x85,0x47,0x63,0x18,0xf7,0x02,0x01,0x45,0x97,0xe0,0x7f,0xff,0xe7,0x80,0x80,0xed,
+0x97,0xe0,0x7f,0xff,0xe7,0x80,0x40,0x52,0xb7,0x65,0x62,0x02,0x93,0x85,0x05,0xa0,
+0x01,0x45,0x97,0xe0,0x7f,0xff,0xe7,0x80,0xe0,0xf0,0x97,0xe0,0x7f,0xff,0xe7,0x80,
+0xa0,0xe7,0x4a,0x84,0xc1,0xb4,0x14,0x43,0x37,0x06,0xfd,0xff,0xb7,0x07,0x03,0x00,
+0x7d,0x16,0xb3,0x77,0xf9,0x00,0xf1,0x8e,0x51,0xbf,0x79,0x54,0x65,0xb4,
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_data.inc 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_data.inc
new file mode 100644
index 0000000000..5d3c017d72
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_data.inc
@@ -0,0 +1,22 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0x36,0x03,0x80,0x40,0x16,0x05,0x80,0x40,0x00,0x00,0x80,0x40,0x1a,0x07,0x80,0x40,
+0x2c,0x07,0x80,0x40,0x1a,0x00,0x80,0x40,0xf6,0x05,0x80,0x40,0x32,0x00,0x80,0x40,
+0x44,0x00,0x80,0x40,0x00,0x00,0x00,0x00,0x5c,0x40,0x80,0x40,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,0x68,0x00,0x80,0x40,
+0xde,0x00,0x80,0x40,0xae,0x00,0x80,0x40,0xe2,0x00,0x80,0x40,0xd2,0x12,0x80,0x40,
+0xf2,0x12,0x80,0x40,0xdc,0x12,0x80,0x40,0xe6,0x12,0x80,0x40,0x66,0x14,0x80,0x40,
+0x0a,0x13,0x80,0x40,0x66,0x13,0x80,0x40,0xd2,0x13,0x80,0x40,0x66,0x14,0x80,0x40,
+0xf8,0x12,0x80,0x40,0xfe,0x12,0x80,0x40,0x32,0x14,0x80,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,0x01,0x00,0x00,0x00,
+0x01,
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_data_wlog.inc 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_data_wlog.inc
new file mode 100644
index 0000000000..d6b6518131
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_data_wlog.inc
@@ -0,0 +1,277 @@
+/* Autogenerated with ../../../../../src/helper/bin2char.sh */
+0xde,0x02,0x80,0x40,0x84,0x06,0x80,0x40,0x00,0x00,0x80,0x40,0xba,0x08,0x80,0x40,
+0xcc,0x08,0x80,0x40,0x1a,0x00,0x80,0x40,0x64,0x07,0x80,0x40,0x32,0x00,0x80,0x40,
+0x44,0x00,0x80,0x40,0x00,0x00,0x00,0x00,0x5c,0x40,0x80,0x40,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,0x68,0x00,0x80,0x40,
+0xde,0x00,0x80,0x40,0xae,0x00,0x80,0x40,0xe2,0x00,0x80,0x40,0x53,0x54,0x55,0x42,
+0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20,0x45,0x4e,0x54,0x45,0x52,0x0a,0x00,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,0x00,0x00,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,0x00,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,0x00,0x00,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,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x44,0x3a,0x20,0x73,0x74,0x61,0x63,0x6b,0x20,0x64,0x61,0x74,0x61,0x20,0x70,
+0x6f,0x6f,0x6c,0x20,0x25,0x6c,0x75,0x20,0x62,0x79,0x74,0x65,0x73,0x20,0x40,0x20,
+0x30,0x78,0x25,0x78,0x0a,0x00,0x00,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,0x00,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,0x00,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,0x00,0x00,0x00,0x65,0x6e,0x63,0x72,0x79,0x70,0x74,0x65,0x64,0x2d,0x00,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,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,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,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x6d,0x61,0x70,0x5f,
+0x70,0x74,0x72,0x3a,0x20,0x25,0x78,0x20,0x73,0x69,0x7a,0x65,0x3a,0x25,0x64,0x20,
+0x72,0x65,0x71,0x2d,0x3e,0x73,0x72,0x63,0x5f,0x61,0x64,0x64,0x72,0x3a,0x25,0x78,
+0x20,0x6d,0x61,0x70,0x5f,0x73,0x72,0x63,0x3a,0x25,0x78,0x20,0x6d,0x61,0x70,0x5f,
+0x73,0x69,0x7a,0x65,0x3a,0x25,0x78,0x0a,0x00,0x00,0x00,0x00,0x53,0x54,0x55,0x42,
+0x5f,0x44,0x3a,0x20,0x6d,0x6d,0x61,0x70,0x20,0x70,0x61,0x67,0x65,0x5f,0x6e,0x75,
+0x6d,0x3a,0x25,0x64,0x20,0x65,0x6e,0x74,0x72,0x79,0x5f,0x69,0x64,0x3a,0x25,0x64,
+0x20,0x76,0x61,0x64,0x64,0x72,0x3a,0x25,0x78,0x20,0x6d,0x6d,0x75,0x5f,0x76,0x61,
+0x6c,0x3a,0x25,0x78,0x20,0x73,0x69,0x7a,0x65,0x3a,0x25,0x64,0x20,0x70,0x61,0x67,
+0x65,0x5f,0x73,0x69,0x7a,0x65,0x5f,0x69,0x6e,0x5f,0x62,0x79,0x74,0x65,0x73,0x3a,
+0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x75,0x6e,0x6d,0x61,
+0x70,0x20,0x70,0x61,0x67,0x65,0x5f,0x6e,0x75,0x6d,0x3a,0x25,0x64,0x20,0x65,0x6e,
+0x74,0x72,0x79,0x5f,0x69,0x64,0x3a,0x25,0x64,0x20,0x76,0x61,0x64,0x64,0x72,0x3a,
+0x25,0x78,0x20,0x70,0x61,0x67,0x65,0x5f,0x73,0x69,0x7a,0x65,0x5f,0x69,0x6e,0x5f,
+0x62,0x79,0x74,0x65,0x73,0x3a,0x25,0x78,0x0a,0x00,0x00,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,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,0x68,0x61,0x73,0x68,0x3a,0x20,0x25,0x78,0x25,0x78,0x25,0x78,
+0x2e,0x2e,0x2e,0x25,0x78,0x25,0x78,0x25,0x78,0x0a,0x00,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,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x72,0x61,0x73,
+0x65,0x20,0x63,0x68,0x65,0x63,0x6b,0x65,0x64,0x0a,0x00,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,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,0x00,0x00,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,0x00,0x00,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,0x00,0x00,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,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,0x00,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,0x00,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,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,0x00,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,0x00,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,0x00,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,0x00,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,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,0x00,0x00,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,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,0x00,0x00,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,0x00,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,0x00,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,0x00,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,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,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,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,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,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,0x00,0x00,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,0x00,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,0x00,0x00,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,0x00,0x00,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,0x00,0x00,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,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,0x00,0x00,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,0x00,0x00,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,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,0x00,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,
+0x63,0x61,0x63,0x68,0x65,0x5f,0x63,0x74,0x72,0x6c,0x5f,0x72,0x65,0x67,0x3a,0x25,
+0x58,0x20,0x4d,0x4d,0x55,0x5f,0x56,0x41,0x4c,0x49,0x44,0x3a,0x25,0x78,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,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,0x0a,0x00,
+0x53,0x54,0x55,0x42,0x5f,0x49,0x3a,0x20,0x4d,0x4d,0x55,0x20,0x70,0x61,0x67,0x65,
+0x20,0x73,0x69,0x7a,0x65,0x3a,0x25,0x58,0x20,0x64,0x72,0x6f,0x6d,0x5f,0x70,0x61,
+0x67,0x65,0x5f,0x73,0x74,0x61,0x72,0x74,0x3a,0x25,0x64,0x20,0x64,0x72,0x6f,0x6d,
+0x5f,0x70,0x61,0x67,0x65,0x5f,0x65,0x6e,0x64,0x3a,0x25,0x64,0x20,0x76,0x61,0x64,
+0x64,0x72,0x30,0x5f,0x73,0x74,0x61,0x72,0x74,0x5f,0x61,0x64,0x64,0x72,0x3a,0x25,
+0x58,0x0a,0x00,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,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,0x00,0x00,0x00,
+0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x25,0x73,0x3a,0x20,0x30,0x78,0x25,0x78,
+0x20,0x30,0x78,0x25,0x78,0x0a,0x00,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,0x00,0x00,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,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,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,0x00,0x00,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,0x00,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,0x00,0x00,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,0x00,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,0x00,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,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,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,0x00,0x00,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,0x00,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x70,0x63,0x72,0x5f,
+0x73,0x79,0x73,0x63,0x6c,0x6b,0x5f,0x63,0x6f,0x6e,0x66,0x5f,0x72,0x65,0x67,0x20,
+0x25,0x78,0x0a,0x00,0x53,0x54,0x55,0x42,0x5f,0x44,0x3a,0x20,0x65,0x78,0x69,0x74,
+0x20,0x25,0x64,0x0a,0x00,0x00,0x00,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x52,0x45,
+0x41,0x44,0x00,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,0x00,0x00,
+0x46,0x4c,0x41,0x53,0x48,0x5f,0x53,0x49,0x5a,0x45,0x00,0x00,0x46,0x4c,0x41,0x53,
+0x48,0x5f,0x4d,0x41,0x50,0x5f,0x47,0x45,0x54,0x00,0x00,0x00,0x46,0x4c,0x41,0x53,
+0x48,0x5f,0x42,0x50,0x5f,0x53,0x45,0x54,0x00,0x00,0x00,0x00,0x46,0x4c,0x41,0x53,
+0x48,0x5f,0x42,0x50,0x5f,0x43,0x4c,0x45,0x41,0x52,0x00,0x00,0x46,0x4c,0x41,0x53,
+0x48,0x5f,0x54,0x45,0x53,0x54,0x00,0x00,0x46,0x4c,0x41,0x53,0x48,0x5f,0x57,0x52,
+0x49,0x54,0x45,0x5f,0x44,0x45,0x46,0x4c,0x41,0x54,0x45,0x44,0x00,0x00,0x00,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,
+0x3e,0x1d,0x80,0x40,0x60,0x1d,0x80,0x40,0x4a,0x1d,0x80,0x40,0x54,0x1d,0x80,0x40,
+0xda,0x21,0x80,0x40,0x7a,0x1d,0x80,0x40,0x88,0x1e,0x80,0x40,0x06,0x20,0x80,0x40,
+0xda,0x21,0x80,0x40,0x68,0x1d,0x80,0x40,0x6e,0x1d,0x80,0x40,0x4e,0x21,0x80,0x40,
+0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x67,0x65,0x74,0x5f,0x73,
+0x69,0x7a,0x65,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,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,0x00,0x00,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,0x00,0x00,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,0x98,0x4e,0x80,0x40,0xa4,0x4e,0x80,0x40,0xb0,0x4e,0x80,0x40,
+0xbc,0x4e,0x80,0x40,0xd0,0x4e,0x80,0x40,0xdc,0x4e,0x80,0x40,0xec,0x4e,0x80,0x40,
+0xfc,0x4e,0x80,0x40,0x0c,0x4f,0x80,0x40,0x18,0x4f,0x80,0x40,0x30,0x4f,0x80,0x40,
+0x40,0x4f,0x80,0x40,0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x68,
+0x61,0x6e,0x64,0x6c,0x65,0x72,0x00,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,0x00,0x73,0x74,0x75,0x62,
+0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x73,0x65,0x74,0x5f,0x62,0x70,0x00,0x00,0x00,
+0x73,0x74,0x75,0x62,0x5f,0x66,0x6c,0x61,0x73,0x68,0x5f,0x63,0x6c,0x65,0x61,0x72,
+0x5f,0x62,0x70,0x00,0x01,0x00,0x00,0x00,0x01,0x00,0x00,0x00,0x03,0x00,0x00,0x00,
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_image.h 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_image.h
new file mode 100644
index 0000000000..cfdf2b290f
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_image.h
@@ -0,0 +1,18 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#define ESP32C6_STUB_BSS_SIZE 0x000013cUL
+
+#define ESP32C6_STUB_IRAM_ORG 0x040800000UL
+
+#define ESP32C6_STUB_IRAM_LEN 0x000004000UL
+
+#define ESP32C6_STUB_DRAM_ORG 0x040804000UL
+
+#define ESP32C6_STUB_DRAM_LEN 0x000020000UL
+
+#define ESP32C6_STUB_ENTRY_ADDR 0x04080111aUL
+
+#define ESP32C6_STUB_APPTRACE_CTRL_ADDR 0x040804144UL
+
+/*#define ESP32C6_STUB_BUILD_IDF_REV 2fdba8ec19
+*/
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_flasher_image_wlog.h 
b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_image_wlog.h
new file mode 100644
index 0000000000..7fdc331cb4
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_flasher_image_wlog.h
@@ -0,0 +1,14 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+#define ESP32C6_STUB_WLOG_BSS_SIZE 0x0001144UL
+
+#define ESP32C6_STUB_WLOG_LOG_ADDR 0x040805268UL
+
+#define ESP32C6_STUB_WLOG_LOG_SIZE 4100UL
+
+#define ESP32C6_STUB_WLOG_ENTRY_ADDR 0x0408019a6UL
+
+#define ESP32C6_STUB_WLOG_APPTRACE_CTRL_ADDR 0x040805140UL
+
+/*#define ESP32C6_STUB_WLOG_BUILD_IDF_REV 2fdba8ec19
+*/
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_rom_chip.h 
b/contrib/loaders/flash/espressif/esp32c6/stub_rom_chip.h
new file mode 100644
index 0000000000..216e3846d4
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_rom_chip.h
@@ -0,0 +1,20 @@
+/* SPDX-License-Identifier: GPL-2.0-or-later */
+
+/***************************************************************************
+ *   ESP32-C6 specific rom header files                                    *
+ *   Copyright (C) 2022 Espressif Systems Ltd.                             *
+ *   Author: Erhan Kurubas <erhan.kuru...@espressif.com>                   *
+ ***************************************************************************/
+#ifndef ESP_STUB_ROM_H
+#define ESP_STUB_ROM_H
+
+#include "esp32c6/rom/ets_sys.h"
+#include "esp32c6/rom/spi_flash.h"
+#include "esp32c6/rom/cache.h"
+#include "esp32c6/rom/efuse.h"
+#include "esp32c6/rom/uart.h"
+#include "esp32c6/rom/rtc.h"
+#include "esp32c6/rom/sha.h"
+#include "miniz.h"
+
+#endif
diff --git a/contrib/loaders/flash/espressif/esp32c6/stub_sha.c 
b/contrib/loaders/flash/espressif/esp32c6/stub_sha.c
new file mode 100644
index 0000000000..4dda8077cf
--- /dev/null
+++ b/contrib/loaders/flash/espressif/esp32c6/stub_sha.c
@@ -0,0 +1,37 @@
+// 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;
+
+/* this function has the same implementation for ESP32-S2
+ * TODO: move to common file */
+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)
+{
+       /* C2 secure boot key field consists of 1 byte of curve identifier and 
64 bytes of ECDSA public key.
+       * While verifying the signature block, we need to calculate the SHA of 
this key field which is of 65 bytes.
+       * ets_sha_update handles it cleanly so we can safely remove the check:
+       * assert(data_len % 4) == 0
+       */
+       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